Click here to Skip to main content
15,905,616 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Merging two dataset in C#.NET?? Pin
Christian Graus29-Jun-08 23:05
protectorChristian Graus29-Jun-08 23:05 
Questionenduser cant go previous page using that back button in internet explorer Pin
Member 387988129-Jun-08 20:37
Member 387988129-Jun-08 20:37 
AnswerRe: enduser cant go previous page using that back button in internet explorer Pin
Christian Graus29-Jun-08 20:39
protectorChristian Graus29-Jun-08 20:39 
GeneralRe: enduser cant go previous page using that back button in internet explorer Pin
Member 387988129-Jun-08 21:35
Member 387988129-Jun-08 21:35 
GeneralRe: enduser cant go previous page using that back button in internet explorer Pin
eyeseetee29-Jun-08 21:48
eyeseetee29-Jun-08 21:48 
GeneralRe: enduser cant go previous page using that back button in internet explorer Pin
Christian Graus29-Jun-08 22:29
protectorChristian Graus29-Jun-08 22:29 
AnswerRe: enduser cant go previous page using that back button in internet explorer Pin
tina->newcoder29-Jun-08 22:26
tina->newcoder29-Jun-08 22:26 
Questionretrieve the cell value from the gridview but it returns null Pin
kimo code29-Jun-08 20:27
kimo code29-Jun-08 20:27 
hi all,
I just want to retrieve the cell value from the gridview using the following
code,but it returns nothing null
plz help me

protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
int index = e.RowIndex;
//here to delete in data base
//the problem in the next code this string (spareid)carry null
string spareid = GridView1.Rows[index].Cells[0].ToString();
new DataAccess.Service().SparePart_Delete(spareid);
//here to delete in dataset to reflect in gridview
DataSet ds = (DataSet)Session["dataset"];
ds.Tables[0].Rows[index].Delete();
GridView1.DataSource = ds;
GridView1.DataBind();
//here notification for delete
lblmsg.Text = "delete ok ";
lblmsg.Visible = true;
}

plz help me i dont know where is the error
thanks in advice

Kareem Elhosseny

AnswerRe: retrieve the cell value from the gridview but it returns null Pin
Christian Graus29-Jun-08 20:36
protectorChristian Graus29-Jun-08 20:36 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
kimo code29-Jun-08 20:51
kimo code29-Jun-08 20:51 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
Christian Graus29-Jun-08 20:59
protectorChristian Graus29-Jun-08 20:59 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
kimo code29-Jun-08 21:51
kimo code29-Jun-08 21:51 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
Christian Graus29-Jun-08 22:30
protectorChristian Graus29-Jun-08 22:30 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
N a v a n e e t h29-Jun-08 20:56
N a v a n e e t h29-Jun-08 20:56 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
brettokumar29-Jun-08 21:07
professionalbrettokumar29-Jun-08 21:07 
AnswerRe: retrieve the cell value from the gridview but it returns null Pin
Masood Kochi,SSF29-Jun-08 20:57
Masood Kochi,SSF29-Jun-08 20:57 
AnswerRe: retrieve the cell value from the gridview but it returns null Pin
N a v a n e e t h29-Jun-08 21:02
N a v a n e e t h29-Jun-08 21:02 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
kimo code29-Jun-08 21:41
kimo code29-Jun-08 21:41 
AnswerRe: retrieve the cell value from the gridview but it returns null Pin
Bharani_Ram29-Jun-08 21:51
Bharani_Ram29-Jun-08 21:51 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
kimo code29-Jun-08 21:55
kimo code29-Jun-08 21:55 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
kimo code29-Jun-08 22:01
kimo code29-Jun-08 22:01 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
Bharani_Ram29-Jun-08 22:07
Bharani_Ram29-Jun-08 22:07 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
Christian Graus29-Jun-08 22:31
protectorChristian Graus29-Jun-08 22:31 
GeneralRe: retrieve the cell value from the gridview but it returns null Pin
kimo code29-Jun-08 22:39
kimo code29-Jun-08 22:39 
AnswerRe: retrieve the cell value from the gridview but it returns null Pin
Herman<T>.Instance30-Jun-08 21:53
Herman<T>.Instance30-Jun-08 21:53 

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.