TFS_ANTIGUO/PrendarioDavivienda/Sensibilizacion/FramePage.aspx.cs

52 lines
1.3 KiB
C#
Raw Permalink Normal View History

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace Sensibilizacion
{
/// <summary>
/// Summary description for FramePage.
/// </summary>
public class FramePage : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
string strData = "";
string[] arrData = new string[22];
strData = (this.Request["strData"] == null) ? "0" : this.Request["strData"].ToString().Trim();
arrData = strData.Split(('|'));
Response.Write("<iframe scrolling=no frameborder=No height=100% width=100% src='CuadroSensibilizacion.aspx?strData=" + strData + "'></iframe>");
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}