Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 4th, 2007, 04:25 AM
Registered User
 
Join Date: Jan 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to ream
Default Desplay one page in other page

Hi !
I have 2 pages, default.aspx and register.aspx. in default.aspx linkbutton1 when I click in linkbutton1 I want to desplay linkbuttom2 in the default.aspx.but when I click on linkbuttom2 I want to desplay register.aspx in the onywhere in the default.aspx page. who can help me please send the answer to [email protected]

The application is developed in c# or vb.net.

             Thanks in Advance-ream sey


 
Old January 4th, 2007, 03:27 PM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

In order to navigate the browser to another page using a linkbutton, you would write codebehind like this:

Response.Redirect("anotherpage.aspx")

This will redirect the browser to "anotherpage.aspx".

Is this what you are looking to do?

-Peter
 
Old January 4th, 2007, 09:11 PM
Registered User
 
Join Date: Jan 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to ream
Default

Thank you peter
but I want is to desplay register.aspx in a default.aspx in <div> </dive> tag
it mean that when I click linkbuttom2 in default.aspx page it link to register.aspx and desplay in default.aspx in the <div></div> tag

 
Old January 5th, 2007, 10:10 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

So you want to embed one page in another page. You can't do that.

I think that perhaps what you want to do is create a registration user control that shows up when you click the button on the default page. That is easy. You just need to create a user control, put all the controls and code for registration on there. Then you can add it to the default page, and set its visible=false. Then on the click handler of the link button, you set visible=true.

-Peter





Similar Threads
Thread Thread Starter Forum Replies Last Post
how to prevent a web page/window page from copying pradeeppatnaik81 C# 2 April 9th, 2008 03:36 AM
Master Page and Content Page with Java script Harjinder ASP.NET 2.0 Professional 1 February 1st, 2008 10:31 AM
access C#.Net page as action of calssic ASP page mansharma_s ASP.NET 1.x and 2.0 Application Design 6 January 7th, 2008 10:58 AM
How to pass the variables in Aspx page to Asp Page jayaraj ASP.NET 1.0 and 1.1 Basics 3 May 23rd, 2004 06:55 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.