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

ASP.NET

 
AnswerRe: How to Start ASP.Net Pin
Abhijit Jana26-Sep-09 5:52
professionalAbhijit Jana26-Sep-09 5:52 
QuestionData fetch and show in runtime [modified] Pin
rummer25-Sep-09 18:56
rummer25-Sep-09 18:56 
AnswerRe: Data fetch and show in runtime Pin
nagendrathecoder25-Sep-09 19:02
nagendrathecoder25-Sep-09 19:02 
AnswerRe: Data fetch and show in runtime Pin
nagendrathecoder25-Sep-09 19:15
nagendrathecoder25-Sep-09 19:15 
AnswerRe: Data fetch and show in runtime Pin
Abhijit Jana26-Sep-09 4:02
professionalAbhijit Jana26-Sep-09 4:02 
Questionthe problem of using querystring Pin
Seraph_summer25-Sep-09 8:55
Seraph_summer25-Sep-09 8:55 
AnswerRe: the problem of using querystring Pin
Abhishek Sur25-Sep-09 9:10
professionalAbhishek Sur25-Sep-09 9:10 
GeneralRe: the problem of using querystring Pin
Seraph_summer25-Sep-09 9:30
Seraph_summer25-Sep-09 9:30 
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 

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.