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

ASP.NET

 
AnswerRe: dynamic textbox postback Pin
PSK_24-Mar-10 2:30
PSK_24-Mar-10 2:30 
GeneralRe: dynamic textbox postback Pin
test-0924-Mar-10 2:55
test-0924-Mar-10 2:55 
GeneralRe: dynamic textbox postback Pin
PSK_24-Mar-10 3:25
PSK_24-Mar-10 3:25 
AnswerRe: dynamic textbox postback Pin
Amar Chaudhary24-Mar-10 9:39
Amar Chaudhary24-Mar-10 9:39 
Questionproblem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 1:01
professionalAmit Spadez24-Mar-10 1:01 
AnswerRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
keyur satyadev24-Mar-10 1:43
keyur satyadev24-Mar-10 1:43 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 18:43
professionalAmit Spadez24-Mar-10 18:43 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
keyur satyadev24-Mar-10 19:13
keyur satyadev24-Mar-10 19:13 
do one thing, when you fire the itemcommand on first gridview at that time take that textbox value in some field (such as if many fields then use the datatable ) and give that datatable to the second grid. i.e.

grd2.datasource = dt;
grd2.databind()

protected void grd1_ItemCommand(object sender, GridCommandEventsArgs e)
{
if(e.commandname == "settextboxvalue")
{
string txt1value;
txt1value = (TextBox)grd1.FindControl("txt1").Text;
}
}

in this way you get the value of textbox of first grid now you can assign this to the second.
Regards
Keyur Satyadev

AnswerRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amar Chaudhary24-Mar-10 9:47
Amar Chaudhary24-Mar-10 9:47 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 18:45
professionalAmit Spadez24-Mar-10 18:45 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amar Chaudhary24-Mar-10 23:02
Amar Chaudhary24-Mar-10 23:02 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amit Spadez24-Mar-10 23:08
professionalAmit Spadez24-Mar-10 23:08 
GeneralRe: problem in tranfer the value of one gridView cell into another gridview textbox Pin
Amar Chaudhary25-Mar-10 0:50
Amar Chaudhary25-Mar-10 0:50 
QuestionASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi24-Mar-10 0:56
Mehdi Ghiasi24-Mar-10 0:56 
AnswerRe: ASP.NET v2 Compile Error 128 Pin
Manas Bhardwaj24-Mar-10 1:02
professionalManas Bhardwaj24-Mar-10 1:02 
QuestionRe: ASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi24-Mar-10 1:47
Mehdi Ghiasi24-Mar-10 1:47 
AnswerRe: ASP.NET v2 Compile Error 128 Pin
Manas Bhardwaj24-Mar-10 2:31
professionalManas Bhardwaj24-Mar-10 2:31 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi24-Mar-10 2:51
Mehdi Ghiasi24-Mar-10 2:51 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Amar Chaudhary24-Mar-10 9:50
Amar Chaudhary24-Mar-10 9:50 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi25-Mar-10 1:26
Mehdi Ghiasi25-Mar-10 1:26 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Amar Chaudhary25-Mar-10 2:50
Amar Chaudhary25-Mar-10 2:50 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Mehdi Ghiasi25-Mar-10 2:53
Mehdi Ghiasi25-Mar-10 2:53 
GeneralRe: ASP.NET v2 Compile Error 128 Pin
Amar Chaudhary25-Mar-10 3:17
Amar Chaudhary25-Mar-10 3:17 
QuestionBLTOOLKIT VS NHIBERNATE which is best? Pin
Nitin S24-Mar-10 0:33
professionalNitin S24-Mar-10 0:33 
QuestionDotnetnuke Problem Pin
astrovirgin24-Mar-10 0:14
astrovirgin24-Mar-10 0:14 

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.