|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
|
Does ASP.NET support frames? I'm having a hard time trying to figure out
how I can create a frame ASP page? Thanks, Rob. Oops, nevermind -- Add Component -- Frameset :)
Show quoteHide quote "Rob R. Ainscough" <roba***@pacbell.net> wrote in message news:uhzcSG4cFHA.4040@TK2MSFTNGP14.phx.gbl... > Does ASP.NET support frames? I'm having a hard time trying to figure out > how I can create a frame ASP page? > > Thanks, Rob. > Frames are not supported very well by ASP.NET, although they are possible.
I'd recommend you stay away from them unless you're very skilled in client side code. Here's more info: http://www.dotnet2themax.com/ShowContent.aspx?ID=903bcdde-589f-4bd1-92b4-e565c8eab013 Show quoteHide quote "Rob R. Ainscough" <roba***@pacbell.net> wrote in message news:uhzcSG4cFHA.4040@TK2MSFTNGP14.phx.gbl... > Does ASP.NET support frames? I'm having a hard time trying to figure out > how I can create a frame ASP page? > > Thanks, Rob. > I'm using frameset simply to hold ASPx pages and load in the appropriate
frame based on a hyperlink button. I'm hoping this is simple enough?? Thank you for the link. Show quoteHide quote "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message news:e%235loU4cFHA.1020@TK2MSFTNGP10.phx.gbl... > Frames are not supported very well by ASP.NET, although they are possible. > I'd recommend you stay away from them unless you're very skilled in client > side code. > > Here's more info: > http://www.dotnet2themax.com/ShowContent.aspx?ID=903bcdde-589f-4bd1-92b4-e565c8eab013 > > -- > I hope this helps, > Steve C. Orr, MCSD, MVP > http://SteveOrr.net > > > "Rob R. Ainscough" <roba***@pacbell.net> wrote in message > news:uhzcSG4cFHA.4040@TK2MSFTNGP14.phx.gbl... >> Does ASP.NET support frames? I'm having a hard time trying to figure out >> how I can create a frame ASP page? >> >> Thanks, Rob. >> > > Oh forgot to ask, do you an alternate method (other than frames) which can
accomplish the same task? Thanks, Rob. Show quoteHide quote "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message news:e%235loU4cFHA.1020@TK2MSFTNGP10.phx.gbl... > Frames are not supported very well by ASP.NET, although they are possible. > I'd recommend you stay away from them unless you're very skilled in client > side code. > > Here's more info: > http://www.dotnet2themax.com/ShowContent.aspx?ID=903bcdde-589f-4bd1-92b4-e565c8eab013 > > -- > I hope this helps, > Steve C. Orr, MCSD, MVP > http://SteveOrr.net > > > "Rob R. Ainscough" <roba***@pacbell.net> wrote in message > news:uhzcSG4cFHA.4040@TK2MSFTNGP14.phx.gbl... >> Does ASP.NET support frames? I'm having a hard time trying to figure out >> how I can create a frame ASP page? >> >> Thanks, Rob. >> > > The main problem with Frames in ASP.NET is figuring out how to pass the
appropriate state data between the pages in the frameset. This is problematic since the various frames pages never exist on the server at the same point in time as each other. This requires copious amounts of client side code to pass data around in creative ways. Generally user controls (or custom controls) are a simpler option for repeating common page sections. In ASP.NET 2.0, Master Pages will likely be the first choice. Here's more info: http://SteveOrr.net/faq/UserCustom.aspx http://aspnet.4guysfromrolla.com/articles/010505-1.aspx Show quoteHide quote "Rob R. Ainscough" <roba***@pacbell.net> wrote in message news:uEw0I64cFHA.1044@TK2MSFTNGP10.phx.gbl... > Oh forgot to ask, do you an alternate method (other than frames) which can > accomplish the same task? > > Thanks, Rob. > > "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message > news:e%235loU4cFHA.1020@TK2MSFTNGP10.phx.gbl... >> Frames are not supported very well by ASP.NET, although they are >> possible. >> I'd recommend you stay away from them unless you're very skilled in >> client side code. >> >> Here's more info: >> http://www.dotnet2themax.com/ShowContent.aspx?ID=903bcdde-589f-4bd1-92b4-e565c8eab013 >> >> -- >> I hope this helps, >> Steve C. Orr, MCSD, MVP >> http://SteveOrr.net >> >> >> "Rob R. Ainscough" <roba***@pacbell.net> wrote in message >> news:uhzcSG4cFHA.4040@TK2MSFTNGP14.phx.gbl... >>> Does ASP.NET support frames? I'm having a hard time trying to figure >>> out how I can create a frame ASP page? >>> >>> Thanks, Rob. >>> >> >> > > Odd, Session state seems to work for me??
Are you suggesting I repeat the same set of controls/graphics in the same locations for each and every ASP.NET WebForm page I create?? That seems crazy!!? Rob. Show quoteHide quote "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message news:uDK2RO5cFHA.584@TK2MSFTNGP15.phx.gbl... > The main problem with Frames in ASP.NET is figuring out how to pass the > appropriate state data between the pages in the frameset. This is > problematic since the various frames pages never exist on the server at > the same point in time as each other. This requires copious amounts of > client side code to pass data around in creative ways. > > Generally user controls (or custom controls) are a simpler option for > repeating common page sections. > In ASP.NET 2.0, Master Pages will likely be the first choice. > > Here's more info: > http://SteveOrr.net/faq/UserCustom.aspx > http://aspnet.4guysfromrolla.com/articles/010505-1.aspx > > -- > I hope this helps, > Steve C. Orr, MCSD, MVP > http://SteveOrr.net > > > "Rob R. Ainscough" <roba***@pacbell.net> wrote in message > news:uEw0I64cFHA.1044@TK2MSFTNGP10.phx.gbl... >> Oh forgot to ask, do you an alternate method (other than frames) which >> can accomplish the same task? >> >> Thanks, Rob. >> >> "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message >> news:e%235loU4cFHA.1020@TK2MSFTNGP10.phx.gbl... >>> Frames are not supported very well by ASP.NET, although they are >>> possible. >>> I'd recommend you stay away from them unless you're very skilled in >>> client side code. >>> >>> Here's more info: >>> http://www.dotnet2themax.com/ShowContent.aspx?ID=903bcdde-589f-4bd1-92b4-e565c8eab013 >>> >>> -- >>> I hope this helps, >>> Steve C. Orr, MCSD, MVP >>> http://SteveOrr.net >>> >>> >>> "Rob R. Ainscough" <roba***@pacbell.net> wrote in message >>> news:uhzcSG4cFHA.4040@TK2MSFTNGP14.phx.gbl... >>>> Does ASP.NET support frames? I'm having a hard time trying to figure >>>> out how I can create a frame ASP page? >>>> >>>> Thanks, Rob. >>>> >>> >>> >> >> > > No, that's not what I was suggesting.
Show quoteHide quote "Rob R. Ainscough" <roba***@pacbell.net> wrote in message news:uSQprONdFHA.2180@TK2MSFTNGP12.phx.gbl... > Odd, Session state seems to work for me?? > > Are you suggesting I repeat the same set of controls/graphics in the same > locations for each and every ASP.NET WebForm page I create?? That seems > crazy!!? > > Rob. > > > "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message > news:uDK2RO5cFHA.584@TK2MSFTNGP15.phx.gbl... >> The main problem with Frames in ASP.NET is figuring out how to pass the >> appropriate state data between the pages in the frameset. This is >> problematic since the various frames pages never exist on the server at >> the same point in time as each other. This requires copious amounts of >> client side code to pass data around in creative ways. >> >> Generally user controls (or custom controls) are a simpler option for >> repeating common page sections. >> In ASP.NET 2.0, Master Pages will likely be the first choice. >> >> Here's more info: >> http://SteveOrr.net/faq/UserCustom.aspx >> http://aspnet.4guysfromrolla.com/articles/010505-1.aspx >> >> -- >> I hope this helps, >> Steve C. Orr, MCSD, MVP >> http://SteveOrr.net >> >> >> "Rob R. Ainscough" <roba***@pacbell.net> wrote in message >> news:uEw0I64cFHA.1044@TK2MSFTNGP10.phx.gbl... >>> Oh forgot to ask, do you an alternate method (other than frames) which >>> can accomplish the same task? >>> >>> Thanks, Rob. >>> >>> "Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message >>> news:e%235loU4cFHA.1020@TK2MSFTNGP10.phx.gbl... >>>> Frames are not supported very well by ASP.NET, although they are >>>> possible. >>>> I'd recommend you stay away from them unless you're very skilled in >>>> client side code. >>>> >>>> Here's more info: >>>> http://www.dotnet2themax.com/ShowContent.aspx?ID=903bcdde-589f-4bd1-92b4-e565c8eab013 >>>> >>>> -- >>>> I hope this helps, >>>> Steve C. Orr, MCSD, MVP >>>> http://SteveOrr.net >>>> >>>> >>>> "Rob R. Ainscough" <roba***@pacbell.net> wrote in message >>>> news:uhzcSG4cFHA.4040@TK2MSFTNGP14.phx.gbl... >>>>> Does ASP.NET support frames? I'm having a hard time trying to figure >>>>> out how I can create a frame ASP page? >>>>> >>>>> Thanks, Rob. >>>>> >>>> >>>> >>> >>> >> >> > >
Webform Navigation
Can't set button to Visible? databind - XmlNodeList to DropDownList Need reviews and advice on web and data control tools and vendors custom web controls and conversion to inline code DataGrid NOT Paging Reach UserControl from ASPX codebehind? Programmatically changing CssStyle on Panels depending on DB values A program about get value from datagrid cell PHP guy turned ASP needs pointers |
|||||||||||||||||||||||