GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  ASP.NET

 Print  |  
Question:  Page Posting

Answer: How do you post a current page to different ASPx page?


December 12, 2008 11:50:08 #7
 nithincninan   Member Since: December 2008    Total Comments: 1 

RE: Page Posting
 
 protected void Page_Load
   
        {
            Response.Redirect("webform.aspx");       
        }
 
     

 

Back To Question