Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K

7 Posted Topics

Member Avatar for xanawa

Is there a question hidden in there? Ill take a stab and guess you want to display the comments in the gridview based on what the end-user selects in the DDL. If that's the case simply put @field_name in you where clause of the datasource. Example: ddlUsername SQL- SELECT * …

Member Avatar for chwong
0
148
Member Avatar for wasifbinrashid

Lol, if people on here had ideas that were unique and "never been done" then I doubt they will spill their guts on such idea. Developing is all about the "next big thing". Try an aggregate news site with features that other sites are missing. Ex. Alot of news sites …

Member Avatar for matthewskyle
0
154
Member Avatar for garrypeace

Try using Session. (C#) [CODE] [B]PRODUCTS.aspx[/B] private void Page_Load(object sender, System.EventArgs e) { Session["prod_id"] = "value1"; } [B]COMMENTS.aspx[/B] private void Page_Load(object sender, System.EventArgs e) { string prod_id = (string)(Session["prod_id"]); } <SelectParameters> <asp:SessionParameter SessionField="prod_id" DbType="String" Name="Product ID" /> </SelectParameters> [/CODE]

Member Avatar for matthewskyle
0
128
Member Avatar for Mbot

Im not sure how much help I can be since I am a .NET developer so I'm not sure how to explain this in php if that is in fact what your starting off in (which is not a bad thing either). But what values are you wanting to appear …

Member Avatar for cheelee
0
231
Member Avatar for br_astronut

I don't know if this would help but I use the 4.0 framework and it comes with a nice template when you start up a blank site. I use that for my company projects and just go through and edit the css and master page to my liking but it …

Member Avatar for matthewskyle
0
286
Member Avatar for matthewskyle

I was asked to create a report similar to a gridview in asp.net for a windows form application. I don't really have much knowledge about reporting, especially not in VS 2010 unless its a gridview or something similar since it will suffice and noticed that you could create a report …

Member Avatar for kvprajapati
0
181
Member Avatar for matthewskyle

Im trying to create a webform that is a representation of a paper questionnaire that has 14 questions with yes/no answers. If an answer is no, then you must provide information as to why in 3 separate textboxes and store the information only when a user clicks no. I also …

Member Avatar for Luc001
0
215

The End.