Click here to Skip to main content
15,897,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ASP.NET DataGrid DropDownList edit problem Pin
_AK_29-Aug-06 20:40
_AK_29-Aug-06 20:40 
QuestionPrint multiple PDF files at the same time Pin
bigmacrox29-Aug-06 11:52
bigmacrox29-Aug-06 11:52 
AnswerRe: Print multiple PDF files at the same time Pin
jitu gupta29-Aug-06 21:47
jitu gupta29-Aug-06 21:47 
GeneralRe: Print multiple PDF files at the same time Pin
bigmacrox30-Aug-06 7:03
bigmacrox30-Aug-06 7:03 
QuestionUpdate using DetailsView and DataSource Pin
Patricker29-Aug-06 10:13
Patricker29-Aug-06 10:13 
QuestionStream dataset to the browser as RSS Pin
Brent Lamborn29-Aug-06 10:10
Brent Lamborn29-Aug-06 10:10 
QuestionWeb service Pin
kjosh29-Aug-06 7:48
kjosh29-Aug-06 7:48 
QuestionWebservice returning Dataset Pin
kjosh29-Aug-06 7:44
kjosh29-Aug-06 7:44 
Hi,
I created a webservice.It has the one web method it returning Dataset like this:
[WebMethod]
public DataSet getauthors()
{
//string constr = "Data Source=(local);Initial Catalog=pubs;User Id=sa;Password=kalpana321";
//SqlConnection con = new SqlConnection(constr);
string constr=System.Configuration.ConfigurationManager.AppSettings[0];
SqlConnection con = new SqlConnection(constr);

SqlDataAdapter da = new SqlDataAdapter("select au_id,au_lname,address from authors", con);
DataSet ds = new DataSet();
da.Fill(ds, "authors");
return ds;
}
when i test this web service it is working fine i.e giving authors details.
I created a new c# Windows application and added the web reference of this web service.
In the page_load
Service c=new Service();

dataGridView1.DataSource = c.getauthors();

when i run this windows forms,the gridview doesnot displaying the authors details.Blank datagridview is displaying.
Why gridview not displaying data.
Please help me.
Thanks in advance.
AnswerRe: Webservice returning Dataset Pin
ToddHileHoffer29-Aug-06 8:28
ToddHileHoffer29-Aug-06 8:28 
AnswerRe: Webservice returning Dataset Pin
kjosh29-Aug-06 15:30
kjosh29-Aug-06 15:30 
GeneralRe: Webservice returning Dataset Pin
ToddHileHoffer30-Aug-06 2:43
ToddHileHoffer30-Aug-06 2:43 
QuestionDisplay random image form folder. Pin
munklefish29-Aug-06 6:38
munklefish29-Aug-06 6:38 
AnswerRe: Display random image form folder. Pin
ToddHileHoffer29-Aug-06 6:48
ToddHileHoffer29-Aug-06 6:48 
GeneralRe: Display random image form folder. Pin
munklefish29-Aug-06 6:57
munklefish29-Aug-06 6:57 
GeneralRe: Display random image form folder. Pin
ToddHileHoffer29-Aug-06 8:26
ToddHileHoffer29-Aug-06 8:26 
QuestionAdd/Delete Record Pin
shapper29-Aug-06 6:24
shapper29-Aug-06 6:24 
AnswerRe: Add/Delete Record Pin
ToddHileHoffer29-Aug-06 6:43
ToddHileHoffer29-Aug-06 6:43 
GeneralRe: Add/Delete Record Pin
shapper29-Aug-06 11:02
shapper29-Aug-06 11:02 
GeneralRe: Add/Delete Record Pin
eggsovereasy30-Aug-06 3:29
eggsovereasy30-Aug-06 3:29 
AnswerRe: Add/Delete Record Pin
YeHtut29-Aug-06 20:24
YeHtut29-Aug-06 20:24 
QuestionForms Authentication and Crystalreportviewer.ReportSource Pin
vonny23229-Aug-06 5:46
vonny23229-Aug-06 5:46 
QuestionDatasets all over again Pin
drc_no129-Aug-06 4:56
drc_no129-Aug-06 4:56 
Questiondelete file from drive Pin
playout29-Aug-06 3:51
playout29-Aug-06 3:51 
AnswerRe: delete file from drive Pin
ToddHileHoffer29-Aug-06 4:12
ToddHileHoffer29-Aug-06 4:12 
GeneralRe: delete file from drive Pin
playout29-Aug-06 4:31
playout29-Aug-06 4:31 

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.