I have developed RDLC report and a drill through, it works but problem is that when drill through report appears , it stays out of layout, like below footer, why ? And when i go back to main report then it also become out of layout why ?
public partial class Report_GetComplaints_SdpoReplies : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// Two Lines Below Helps in Triggering Generate Report Button Upon Pressing ENTER Button.
this.Page.Form.DefaultButton = btnPreview.UniqueID;
this.Page.Form.DefaultFocus = btnPreview.ClientID;
if (Session.Count <= 0)
{
//Checks if User Has Not Logged In then Must Be Redirected To Login Page.
Response.Redirect("login.aspx");
}
if (!IsPostBack)
{
//Checks if Page is Called For the First Time or ...
Go to the complete details ...