In my web application an user can select a time period (lets call that Page1), writing 2 dates in 2 textboxes. Clicking the button in that page will go to another page (Page2) with a reportviewer control and its report shows data within the time period.
The thing is I want to pass those textbox.value and set them up as parameters to include in a textbox in the report, and I'm not being able to. The code i'm using to go to page 2 is
Response.Redirect("~/Report.aspx");
, and the one i'm using in the page which is solely displaying the reportviewer is this:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Microsoft.Reporting.WebForms;
namespace myapp
{
public partial class Reportpage : System.Web.UI.Page
{
protected void Page_Load(object sender, Ev ...
Go to the complete details ...