Click here to Skip to main content
15,796,333 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: add columns in gridview at runtime Pin
anilaabc10-Nov-09 1:46
anilaabc10-Nov-09 1:46 
GeneralRe: add columns in gridview at runtime Pin
Gamzun10-Nov-09 3:00
Gamzun10-Nov-09 3:00 
GeneralRe: add columns in gridview at runtime Pin
anilaabc10-Nov-09 19:17
anilaabc10-Nov-09 19:17 
QuestionHow to Create Scorm Course in asp.net Pin
Member 44660599-Nov-09 21:43
Member 44660599-Nov-09 21:43 
AnswerRe: How to Create Scorm Course in asp.net Pin
Christian Graus9-Nov-09 22:08
protectorChristian Graus9-Nov-09 22:08 
AnswerRe: How to Create Scorm Course in asp.net Pin
padmanabhan N9-Nov-09 23:12
padmanabhan N9-Nov-09 23:12 
QuestionCreating Scorm Course in asp.net Pin
Member 44660599-Nov-09 21:40
Member 44660599-Nov-09 21:40 
AnswerRe: Creating Scorm Course in asp.net Pin
Christian Graus9-Nov-09 22:09
protectorChristian Graus9-Nov-09 22:09 
AnswerRe: Creating Scorm Course in asp.net Pin
netJP12L16-Nov-09 11:57
netJP12L16-Nov-09 11:57 
QuestionIn ASP.Net, how to resize iFRAME at runtime? Pin
hifiger20049-Nov-09 21:19
hifiger20049-Nov-09 21:19 
AnswerRe: In ASP.Net, how to resize iFRAME at runtime? Pin
Nishant Singh9-Nov-09 21:37
Nishant Singh9-Nov-09 21:37 
QuestionDatalist Image Pin
KhandelwalA9-Nov-09 20:53
KhandelwalA9-Nov-09 20:53 
AnswerRe: Datalist Image Pin
Nishant Singh9-Nov-09 21:14
Nishant Singh9-Nov-09 21:14 
QuestionHow to Edit a gridview ,Please correct the code which i gave here. Pin
rinku soni 239-Nov-09 20:19
rinku soni 239-Nov-09 20:19 
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
//TextBox t= (TextBox )GridView1.Rows[e.RowIndex ].FindControl ("txtId");
//TextBox t2=(TextBox )GridView1.Rows[e.RowIndex ].FindControl ("txtName");
GridViewRow row = GridView1.Rows[e.RowIndex];
TextBox t = (TextBox)row.FindControl("txtId");
TextBox t2 = (TextBox)row.FindControl("txtName");
con.Open();
cmd = new OdbcCommand("update table AdminAddNewItem set Node_Name= '" + t2.Text + "' where Node_Id=" + t.Text, con);
cmd.ExecuteNonQuery();
con.Close();
AnswerRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Christian Graus9-Nov-09 20:36
protectorChristian Graus9-Nov-09 20:36 
GeneralRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Arnalyn19-Feb-10 1:37
Arnalyn19-Feb-10 1:37 
AnswerRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Nishant Singh9-Nov-09 21:06
Nishant Singh9-Nov-09 21:06 
AnswerRe: How to Edit a gridview ,Please correct the code which i gave here. Pin
Raja Soosai10-Nov-09 3:20
Raja Soosai10-Nov-09 3:20 
Questionhow to display data in grid without sending the data in the database Pin
Flavia A9-Nov-09 19:57
Flavia A9-Nov-09 19:57 
AnswerRe: how to display data in grid without sending the data in the database Pin
Christian Graus9-Nov-09 20:02
protectorChristian Graus9-Nov-09 20:02 
AnswerRe: how to display data in grid without sending the data in the database Pin
Satish Mahapatra9-Nov-09 20:44
Satish Mahapatra9-Nov-09 20:44 
GeneralRe: how to display data in grid without sending the data in the database Pin
Flavia A9-Nov-09 23:19
Flavia A9-Nov-09 23:19 
GeneralRe: how to display data in grid without sending the data in the database Pin
Satish Mahapatra10-Nov-09 0:38
Satish Mahapatra10-Nov-09 0:38 
GeneralRe: how to display data in grid without sending the data in the database Pin
Flavia A10-Nov-09 1:27
Flavia A10-Nov-09 1:27 
GeneralRe: how to display data in grid without retreiving data from the database and later the dat from the gridview should go into the database. Pin
Flavia A10-Nov-09 1:51
Flavia A10-Nov-09 1:51 

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.