Home   Help Login Register  
Welcome, Guest. Please login or register.

Login with username, password and session length

Search
Free Website WooThemes - Quality Themes, Great Support
Pages: [1]   Go Down
Print
Topic: example of Server.Transfer and Context Handler  (Read 1408 times)
« on: September 21, 2007, 06:27:55 AM »
hanusoft Offline
Newbie

View Profile WWW
*

iTrader: 0
Posts: 1



This is an example of Server.Transfer and Context Handler.
Through this we can get the multiple values of previous form.

In this page we are displaying data from previous form. We can use this technique for multiple form registration form.

Code (ContextParent.aspx.cs): -

private void Button1_Click(object sender,System.EventArgs e)
      {
      Server.Transfer("ContextChild.aspx");
      }

      internal Hashtable Value
      {
         get
         {
            Hashtable objHT = new Hashtable();
            objHT["Name"]=TextBox1.Text;
            objHT["FathersName"]= TextBox2.Text;
            objHT["Address"] = TextBox3.Text;
            return objHT;
         }
      }
Code (ContextChild.aspx.cs) :-

private void Page_Load(object sender, System.EventArgs e)
      {
         // Put user code to initialize the page here
         Hashtable objHT = new Hashtable();
         if(!IsPostBack)
         {
            ContextParent ParentPage;
            ParentPage = (ContextParent)Context.Handler;
            objHT = ParentPage.Value;
            Response.Write("<br><br>");
            foreach(DictionaryEntry di in objHT)
            {
               Response.Write(di.Key +" : "+di.Value);
               Response.Write("<br>");
            }
         }
      }

Share this topic on AskShare this topic on BlinkbitsShare this topic on BlinklistShare this topic on BloglinesShare this topic on BmarksShare this topic on Del.icio.usShare this topic on DiggShare this topic on DzoneShare this topic on FacebookShare this topic on Feed Me LinksShare this topic on FurlShare this topic on GoogleShare this topic on LiveShare this topic on MagnoliaShare this topic on MySpaceShare this topic on NetvouzShare this topic on NewsvineShare this topic on OneviewShare this topic on RedditShare this topic on RojoShare this topic on ScuttleShare this topic on ShadowsShare this topic on SlashdotShare this topic on SpurlShare this topic on SquidooShare this topic on StumbleUponShare this topic on TechnoratiShare this topic on TwitterShare this topic on TipdShare this topic on YahooShare this topic on Google buzz
« Last Edit: August 01, 2010, 10:23:46 AM by Kailash » Logged
« Reply #1 on: September 22, 2007, 07:50:22 PM »
Mike Offline
Newbie

View Profile
*

iTrader: 0
Posts: 36



nice stuff!!

Mike
« Last Edit: December 31, 1969, 05:00:00 PM by Mike » Logged
Pages: [1]   Go Up
Print
Jump to:  

Untitled Document
(c) 2010 HELM, WHM, cPanel, ASP, .Net development, PHP, MySQL, MSSQL Server, SEO support forum
Powered by SMF 1.1.16 | SMF © 2011, Simple Machines | Forum style designed by PixelSlot
Web Hosting - Sitemap - XML Sitemap