Home All Groups Group Topic Archive Search About
Author
17 Jun 2005 9:14 PM
Rob R. Ainscough
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.

Author
17 Jun 2005 9:24 PM
Rob R. Ainscough
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.
>
Author
17 Jun 2005 9:42 PM
Steve C. Orr [MVP, MCSD]
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


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.
>
Author
17 Jun 2005 10:46 PM
Rob R. Ainscough
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.
>>
>
>
Author
17 Jun 2005 10:47 PM
Rob R. Ainscough
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.
>>
>
>
Author
17 Jun 2005 11:25 PM
Steve C. Orr [MVP, MCSD]
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


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.
>>>
>>
>>
>
>
Author
19 Jun 2005 1:34 PM
Rob R. Ainscough
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.
>>>>
>>>
>>>
>>
>>
>
>
Author
20 Jun 2005 5:45 PM
Steve C. Orr [MVP, MCSD]
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.
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>