Click here to Skip to main content
15,901,283 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Email in ASP.NET : Plz it's very urgent Pin
Urs Enzler16-Aug-07 3:48
Urs Enzler16-Aug-07 3:48 
AnswerRe: Email in ASP.NET : Plz it's very urgent Pin
Not Active16-Aug-07 9:21
mentorNot Active16-Aug-07 9:21 
Questionasp.net 1.1 mail shows only ? mark when displays in yahoo account Pin
Rahees8316-Aug-07 2:32
Rahees8316-Aug-07 2:32 
AnswerRe: asp.net 1.1 mail shows only ? mark when displays in yahoo account Pin
Sathesh Sakthivel16-Aug-07 3:11
Sathesh Sakthivel16-Aug-07 3:11 
GeneralRe: asp.net 1.1 mail shows only ? mark when displays in yahoo account Pin
Rahees8316-Aug-07 18:02
Rahees8316-Aug-07 18:02 
QuestionHow to Update the Records in GridView Control Through Coding in asp.net2.0 Pin
mrgaddam16-Aug-07 2:22
mrgaddam16-Aug-07 2:22 
AnswerRe: How to Update the Records in GridView Control Through Coding in asp.net2.0 Pin
ooooooooppppppss16-Aug-07 2:27
ooooooooppppppss16-Aug-07 2:27 
AnswerRe: How to Update the Records in GridView Control Through Coding in asp.net2.0 Pin
ooooooooppppppss16-Aug-07 2:32
ooooooooppppppss16-Aug-07 2:32 
i didnt understand ur query..however this code may help u updating records in databases if changes are made in datagrid

this code will b behind update button
for (int i = 0; i <= editgrid.RowCount - 1; i++)
{

str = "UPDATE table SET column1 = '" + editgrid.Rows[i].Cells[1].Value + "', column2='" + editgrid.Rows[i].Cells[2].Value + " WHERE cid = " + editgrid.Rows[i].Cells[0].Value;
SqlCommand com = new SqlCommand(str, conn);
com.ExecuteNonQuery();
}

software student

AnswerRe: How to Update the Records in GridView Control Through Coding in asp.net2.0 Pin
mrgaddam16-Aug-07 2:37
mrgaddam16-Aug-07 2:37 
QuestionHow to send fax from asp.net page in visualstudio2005 Pin
attalurisubbu16-Aug-07 2:19
attalurisubbu16-Aug-07 2:19 
AnswerRe: How to send fax from asp.net page in visualstudio2005 Pin
Talal Sultan16-Aug-07 2:30
Talal Sultan16-Aug-07 2:30 
QuestionProblem in using site map in ASP.NET 2.0 Pin
Ramya.G16-Aug-07 2:16
Ramya.G16-Aug-07 2:16 
AnswerRe: Problem in using site map in ASP.NET 2.0 Pin
Talal Sultan16-Aug-07 2:28
Talal Sultan16-Aug-07 2:28 
AnswerRe: Problem in using site map in ASP.NET 2.0 Pin
Sathesh Sakthivel16-Aug-07 3:07
Sathesh Sakthivel16-Aug-07 3:07 
QuestionRe: Problem in using site map in ASP.NET 2.0 [modified] Pin
Ramya.G16-Aug-07 5:21
Ramya.G16-Aug-07 5:21 
AnswerRe: Problem in using site map in ASP.NET 2.0 Pin
Sam Heller16-Aug-07 6:26
Sam Heller16-Aug-07 6:26 
GeneralRe: Problem in using site map in ASP.NET 2.0 Pin
Ramya.G16-Aug-07 6:28
Ramya.G16-Aug-07 6:28 
GeneralRe: Problem in using site map in ASP.NET 2.0 Pin
Sam Heller16-Aug-07 8:43
Sam Heller16-Aug-07 8:43 
GeneralRe: Problem in using site map in ASP.NET 2.0 Pin
Mark Churchill16-Aug-07 16:01
Mark Churchill16-Aug-07 16:01 
GeneralRe: Problem in using site map in ASP.NET 2.0 Pin
Sam Heller16-Aug-07 22:06
Sam Heller16-Aug-07 22:06 
GeneralRe: Problem in using site map in ASP.NET 2.0 Pin
Mark Churchill16-Aug-07 22:12
Mark Churchill16-Aug-07 22:12 
GeneralRe: Problem in using site map in ASP.NET 2.0 Pin
Ramya.G16-Aug-07 18:25
Ramya.G16-Aug-07 18:25 
Questionproblem in crystal report Pin
ooooooooppppppss16-Aug-07 1:52
ooooooooppppppss16-Aug-07 1:52 
AnswerRe: problem in crystal report Pin
sathish s16-Aug-07 2:35
sathish s16-Aug-07 2:35 
GeneralRe: problem in crystal report Pin
ooooooooppppppss16-Aug-07 2:46
ooooooooppppppss16-Aug-07 2:46 

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.