Click here to Skip to main content
15,902,845 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questioninstalling a web appication Pin
Tomic17-Aug-07 0:04
Tomic17-Aug-07 0:04 
AnswerRe: installing a web appication Pin
Vasudevan Deepak Kumar17-Aug-07 0:41
Vasudevan Deepak Kumar17-Aug-07 0:41 
QuestionIsCrossPagePostBack Pin
md_refay16-Aug-07 23:30
md_refay16-Aug-07 23:30 
AnswerRe: IsCrossPagePostBack Pin
Nouman Bhatti17-Aug-07 0:02
Nouman Bhatti17-Aug-07 0:02 
Questionmasterpage Pin
Nidhiii16-Aug-07 23:27
Nidhiii16-Aug-07 23:27 
Questionhow to check the data in the database Pin
biswa4716-Aug-07 23:15
biswa4716-Aug-07 23:15 
AnswerRe: how to check the data in the database Pin
Nouman Bhatti17-Aug-07 0:01
Nouman Bhatti17-Aug-07 0:01 
QuestionPopulate gridview in asp.net ajax Pin
Mamphekgo Bahula16-Aug-07 23:13
Mamphekgo Bahula16-Aug-07 23:13 
Hi i have written this code to populate gridview in asp.net ajax but it doesn't give me any error or populate my gridview so i can figure out what is a problem.my database does't have password it have only user id which i provided.
here is my code

string conString = @"Data Source=DAKESERVER;Initial Catalog=Customer;User ID=sa";
SqlConnection conCustomer = new SqlConnection(conString);
SqlCommand cmdCustomer = new SqlCommand();
SqlDataAdapter daCustomer = new SqlDataAdapter();
DataSet dsCustomer = new DataSet();

cmdCustomer.Connection = conCustomer;
daCustomer.SelectCommand = cmdCustomer;
cmdCustomer.CommandText = "SELECT * FROM CustomerDetails";
daCustomer.Fill(dsCustomer);


GridView1.DataSource = dsCustomer;
GridView1.DataBind();
conCustomer.Close();

Mamphekgo

AnswerRe: Populate gridview in asp.net ajax Pin
Ron.S16-Aug-07 23:29
Ron.S16-Aug-07 23:29 
GeneralRe: Populate gridview in asp.net ajax Pin
Mamphekgo Bahula16-Aug-07 23:45
Mamphekgo Bahula16-Aug-07 23:45 
AnswerRe: Populate gridview in asp.net ajax Pin
N a r e s h P a t e l16-Aug-07 23:39
N a r e s h P a t e l16-Aug-07 23:39 
GeneralRe: Populate gridview in asp.net ajax Pin
Mamphekgo Bahula17-Aug-07 0:11
Mamphekgo Bahula17-Aug-07 0:11 
GeneralRe: Populate gridview in asp.net ajax Pin
sidbaruah17-Aug-07 0:30
sidbaruah17-Aug-07 0:30 
GeneralRe: Populate gridview in asp.net ajax Pin
Ron.S17-Aug-07 0:37
Ron.S17-Aug-07 0:37 
GeneralRe: Populate gridview in asp.net ajax Pin
sidbaruah17-Aug-07 0:46
sidbaruah17-Aug-07 0:46 
QuestionBrowser compatibility Error Pin
nandhububbly16-Aug-07 23:01
nandhububbly16-Aug-07 23:01 
AnswerRe: Browser compatibility Error Pin
N a r e s h P a t e l16-Aug-07 23:04
N a r e s h P a t e l16-Aug-07 23:04 
AnswerRe: Browser compatibility Error Pin
Michael Sync17-Aug-07 1:44
Michael Sync17-Aug-07 1:44 
GeneralRe: Browser compatibility Error Pin
Michael Sync17-Aug-07 1:59
Michael Sync17-Aug-07 1:59 
GeneralRe: Browser compatibility Error Pin
nandhububbly17-Aug-07 2:17
nandhububbly17-Aug-07 2:17 
GeneralRe: Browser compatibility Error Pin
nandhububbly17-Aug-07 2:42
nandhububbly17-Aug-07 2:42 
GeneralRe: Browser compatibility Error Pin
Michael Sync18-Aug-07 20:45
Michael Sync18-Aug-07 20:45 
GeneralRe: Browser compatibility Error Pin
Michael Sync18-Aug-07 20:46
Michael Sync18-Aug-07 20:46 
QuestionRegarding Sessions.. Pin
Ron.S16-Aug-07 22:39
Ron.S16-Aug-07 22:39 
AnswerRe: Regarding Sessions.. Pin
S A R I T H16-Aug-07 22:48
S A R I T H16-Aug-07 22:48 

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.