Click here to Skip to main content
15,896,727 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questiondifference between .net framework1.1 and .net framework2.0 Pin
saravanan0511-Nov-07 20:00
saravanan0511-Nov-07 20:00 
AnswerRe: difference between .net framework1.1 and .net framework2.0 Pin
Michael Sync11-Nov-07 20:05
Michael Sync11-Nov-07 20:05 
JokeRe: difference between .net framework1.1 and .net framework2.0 Pin
Vasudevan Deepak Kumar11-Nov-07 21:26
Vasudevan Deepak Kumar11-Nov-07 21:26 
AnswerI know the answer !!! Pin
Christian Graus11-Nov-07 21:35
protectorChristian Graus11-Nov-07 21:35 
QuestionThere is any project file in .net2005? Pin
yesu prakash11-Nov-07 19:38
yesu prakash11-Nov-07 19:38 
AnswerRe: There is any project file in .net2005? Pin
Michael Sync11-Nov-07 19:48
Michael Sync11-Nov-07 19:48 
Questionhow i can get the values of the grid view into textboxes Pin
jagan12311-Nov-07 18:28
jagan12311-Nov-07 18:28 
AnswerRe: how i can get the values of the grid view into textboxes Pin
varshavmane11-Nov-07 18:34
varshavmane11-Nov-07 18:34 
U will have to use the event RowCommand of GridView and use this to get the values:

GridViewRow oGridViewRow;
if(e.CommandName == "Edit")
{
Int32 index = Convert.ToInt32(e.CommandArgument);
oGridViewRow = GridView1.Rows[index];
TextBox1.Text = oGridViewRow.Cells[1].Text;
TextBox2Text = oGridViewRow.Cells[2].Text;
}

Hope this helps u?
GeneralRe: how i can get the values of the grid view into textboxes Pin
jagan12311-Nov-07 19:26
jagan12311-Nov-07 19:26 
GeneralRe: how i can get the values of the grid view into textboxes Pin
varshavmane11-Nov-07 19:37
varshavmane11-Nov-07 19:37 
GeneralRe: how i can get the values of the grid view into textboxes Pin
jagan12311-Nov-07 20:00
jagan12311-Nov-07 20:00 
GeneralRe: how i can get the values of the grid view into textboxes Pin
varshavmane11-Nov-07 20:13
varshavmane11-Nov-07 20:13 
GeneralRe: how i can get the values of the grid view into textboxes Pin
jagan12311-Nov-07 20:20
jagan12311-Nov-07 20:20 
GeneralRe: how i can get the values of the grid view into textboxes Pin
varshavmane11-Nov-07 20:23
varshavmane11-Nov-07 20:23 
GeneralRe: how i can get the values of the grid view into textboxes Pin
jagan12311-Nov-07 20:41
jagan12311-Nov-07 20:41 
GeneralRe: how i can get the values of the grid view into textboxes Pin
varshavmane11-Nov-07 21:12
varshavmane11-Nov-07 21:12 
QuestionSession Scope Pin
Expert Coming11-Nov-07 18:16
Expert Coming11-Nov-07 18:16 
AnswerRe: Session Scope Pin
John-ph11-Nov-07 18:48
John-ph11-Nov-07 18:48 
GeneralRe: Session Scope Pin
Expert Coming12-Nov-07 13:57
Expert Coming12-Nov-07 13:57 
AnswerRe: Session Scope Pin
Michael Sync11-Nov-07 18:51
Michael Sync11-Nov-07 18:51 
GeneralButton click from cache Pin
Shajeel11-Nov-07 17:55
Shajeel11-Nov-07 17:55 
GeneralRe: Button click from cache Pin
Michael Sync11-Nov-07 18:46
Michael Sync11-Nov-07 18:46 
GeneralRe: Button click from cache Pin
John-ph11-Nov-07 18:57
John-ph11-Nov-07 18:57 
GeneralRe: Button click from cache Pin
Shajeel11-Nov-07 19:48
Shajeel11-Nov-07 19:48 
Questionsolution(.sln) file problem Pin
yesu prakash11-Nov-07 17:06
yesu prakash11-Nov-07 17:06 

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.