Click here to Skip to main content
15,895,667 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: the problem of using querystring Pin
Abhishek Sur25-Sep-09 9:35
professionalAbhishek Sur25-Sep-09 9:35 
GeneralRe: the problem of using querystring Pin
Seraph_summer25-Sep-09 9:56
Seraph_summer25-Sep-09 9:56 
GeneralRe: the problem of using querystring Pin
Abhishek Sur25-Sep-09 10:02
professionalAbhishek Sur25-Sep-09 10:02 
GeneralRe: the problem of using querystring Pin
Seraph_summer25-Sep-09 10:09
Seraph_summer25-Sep-09 10:09 
GeneralRe: the problem of using querystring Pin
Abhishek Sur25-Sep-09 10:25
professionalAbhishek Sur25-Sep-09 10:25 
QuestionIs it possible to deploy a VS2005 Crystal report in a shared hosting environment like GoDaddy? Pin
David Mujica25-Sep-09 6:36
David Mujica25-Sep-09 6:36 
AnswerRe: Is it possible to deploy a VS2005 Crystal report in a shared hosting environment like GoDaddy? Pin
Abhishek Sur25-Sep-09 9:34
professionalAbhishek Sur25-Sep-09 9:34 
Questionasp.net , c# converting crystal report to pdf not working Pin
rajkumar.325-Sep-09 4:35
rajkumar.325-Sep-09 4:35 
i have given the following code to get pdf file from crystal report but at last line browser is not moving forwars its just showing process ...

can any one help in this regard


SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString = "Data Source=raj;User ID=sa;PWD=****;Initial Catalog=****";
SqlCommand MyCommand = new SqlCommand();
MyCommand.Connection = myConnection;
MyCommand.CommandText = "Select top 5 * from items";
MyCommand.CommandType = CommandType.Text;
SqlDataAdapter MyDA = new SqlDataAdapter();
MyDA.SelectCommand = MyCommand;
DataSet myDS = new DataSet();
MyDA.Fill(myDS, "items");
testrpt oRpt = new testrpt();
oRpt.SetDataSource(myDS);
ReportDocument doc = new ReportDocument();
string fileName = Server.MapPath("testrpt.rpt");
TableLogOnInfo LogInfo = new TableLogOnInfo();
LogInfo.ConnectionInfo.ServerName = "raj";
LogInfo.ConnectionInfo.UserID = "sa";
LogInfo.ConnectionInfo.Password = "sa!2009";
LogInfo.ConnectionInfo.DatabaseName = "fssads";
CrystalDecisions.CrystalReports.Engine.ReportDocument O_Report = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
O_Report.Load(Server.MapPath("testrpt.rpt"));
O_Report.Database.Tables[0].ApplyLogOnInfo(LogInfo);
O_Report.ExportToHttpResponse(ExportFormatType.PortableDocFormat, Response, true, "rptpdf");
QuestionHow to call a server-side method from client-side JavaScript Pin
pujafaldu25-Sep-09 2:52
pujafaldu25-Sep-09 2:52 
AnswerRe: How to call a server-side method from client-side JavaScript Pin
Nisha Agrawal25-Sep-09 3:07
Nisha Agrawal25-Sep-09 3:07 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
pujafaldu25-Sep-09 3:12
pujafaldu25-Sep-09 3:12 
AnswerRe: How to call a server-side method from client-side JavaScript Pin
Nisha Agrawal25-Sep-09 3:26
Nisha Agrawal25-Sep-09 3:26 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
Not Active25-Sep-09 3:32
mentorNot Active25-Sep-09 3:32 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
Nisha Agrawal25-Sep-09 3:55
Nisha Agrawal25-Sep-09 3:55 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
Not Active25-Sep-09 3:28
mentorNot Active25-Sep-09 3:28 
AnswerRe: How to call a server-side method from client-side JavaScript Pin
Not Active25-Sep-09 3:30
mentorNot Active25-Sep-09 3:30 
AnswerRe: How to call a server-side method from client-side JavaScript Pin
Nisha Agrawal25-Sep-09 3:57
Nisha Agrawal25-Sep-09 3:57 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
Not Active25-Sep-09 4:39
mentorNot Active25-Sep-09 4:39 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
Nisha Agrawal28-Sep-09 23:23
Nisha Agrawal28-Sep-09 23:23 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
Not Active29-Sep-09 2:03
mentorNot Active29-Sep-09 2:03 
GeneralRe: How to call a server-side method from client-side JavaScript Pin
Nisha Agrawal29-Sep-09 19:19
Nisha Agrawal29-Sep-09 19:19 
Questioncrystal report ask for login id and password Pin
vikas shukla25-Sep-09 2:22
vikas shukla25-Sep-09 2:22 
AnswerRe: crystal report ask for login id and password Pin
Greg Chelstowski25-Sep-09 3:04
Greg Chelstowski25-Sep-09 3:04 
GeneralRe: crystal report ask for login id and password Pin
sashidhar25-Sep-09 5:00
sashidhar25-Sep-09 5:00 
GeneralRe: crystal report ask for login id and password Pin
Greg Chelstowski27-Sep-09 22:58
Greg Chelstowski27-Sep-09 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.