Click here to Skip to main content
15,909,897 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Collapsable panel Extender Pin
saanj28-May-09 2:35
saanj28-May-09 2:35 
Questiondisable repair option in .net wensetup Pin
pradeep kumarappagari27-May-09 22:39
pradeep kumarappagari27-May-09 22:39 
AnswerRe: disable repair option in .net wensetup Pin
Christian Graus28-May-09 0:07
protectorChristian Graus28-May-09 0:07 
QuestionPOST - Attach a CSV file by web service Pin
bloodyrouk27-May-09 22:28
bloodyrouk27-May-09 22:28 
AnswerRe: POST - Attach a CSV file by web service Pin
Christian Graus28-May-09 0:08
protectorChristian Graus28-May-09 0:08 
GeneralRe: POST - Attach a CSV file by web service Pin
bloodyrouk28-May-09 1:11
bloodyrouk28-May-09 1:11 
QuestionHelp regarding online examination project Pin
Sneeha27-May-09 22:11
Sneeha27-May-09 22:11 
AnswerRe: Help regarding online examination project Pin
Baran M27-May-09 22:48
Baran M27-May-09 22:48 
Say you need to add a dropdownlist to the gridview,

DropDownList dr1= new DropDownList();
dr1.Items.Add("new");
dr1.Items.Add("newOne");
GridView1.Rows[1].Cells[1].Controls.Add(dr1);


If you want to add a control in every row, use GridView1_RowDataBound event in gridview
add like this,

e.Row.Cells[1].Controls.Add(new TextBox());

further if you google you will get.
GeneralRe: Help regarding online examination project Pin
Sneeha29-May-09 6:21
Sneeha29-May-09 6:21 
GeneralRe: Help regarding online examination project Pin
Baran M29-May-09 20:45
Baran M29-May-09 20:45 
GeneralRe: Help regarding online examination project Pin
Sneeha31-May-09 16:41
Sneeha31-May-09 16:41 
AnswerRe: Help regarding online examination project Pin
RAKESH gaur mkcl7-Jun-09 19:23
RAKESH gaur mkcl7-Jun-09 19:23 
AnswerRe: Help regarding online examination project Pin
RAKESH gaur mkcl10-Jun-09 1:36
RAKESH gaur mkcl10-Jun-09 1:36 
QuestionRegular expression Pin
samerh27-May-09 20:50
samerh27-May-09 20:50 
AnswerRe: Regular expression Pin
ScottM127-May-09 21:15
ScottM127-May-09 21:15 
QuestionURL Rewriting Pin
Matt Cavanagh27-May-09 20:45
Matt Cavanagh27-May-09 20:45 
AnswerRe: URL Rewriting Pin
Manas Bhardwaj28-May-09 0:00
professionalManas Bhardwaj28-May-09 0:00 
GeneralRe: URL Rewriting Pin
Matt Cavanagh28-May-09 3:22
Matt Cavanagh28-May-09 3:22 
GeneralRe: URL Rewriting Pin
Manas Bhardwaj28-May-09 3:42
professionalManas Bhardwaj28-May-09 3:42 
GeneralRe: URL Rewriting Pin
Matt Cavanagh28-May-09 20:28
Matt Cavanagh28-May-09 20:28 
Question[Message Deleted] Pin
llibin27-May-09 20:14
llibin27-May-09 20:14 
AnswerRe: Give me urgent solution Pin
Vimalsoft(Pty) Ltd27-May-09 20:41
professionalVimalsoft(Pty) Ltd27-May-09 20:41 
AnswerRe: [Message Deleted] Pin
Baran M27-May-09 21:12
Baran M27-May-09 21:12 
Questionhow to use Query string in asp.net Pin
kumar Rajiv27-May-09 19:55
kumar Rajiv27-May-09 19:55 
AnswerRe: how to use Query string in asp.net Pin
Baran M27-May-09 20:10
Baran M27-May-09 20:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.