Search This Blog

Wednesday, October 20, 2010

cross page posting in c#

<%@ Page Language=”C#” AutoEventWireup=”true” CodeBehind=”next1.aspx.cs” Inherits=”WEBJOB.next1″ %>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd“>
<html xmlns=”http://www.w3.org/1999/xhtml” >
<head runat=”server”>
    <title>Untitled Page</title>
</head>
<body>
    <form id=”form1″ runat=”server”>
    <div>
  
        <asp:Label ID=”Label1″ runat=”server” Text=”Label”></asp:Label>
  
    </div>
    </form>
</body>
</html>
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
namespace WEBJOB
{
    public partial class next1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (PreviousPage != null)
            {
                Page poster = this.PreviousPage;
                Label1.Text = ((TextBox)this.PreviousPage.FindControl(“txtname”)).Text;
             
            }
          
          
        
        }
    }
}

1 comment :

Purushottam Kumar said...

Cross page-posting is not recommended.It can be Vulnerable to your application.
So i do request please give me some other solution for this problem.
The values can be seen over HTTP protocols.