Wrox Programmer Forums
|
ASP.NET 1.x and 2.0 Application Design Application design with ASP.NET 1.0, 1.1, and 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.x and 2.0 Application Design 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 February 12th, 2007, 10:07 AM
Registered User
 
Join Date: Feb 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default framset help for asp.net 1.1

hi

i wana create a intranet app using asp.net 1.1, i wanna create a master page with menus on the left frame and right frame should load depends on link is clicked.

Im confused, since thereis no good stuff available abt frames.
i dont know how to use framses.pls help me out to create this sample code.
Pls. let me know if any better alternative of frame with code.


Thanks and appreciate ur help
 
Old February 12th, 2007, 10:19 AM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

Master Pages are a feature in .NET 2.0 not 1.1. I am somewhat confused, Frames are a simple HTML concept and doing a google search on how to work with frames should return you 1 Million+ results. Literally, its about 5 lines of HTML.



================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
 
Old February 12th, 2007, 10:31 AM
Registered User
 
Join Date: Feb 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

thanks 4 the advice! dont u think i havent did google b4 i post this .


 
Old February 12th, 2007, 10:43 AM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

Being that this search query:
http://www.google.com/search?hl=en&q=HTML+-+Frameset

Returns 1,570,000 results, I find it hard to believe.

In any case Frame code looks like this:
    <frameset rows="20%,80%, 20%" frameborder="0" framespacing="0">
        <frame src="file" name="top" noresize>
        <frameset cols="20%,80%" frameborder="0" framespacing="0">
            <frame src="file" name="left" noresize>
            <frame src="file" name="right" noresize>
        </frameset>
        <frame src="file" name="bottom" noresize>
    </frameset>
that gives a 3 row layout with the middle row containing 2 columns.

================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========





Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP.NET 3.5 answers in Professional ASP.NET 3.5 jminatel ASP.NET 3.5 Professionals 1 August 22nd, 2011 07:34 AM
Turning a regular ASP.NET App into an AJAX ASP.Net donrafeal7 Ajax 2 August 31st, 2007 12:33 AM
Database diagram in .net using asp.net,c#.net scotttiger ADO.NET 2 February 16th, 2005 01:35 AM





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