TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Chriz L
NA
220
50.7k
Rdlc (ReportViewer) going into loop on loading.
Oct 21 2015 4:41 AM
Hello,
I have the following code that binds rdlc to stored procedure. When I load the report page I get "loading" in loop.
protected void Page_Load(object sender, EventArgs e)
{
int id = Convert.ToInt32(id.Text);
ReportViewer1.ProcessingMode = ProcessingMode.Local;
ReportViewer1.LocalReport.ReportPath = Server.MapPath("~/Reports/RepFullApp.rdlc");
DataSet ds = new DataSet();
ds = GetData(id);
if (ds.Tables[0].Rows.Count > 0)
{
ReportDataSource rds = new ReportDataSource("DatasetFullApp", ds.Tables[0]);
ReportViewer1.LocalReport.DataSources.Clear();
ReportViewer1.LocalReport.DataSources.Add(rds);
ReportViewer1.LocalReport.Refresh();
}
}
private DataSet GetData(int id)
{
SqlConnection con = new SqlConnection("myConn");
con.Open();
SqlCommand cmd = new SqlCommand("sp1", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@ID", SqlDbType.Int).Value = id;
using (con)
{
using (SqlDataAdapter da = new SqlDataAdapter())
{
cmd.Connection = con;
da.SelectCommand = cmd;
DataSet ds = new DataSet();
da.Fill(ds);
return (ds);
}
}
}
Any kind of help will be appreciated.
Thank you in advance.
Reply
Answers (
2
)
Windbg Load Sos
mvc App from x86 machine to x64