Click here to Skip to main content
15,903,175 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
GeneralRe: insert datettime problem Pin
eyeseetee26-Feb-08 23:42
eyeseetee26-Feb-08 23:42 
GeneralRe: insert datettime problem Pin
ssurya4u27-Feb-08 2:52
ssurya4u27-Feb-08 2:52 
QuestionServer Error - Operation must use an updateable query Pin
pavya_Cool26-Feb-08 22:50
pavya_Cool26-Feb-08 22:50 
GeneralRe: Server Error - Operation must use an updateable query Pin
ssurya4u27-Feb-08 3:01
ssurya4u27-Feb-08 3:01 
GeneralRe: Server Error - Operation must use an updateable query Pin
ssurya4u27-Feb-08 3:04
ssurya4u27-Feb-08 3:04 
GeneralHi friends. How can I clear the history of a browser page... Urgent Pin
G Nathan26-Feb-08 22:42
G Nathan26-Feb-08 22:42 
GeneralRe: Hi friends. How can I clear the history of a browser page... Urgent Pin
Sandeep Akhare26-Feb-08 22:47
Sandeep Akhare26-Feb-08 22:47 
GeneralRe: Hi friends. How can I clear the history of a browser page... Urgent Pin
Colin Angus Mackay26-Feb-08 22:58
Colin Angus Mackay26-Feb-08 22:58 

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.