Click here to Skip to main content
15,889,595 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to open PDF from server? Pin
Member 450194024-Mar-10 11:49
Member 450194024-Mar-10 11:49 
QuestionIE8:: Text is missing from text box while print preview on IE8 environment.!!?? Pin
chetan_agarwal24-Mar-10 3:12
chetan_agarwal24-Mar-10 3:12 
Questiondynamic textbox postback Pin
test-0924-Mar-10 2:21
test-0924-Mar-10 2:21 
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 
hello all,
I want to get a value from gridView (grdQuestions) which in turn goes to the textbox which is in another grdView(grdOptions). Now, the problem is how to find the control of textBox(txtText) of "GrdOptions" GridView, so that i can set the "GrdQuestions" griview cells' value into that textbox...

plz help if you understand..
The code is:

foreach (GridViewRow rw in GrdQuestions.Rows)
{
for (int i = 8; i < GrdQuestions.Rows[e.NewEditIndex].Cells.Count; i++)
{
TextBox tb = (TextBox)GrdOptions.Rows[0].Cells[1].FindControl("txtText");
if (GrdQuestions.Rows[rw.RowIndex].Cells[i].Text != string.Empty)
{
tb.Text = GrdQuestions.Rows[rw.RowIndex].Cells[i].Text;
}
}
}
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 
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 

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.