Click here to Skip to main content
15,899,313 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to select area on a panel Pin
Yusuf9-May-09 11:15
Yusuf9-May-09 11:15 
Questiongenerate html control object based on the given string Pin
Maxy558-May-09 23:57
Maxy558-May-09 23:57 
AnswerRe: generate html control object based on the given string Pin
AhsanS9-May-09 0:09
AhsanS9-May-09 0:09 
GeneralRe: generate html control object based on the given string Pin
Maxy559-May-09 0:25
Maxy559-May-09 0:25 
Questiongridview Pin
sritha8-May-09 23:52
sritha8-May-09 23:52 
AnswerRe: gridview Pin
Blue_Boy8-May-09 23:55
Blue_Boy8-May-09 23:55 
AnswerRe: gridview Pin
Christian Graus9-May-09 10:38
protectorChristian Graus9-May-09 10:38 
AnswerRe: gridview Pin
EssamDev9-May-09 12:28
EssamDev9-May-09 12:28 
hi you can use this simple code

String conString="data source=localhost\SQLEXPRESS;initial catalog=New;integrated security=true";

SqlConnection cn = new SqlConnection(conString);
SqlCommand cmdFillGrid = new SqlCommand("select * from myTable", cn);
SqlDataAdapter adapter = new SqlDataAdapter(cmdFillGrid);
DataSet ds = new DataSet();
adapter.Fill(ds, "myTable");
GridView1.DataSource = ds.Tables["myTable"];
GridView1.DataBind();


Essam Moustafa
Question[newbie] Text size problem Pin
jon-808-May-09 23:50
professionaljon-808-May-09 23:50 
AnswerRe: [newbie] Text size problem Pin
AhsanS9-May-09 0:13
AhsanS9-May-09 0:13 
QuestionDeployee in Client machine Pin
mdazeemuddin8-May-09 22:33
mdazeemuddin8-May-09 22:33 
AnswerRe: Deployee in Client machine Pin
AhsanS9-May-09 0:16
AhsanS9-May-09 0:16 
GeneralRe: Deployee in Client machine Pin
mdazeemuddin9-May-09 0:37
mdazeemuddin9-May-09 0:37 
GeneralRe: Deployee in Client machine Pin
The_Collector9-May-09 3:15
The_Collector9-May-09 3:15 
GeneralRe: Deployee in Client machine Pin
mdazeemuddin9-May-09 19:35
mdazeemuddin9-May-09 19:35 
GeneralRe: Deployee in Client machine Pin
The_Collector11-May-09 3:28
The_Collector11-May-09 3:28 
GeneralRe: Deployee in Client machine Pin
mdazeemuddin11-May-09 3:58
mdazeemuddin11-May-09 3:58 
GeneralRe: Deployee in Client machine Pin
The_Collector11-May-09 16:06
The_Collector11-May-09 16:06 
GeneralRe: Deployee in Client machine Pin
The_Collector11-May-09 3:35
The_Collector11-May-09 3:35 
GeneralRe: Deployee in Client machine Pin
Abhijit Jana9-May-09 3:27
professionalAbhijit Jana9-May-09 3:27 
GeneralRe: Deployee in Client machine Pin
The_Collector9-May-09 3:54
The_Collector9-May-09 3:54 
GeneralRe: Deployee in Client machine Pin
mdazeemuddin9-May-09 21:30
mdazeemuddin9-May-09 21:30 
QuestionDrag and drop functionality Pin
Nekkantidivya8-May-09 22:31
Nekkantidivya8-May-09 22:31 
AnswerRe: Drag and drop functionality Pin
Hristiyan9-May-09 1:03
Hristiyan9-May-09 1:03 
Questionhow i use usercontrol( 3 Dropdownlist -Date input) in formview --- please !! Pin
darkman698-May-09 21:11
darkman698-May-09 21:11 

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.