including aspx page

  • Thread starter Thread starter rona
  • Start date Start date
R

rona

hello,
i want to include aspx page within aspx page (vb.net) , can someone
tell me how to do it?
thank you
 
you want to have a read of a post on 8th with the subject Page Inheritance
by invalidlastname..

--
Regards,

HD

rona said:
hello,
i want to include aspx page within aspx page (vb.net) , can someone
tell me how to do it?
thank you



----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---
 
It depends on what you mean by include. Want to show a page within a
page, use the <FRAME> element. Want to include the raw code from
another page, use the #include directive (although there are usually
better ways to accomplish this)

HTH

Bruce Johnson
http://www.ObjectSharp.com/Bruce
 
i don't want to use <frame> because i want the page to be one
scrolling area, and i want the all included page to be displayed ,
can you give me more details about the #include
thank you so much
 
rona said:
i don't want to use <frame> because i want the page to be one
scrolling area, and i want the all included page to be displayed ,
can you give me more details about the #include
thank you so much

Includes were replaced by the concept of 'user controls'. Look in the
quickstart tutorials or search online for information. They're
basically the same (you define some HTML, etc.), but also have alot more
power related to being a .NET concept (can expose events, etc.).
 
The most common replacement for old fashioned include files are web user
controls.
They basically are like object oriented include files on steroids.

Here's more info:
http://msdn.microsoft.com/library/d...n/html/vbconintroductiontowebusercontrols.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vboriwebusercontrols.asp
http://msdn.microsoft.com/library/d...l/vbconWebUserControlsVsCustomWebControls.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com



rona said:
i don't want to use <frame> because i want the page to be one
scrolling area, and i want the all included page to be displayed ,
can you give me more details about the #include
thank you so much



----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---
 
the thing is i need the included page to be an aspx page that gets
parameters and creates a table depening on them. are user control
good for this perpuse?
thank you all for helping me
 
Sure, user controls are totally object oriented.
On them you can create public properties, methods, events, and constructors
that makes it easy to pass data around however you need.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com



rona said:
the thing is i need the included page to be an aspx page that gets
parameters and creates a table depening on them. are user control
good for this perpuse?
thank you all for helping me



----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---
 
Back
Top