Click here to Skip to main content
15,893,161 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: scroll bar for gridview Pin
Abhishek Sur1-Sep-09 21:38
professionalAbhishek Sur1-Sep-09 21:38 
AnswerRe: scroll bar for gridview Pin
Abhijit Jana1-Sep-09 23:11
professionalAbhijit Jana1-Sep-09 23:11 
Questionproblem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india1-Sep-09 20:58
Samarjeet Singh@india1-Sep-09 20:58 
AnswerRe: problem in binding dropdown list in gridview footer rows Pin
Christian Graus1-Sep-09 21:13
protectorChristian Graus1-Sep-09 21:13 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india1-Sep-09 22:48
Samarjeet Singh@india1-Sep-09 22:48 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Christian Graus2-Sep-09 0:14
protectorChristian Graus2-Sep-09 0:14 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india2-Sep-09 1:24
Samarjeet Singh@india2-Sep-09 1:24 
AnswerRe: problem in binding dropdown list in gridview footer rows Pin
Abhishek Sur1-Sep-09 21:55
professionalAbhishek Sur1-Sep-09 21:55 
where is

if(e.Row.RowType == DataControlRowType.DataRow)
{
      ds = new DataSet();
      ad = new SqlDataAdapter("select * from States", con.cn);
      ad.Fill(ds, "tmp");
DropDownList drp=(DropDownList)GridView1.FooterRow.FindControl("DropDownList1");
     drp.DataSource = ds.Tables["tmp"];
     drp.DataValueField = "stateid";
     drp.DataTextField = "statename";
     drp.DataBind();

}


Check it ... Rose | [Rose]

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india1-Sep-09 22:49
Samarjeet Singh@india1-Sep-09 22:49 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Abhishek Sur2-Sep-09 21:33
professionalAbhishek Sur2-Sep-09 21:33 
GeneralRe: problem in binding dropdown list in gridview footer rows Pin
Samarjeet Singh@india3-Sep-09 2:00
Samarjeet Singh@india3-Sep-09 2:00 
AnswerRe: problem in binding dropdown list in gridview footer rows Pin
igudipalli24-Jun-10 5:06
igudipalli24-Jun-10 5:06 
AnswerRe: problem in binding dropdown list in gridview footer rows Pin
igudipalli24-Jun-10 6:08
igudipalli24-Jun-10 6:08 
QuestionHelp in Java script Pin
AprNgp1-Sep-09 20:57
AprNgp1-Sep-09 20:57 
AnswerRe: Help in Java script Pin
Christian Graus1-Sep-09 21:10
protectorChristian Graus1-Sep-09 21:10 
GeneralRe: Help in Java script Pin
AprNgp1-Sep-09 21:14
AprNgp1-Sep-09 21:14 
GeneralRe: Help in Java script Pin
Christian Graus1-Sep-09 21:19
protectorChristian Graus1-Sep-09 21:19 
AnswerRe: Help in Java script Pin
Abhishek Sur1-Sep-09 21:45
professionalAbhishek Sur1-Sep-09 21:45 
GeneralRe: Help in Java script Pin
Christian Graus1-Sep-09 21:59
protectorChristian Graus1-Sep-09 21:59 
GeneralRe: Help in Java script Pin
Abhishek Sur1-Sep-09 22:34
professionalAbhishek Sur1-Sep-09 22:34 
GeneralRe: Help in Java script Pin
Christian Graus2-Sep-09 0:19
protectorChristian Graus2-Sep-09 0:19 
GeneralRe: Help in Java script Pin
Abhishek Sur2-Sep-09 2:01
professionalAbhishek Sur2-Sep-09 2:01 
QuestionTo ensure that users come from page1 before going to page2 Pin
Desmond Lim1-Sep-09 20:49
Desmond Lim1-Sep-09 20:49 
AnswerRe: To ensure that users come from page1 before going to page2 Pin
Christian Graus1-Sep-09 20:51
protectorChristian Graus1-Sep-09 20:51 
GeneralRe: To ensure that users come from page1 before going to page2 Pin
Desmond Lim1-Sep-09 20:55
Desmond Lim1-Sep-09 20:55 

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.