Click here to Skip to main content
16,005,467 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How i send email in asp.net with c# ? Help Me. Pin
Sam Xavier24-Jul-08 22:35
Sam Xavier24-Jul-08 22:35 
Questionhow i send email in asp.net with c# Pin
Ratnesh Bharos24-Jul-08 1:08
Ratnesh Bharos24-Jul-08 1:08 
AnswerRe: how i send email in asp.net with c# Pin
eyeseetee24-Jul-08 1:09
eyeseetee24-Jul-08 1:09 
QuestionForm Response - Email Error Pin
Member 367504724-Jul-08 0:56
Member 367504724-Jul-08 0:56 
AnswerRe: Form Response - Email Error Pin
Christian Graus24-Jul-08 1:03
protectorChristian Graus24-Jul-08 1:03 
AnswerRe: Form Response - Email Error Pin
eyeseetee24-Jul-08 1:10
eyeseetee24-Jul-08 1:10 
Questiondata grid problem Pin
Kissy1624-Jul-08 0:43
Kissy1624-Jul-08 0:43 
AnswerRe: data grid problem Pin
gurdeep_67724-Jul-08 0:54
gurdeep_67724-Jul-08 0:54 
simply add one more column in DataGrid with checkbox control. and check all rows which you want to update and place Edit button in footer with command name "edit" .... and write the following code

datagrid_itemcommnad
{

if(e.CommnandName == "edit")
{
int i=0;
foreach(DataGridItem dg in DataGrid1.Items)
{
CheckBox ch=(CheckBox)dg.FindControl("chkid");
if(chk.Checked)
{
DataGrid1.EditItemIndex=i;
}
i++;
}
}
databind();
}


It Might be helpful for you ....
GeneralRe: data grid problem Pin
Kissy1624-Jul-08 1:27
Kissy1624-Jul-08 1:27 
GeneralRe: data grid problem Pin
Christian Graus24-Jul-08 1:32
protectorChristian Graus24-Jul-08 1:32 
QuestionHow to do GridView Sorting using GridView1.Sort( ) method [modified] Pin
K V Sekhar24-Jul-08 0:30
K V Sekhar24-Jul-08 0:30 
Questiondatagrid Pin
csp24-Jul-08 0:20
csp24-Jul-08 0:20 
AnswerRe: datagrid Pin
Christian Graus24-Jul-08 0:23
protectorChristian Graus24-Jul-08 0:23 
Questiondisplaying tables in two different browsers Pin
eyeseetee24-Jul-08 0:11
eyeseetee24-Jul-08 0:11 
AnswerRe: displaying tables in two different browsers Pin
Christian Graus24-Jul-08 0:16
protectorChristian Graus24-Jul-08 0:16 
Questionhow to send mail with target date +.net with c# Pin
sugunavathysubramanian23-Jul-08 23:44
sugunavathysubramanian23-Jul-08 23:44 
AnswerRe: how to send mail with target date +.net with c# Pin
Christian Graus24-Jul-08 0:05
protectorChristian Graus24-Jul-08 0:05 
AnswerRe: how to send mail with target date +.net with c# Pin
Member 387988124-Jul-08 0:13
Member 387988124-Jul-08 0:13 
GeneralRe: how to send mail with target date +.net with c# Pin
sugunavathysubramanian24-Jul-08 0:32
sugunavathysubramanian24-Jul-08 0:32 
GeneralRe: how to send mail with target date +.net with c# Pin
Christian Graus24-Jul-08 1:05
protectorChristian Graus24-Jul-08 1:05 
GeneralRe: how to send mail with target date +.net with c# Pin
Kannan.Coder24-Jul-08 1:26
Kannan.Coder24-Jul-08 1:26 
GeneralRe: how to send mail with target date +.net with c# Pin
Christian Graus24-Jul-08 1:28
protectorChristian Graus24-Jul-08 1:28 
GeneralRe: how to send mail with target date +.net with c# Pin
Kannan.Coder24-Jul-08 1:43
Kannan.Coder24-Jul-08 1:43 
GeneralRe: how to send mail with target date +.net with c# Pin
eyeseetee24-Jul-08 2:14
eyeseetee24-Jul-08 2:14 
GeneralRe: how to send mail with target date +.net with c# Pin
Kannan.Coder24-Jul-08 2:25
Kannan.Coder24-Jul-08 2:25 

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.