Click here to Skip to main content
15,919,607 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: asp.net timer Pin
Not Active27-Feb-08 3:08
mentorNot Active27-Feb-08 3:08 
QuestionProblem with Ajax's AutoCompleteExtender [modified] Pin
dews turner27-Feb-08 2:28
dews turner27-Feb-08 2:28 
QuestionTransferring Between Databases Using Web Service? Pin
cbjroms27-Feb-08 2:18
cbjroms27-Feb-08 2:18 
GeneralRe: Transferring Between Databases Using Web Service? Pin
Christian Graus27-Feb-08 10:26
protectorChristian Graus27-Feb-08 10:26 
GeneralRe: Transferring Between Databases Using Web Service? Pin
Not Active27-Feb-08 11:30
mentorNot Active27-Feb-08 11:30 
GeneralRe: Transferring Between Databases Using Web Service? Pin
Expert Coming27-Feb-08 15:05
Expert Coming27-Feb-08 15:05 
QuestionHow can I clear the history of a browser page by using scripts or programming Pin
G Nathan27-Feb-08 1:50
G Nathan27-Feb-08 1:50 
GeneralRe: How can I clear the history of a browser page by using scripts or programming Pin
Sam Xavier2-Mar-08 23:03
Sam Xavier2-Mar-08 23:03 
QuestionHow to read image data from xml file Pin
Krishnraj27-Feb-08 1:36
Krishnraj27-Feb-08 1:36 
GeneralRe: How to read image data from xml file Pin
Christian Graus27-Feb-08 9:05
protectorChristian Graus27-Feb-08 9:05 
QuestionHi friends. what should i use instead of ""window.location.replace(URL)""? [modified] Pin
G Nathan27-Feb-08 1:29
G Nathan27-Feb-08 1:29 
GeneralRe: Hi friends. what should i use instead of ""window.location.replace(URL)""? Pin
J a a n s27-Feb-08 1:41
professionalJ a a n s27-Feb-08 1:41 
GeneralAJAX Pin
.NET- India 27-Feb-08 1:27
.NET- India 27-Feb-08 1:27 
GeneralRe: AJAX Pin
J a a n s27-Feb-08 1:42
professionalJ a a n s27-Feb-08 1:42 
GeneralRe: AJAX Pin
Christian Graus27-Feb-08 9:08
protectorChristian Graus27-Feb-08 9:08 
GeneralError on Report on Web Form in asp.net Pin
Dextar12327-Feb-08 0:31
Dextar12327-Feb-08 0:31 
I have a web form in asp.net and C# on the basis of selection from the dropdown i fill a dataset then assign that dataset to a reportdocument
datasource. that data set fills, but when the report is loaded there
is no data . I also have a Dataset1.xsd file which has a table with
same structure as that is filled with data in SP

In crystal report i have selected project data as dataset1.tablename

Pls help....

Code is as below

int sbu = Convert.ToInt32(ddl1.SelectedItem.Value);
report=new CrystalReport1();
string conn1 = " ";
SqlConnection conn = new SqlConnection(conn1);
conn.Open();
SqlDataAdapter da = new SqlDataAdapter("sp_cis",conn);

DataSet Dataset1 = new DataSet();
DataTable Temp = Dataset1.Tables.Add();
Temp.TableName="CISTemp";
SqlCommand cmd = new SqlCommand("sp_cis",conn);
cmd.CommandType= CommandType.StoredProcedure ; cmd.Parameters.Add( new SqlParameter("@hlevelid",sbu));
da.SelectCommand=cmd;
da.Fill(Dataset1,"CISTemp");
CrystalDecisions.CrystalReports.Engine.ReportDocument myReportDocument;
myReportDocument = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
myReportDocument.Load(Server.MapPath("CrystalReport1.rpt"));
myReportDocument.SetDataSource(Dataset1); CrystalReportViewer1.ReportSource = myReportDocument;
CrystalReportViewer1.DataBind();
GeneralWork with DataList items, when updating via a control with no command name/argument values Pin
munklefish26-Feb-08 23:51
munklefish26-Feb-08 23:51 
GeneralOpacity to .aspx page, which contains usercontrol Pin
pashitech26-Feb-08 23:45
pashitech26-Feb-08 23:45 
GeneralRe: Opacity to .aspx page, which contains usercontrol Pin
N a v a n e e t h26-Feb-08 23:53
N a v a n e e t h26-Feb-08 23:53 
GeneralRe: Opacity to .aspx page, which contains usercontrol Pin
pashitech27-Feb-08 0:34
pashitech27-Feb-08 0:34 
GeneralRe: Opacity to .aspx page, which contains usercontrol Pin
Guffa27-Feb-08 0:46
Guffa27-Feb-08 0:46 
Questionlogout problem Pin
Ratnadeep_Raul26-Feb-08 23:38
Ratnadeep_Raul26-Feb-08 23:38 
GeneralRe: logout problem Pin
N a v a n e e t h26-Feb-08 23:50
N a v a n e e t h26-Feb-08 23:50 
Questionscroll bar of iframe should scroll downward on button click Pin
Ratnadeep_Raul26-Feb-08 23:32
Ratnadeep_Raul26-Feb-08 23:32 
Generalinsert datettime problem Pin
eyeseetee26-Feb-08 23:05
eyeseetee26-Feb-08 23:05 

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.