Ask a Question related to ASP.NET General, Design and Development.
-
Helixpoint #1
Frameset
How do you do a frameset in an aspx page?
--
______________________
David Fetrow
HelixPoint LLC.
[url]http://www.helixpoint.com[/url]
[email]davef@helixpoint.com[/email]
Interested in Affordable Email Marketing?
Check out the HelixMailer at [url]http://www.helixpoint.com/helixmailer.asp[/url]
If you are interested in becoming a Reseller of HelixPoint products, contact
[email]davef@helixpoint.com[/email]
______________________
Helixpoint Guest
-
Frameset problem
Help I hope some one out there can help me. I have made a web site using frames with the idea that the left and top remain static and using the menu... -
FRAMESET HELP
trying my first hand at frames and framesets. I first created a site based on using one frameset, but found that limiting so I learned how to... -
Frameset Help Please
Hi, ive got a problem. I have a four divided frameset. One banner like frame at the top, two right and let menus and one relative center area.... -
locked into frameset
I'm working on a coldfusion application in Dreamweaver, primarilly in code view. Somewhere along the way, Dreamweaver got the idea that one of my... -
Problems with frameset
Hi everyone I have a problem with a frameset with 3 frames. In the "main"frame i have a page with a numer of textboxes and dropdownlists and all... -
Kevin Spencer #2
Re: Frameset
I'm a bit confused. A Frameset is a frameset. It's not an ASP.Net entity;
it's an HTML entity. You do it the same. Unless I'm misunderstanding your
question.
HTH,
Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of Little things.
"Helixpoint" <dave@helixpoint.com> wrote in message
news:ewhLw7xODHA.1364@TK2MSFTNGP10.phx.gbl...contact> How do you do a frameset in an aspx page?
>
> --
>
> ______________________
> David Fetrow
> HelixPoint LLC.
> [url]http://www.helixpoint.com[/url]
> [email]davef@helixpoint.com[/email]
>
> Interested in Affordable Email Marketing?
> Check out the HelixMailer at [url]http://www.helixpoint.com/helixmailer.asp[/url]
> If you are interested in becoming a Reseller of HelixPoint products,> [email]davef@helixpoint.com[/email]
> ______________________
>
>
Kevin Spencer Guest
-
Helixpoint #3
Re: Frameset
sorry in Visual Studio??
I figured it out
"Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
news:OMR0kayODHA.1748@TK2MSFTNGP11.phx.gbl...> I'm a bit confused. A Frameset is a frameset. It's not an ASP.Net entity;
> it's an HTML entity. You do it the same. Unless I'm misunderstanding your
> question.
>
> HTH,
>
> Kevin Spencer
> Microsoft FrontPage MVP
> Internet Developer
> [url]http://www.takempis.com[/url]
> Big things are made up of
> lots of Little things.
>
> "Helixpoint" <dave@helixpoint.com> wrote in message
> news:ewhLw7xODHA.1364@TK2MSFTNGP10.phx.gbl...> contact> > How do you do a frameset in an aspx page?
> >
> > --
> >
> > ______________________
> > David Fetrow
> > HelixPoint LLC.
> > [url]http://www.helixpoint.com[/url]
> > [email]davef@helixpoint.com[/email]
> >
> > Interested in Affordable Email Marketing?
> > Check out the HelixMailer at [url]http://www.helixpoint.com/helixmailer.asp[/url]
> > If you are interested in becoming a Reseller of HelixPoint products,>> > [email]davef@helixpoint.com[/email]
> > ______________________
> >
> >
>
Helixpoint Guest
-
Jacky Kwok #4
Re: Frameset
Kevin Spencer wrote:
Hi:> I'm a bit confused. A Frameset is a frameset. It's not an ASP.Net entity;
> it's an HTML entity. You do it the same. Unless I'm misunderstanding your
> question.
>
> HTH,
>
Just a little bit comment.
Yes, a frameset is basically a HTML entity only. However, ASP.NET can
still give some programming fucntion to it.
e.g. dynamically decide the frame source.
//--WebForm1.aspx
<%@ Page language="c#" Codebehind="WebForm1.aspx.cs"
AutoEventWireup="false" Inherits="_20030626_Frame.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
<head>
<title>WebForm1</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<frameset rows="*,*">
<%=GetFrame1()%>
<%=GetFrame2()%>
</frameset>
</html>
//--WebForm1.aspx.cs
public class WebForm1 : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
public string GetFrame1()
{
return "<frame name=\"top\" src=\"http://www.microsoft.com\" >";
}
public string GetFrame2()
{
return "<frame name=\"top\" src=\"http://msdn.microsoft.com\" >";
}
}
//--
We can use the ASP.NET programming to do anything , for example check
user login or not.
Change to display different frames depends on what information in the
session, etc.
Maybe someone does not agress to use frameset in ASP.NET. However, I
just point out a probability.
--
Jacky Kwok
[email]jacky@alumni.cuhk.edu.hk[/email]
[email]jacky@compose.com.hk[/email]
Jacky Kwok Guest
-
IntraRELY #5
FRAMESET
I am building an Intranet application and is more of an "Application" vs. a
typical "Web Application" or "Web Site". Using a FRAMSET seems like it has
many benefits and gives mainly the feel of quicker access and a more
streamlined application. However, am I sure you know of the drawbacks, for
instance F5 to refresh (which loads the default page), I know I can work
around this, but wanted to know what may suite me best in my scenario. I
plan on using ASP.NET Menu for the menu interface.
The user needs to quickly switch between pages like a local application, or
at least quickly as possible. This is a data entry system, not a "cool
looking e-commerce site". Having the whole page reload for every page can
take twice as long. The only graphical part of the application is the menu
and if I have to reload the menu for every page request.you could imagine
how much time can be saved by using the same menu for all pages.
The reason I am looking at using ASP.Net Menu is the fact that this needs to
mimic more of the "Local Application" and the end users will be using this
8+ hours a day, so the interface has to be clean. But I also need to
minimize the response time due to the amount of usage per user. There aren't
so many users, but this is the core application the company will be
utilizing.
I am looking for an opinion.
TIA,
Steve Wofford
[url]www.IntraRELY.com[/url]
IntraRELY Guest
-
Tibby #6
Re: FRAMESET
IMHO, Web Interface for DataEntry is horrid, but that's my HO. There's
Javascript that can refresh just a single frame, or you can have the page
just refresh itself.
HTH
Tibby
"IntraRELY" <IntraRELY@yahoo.com> wrote in message
news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...a> I am building an Intranet application and is more of an "Application" vs.or> typical "Web Application" or "Web Site". Using a FRAMSET seems like it has
> many benefits and gives mainly the feel of quicker access and a more
> streamlined application. However, am I sure you know of the drawbacks, for
> instance F5 to refresh (which loads the default page), I know I can work
> around this, but wanted to know what may suite me best in my scenario. I
> plan on using ASP.NET Menu for the menu interface.
>
> The user needs to quickly switch between pages like a local application,to> at least quickly as possible. This is a data entry system, not a "cool
> looking e-commerce site". Having the whole page reload for every page can
> take twice as long. The only graphical part of the application is the menu
> and if I have to reload the menu for every page request.you could imagine
> how much time can be saved by using the same menu for all pages.
>
> The reason I am looking at using ASP.Net Menu is the fact that this needsaren't> mimic more of the "Local Application" and the end users will be using this
> 8+ hours a day, so the interface has to be clean. But I also need to
> minimize the response time due to the amount of usage per user. There> so many users, but this is the core application the company will be
> utilizing.
> I am looking for an opinion.
> TIA,
> Steve Wofford
> [url]www.IntraRELY.com[/url]
>
>
Tibby Guest
-
IntraRELY #7
Re: FRAMESET
Thanks. I am not worried about refresh, I can just give them a refresh
button to refresh the datagrid from the db. I am not really a web designer,
but it looks like I need to use CSS. Remeber I just want to keep content
updated not the menu, as there are round trips required to update a menu
that never changes.
Steve
"Tibby" <tierscheiss1977@hotmail.com> wrote in message
news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...vs.> IMHO, Web Interface for DataEntry is horrid, but that's my HO. There's
> Javascript that can refresh just a single frame, or you can have the page
> just refresh itself.
>
> HTH
> Tibby
> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...> > I am building an Intranet application and is more of an "Application"has> a> > typical "Web Application" or "Web Site". Using a FRAMSET seems like itfor> > many benefits and gives mainly the feel of quicker access and a more
> > streamlined application. However, am I sure you know of the drawbacks,can> or> > instance F5 to refresh (which loads the default page), I know I can work
> > around this, but wanted to know what may suite me best in my scenario. I
> > plan on using ASP.NET Menu for the menu interface.
> >
> > The user needs to quickly switch between pages like a local application,> > at least quickly as possible. This is a data entry system, not a "cool
> > looking e-commerce site". Having the whole page reload for every pagemenu> > take twice as long. The only graphical part of the application is theimagine> > and if I have to reload the menu for every page request.you couldneeds> > how much time can be saved by using the same menu for all pages.
> >
> > The reason I am looking at using ASP.Net Menu is the fact that thisthis> to> > mimic more of the "Local Application" and the end users will be using> aren't> > 8+ hours a day, so the interface has to be clean. But I also need to
> > minimize the response time due to the amount of usage per user. There>> > so many users, but this is the core application the company will be
> > utilizing.
> > I am looking for an opinion.
> > TIA,
> > Steve Wofford
> > [url]www.IntraRELY.com[/url]
> >
> >
>
IntraRELY Guest
-
IntraRELY #8
Re: FRAMESET
Thanks Yan-Hong,
I have two primary pieces of my application that make the layout.
- The menu - Although I have to build it differant based on the users group
permissions(this is out of scope of my question). The menu stays the same
through out the session. I thought it may be best if I DO NOT load it every
time for each web request and is why I was thing something similar to the
old FRAMES. It sounds like you might have been suggesting that I reload it
with each page request.
- Content - this consists of datagrids and forms, plain stuff, but is being
pulled from a db.
What I need to know is.
a. should I load the entire page and all. This includes menu items and the
content that changes anyways.
b. just load the content. Leaving the menu alone and avoid redownloading it.
I plan on using ASP.NET Menu ([url]www.aspnetmenu.com[/url]) for this. If so do I use
IFrame CSS or User Controls. I cannot seem to get a straight answer.
Keep in mind this is an IntraNET application, no search engines and everyone
will be using IE6.0. This application doesnt have the interface just yet,
and isnt that I am having issues, but rather want to build it right the
first time.
Thanks for your input,
Steve Wofford
[url]www.IntraRELY.com[/url]
"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
news:AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl...it need to communicate with web server to show, and> Hello Steve,
>
> Web application has its limitations such as it need to be run in browser,aspx pages.> etc. For your question, I think the main concern is the performance ofpages. If you want to use these formats to show static>
> For CSS, Frameset, I think they are all data presentation ways of webclients are browsing them. However, if the page> pages, it is OK and it doesn't need to communicate with web server whenperformance of it.> need user interaction, what we could think of is how to improve thecaching. I suggest you read "Developing High->
> ASP.NET provides many way to improve performance than typical, such asused tips in developing high-performance> Performance ASP.NET Applications" in MSDN. It provides some frequently[url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-performanceaspnetapplications.asp?[/url]> asp.net applications.
>rights.> frame=true
>
> Hope it helps.
>
> Best regards,
> Yanhong Huang
> Microsoft Online Partner Support
>
> Get Secure! - [url]www.microsoft.com/security[/url]
> This posting is provided "AS IS" with no warranties, and confers no<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>>
> --------------------
> !From: "IntraRELY" <IntraRELY@yahoo.com>
> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>microsoft.public.dotnet.framework.aspnet:165455> !Subject: Re: FRAMESET
> !Date: Wed, 6 Aug 2003 10:57:59 -0700
> !Lines: 61
> !X-Priority: 3
> !X-MSMail-Priority: Normal
> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> !Message-ID: <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
> !Newsgroups: microsoft.public.dotnet.framework.aspnet
> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
> !Xref: cpmsftngxa06.phx.gbldesigner,> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> !
> !Thanks. I am not worried about refresh, I can just give them a refresh
> !button to refresh the datagrid from the db. I am not really a webpage> !but it looks like I need to use CSS. Remeber I just want to keep content
> !updated not the menu, as there are round trips required to update a menu
> !that never changes.
> !
> !Steve
> !
> !"Tibby" <tierscheiss1977@hotmail.com> wrote in message
> !news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...
> !> IMHO, Web Interface for DataEntry is horrid, but that's my HO. There's
> !> Javascript that can refresh just a single frame, or you can have theit> !> just refresh itself.
> !>
> !> HTH
> !> Tibby
> !> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
> !> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...
> !> > I am building an Intranet application and is more of an "Application"
> !vs.
> !> a
> !> > typical "Web Application" or "Web Site". Using a FRAMSET seems likedrawbacks,> !has
> !> > many benefits and gives mainly the feel of quicker access and a more
> !> > streamlined application. However, am I sure you know of thework> !for
> !> > instance F5 to refresh (which loads the default page), I know I canscenario. I> !> > around this, but wanted to know what may suite me best in myapplication,> !> > plan on using ASP.NET Menu for the menu interface.
> !> >
> !> > The user needs to quickly switch between pages like a local"cool> !> or
> !> > at least quickly as possible. This is a data entry system, not a> !> > looking e-commerce site". Having the whole page reload for every page
> !can
> !> > take twice as long. The only graphical part of the application is the
> !menu
> !> > and if I have to reload the menu for every page request.you could
> !imagine
> !> > how much time can be saved by using the same menu for all pages.
> !> >
> !> > The reason I am looking at using ASP.Net Menu is the fact that this
> !needs
> !> to
> !> > mimic more of the "Local Application" and the end users will be using
> !this
> !> > 8+ hours a day, so the interface has to be clean. But I also need to
> !> > minimize the response time due to the amount of usage per user. There
> !> aren't
> !> > so many users, but this is the core application the company will be
> !> > utilizing.
> !> > I am looking for an opinion.
> !> > TIA,
> !> > Steve Wofford
> !> > [url]www.IntraRELY.com[/url]
> !> >
> !> >
> !>
> !>
> !
> !
> !
>
>
IntraRELY Guest
-
Yan-Hong Huang[MSFT] #9
Re: FRAMESET
Hello Steve,
That is much clearer now. :) I suggest you make menu in a frame and datagrid in another frame. So the content of menu won't
be refreshed and only the content of the datagrid need to post back to the web server.
ASP.NET menu control is OK for it. Thanks.
Best regards,
Yanhong Huang
Microsoft Online Partner Support
Get Secure! - [url]www.microsoft.com/security[/url]
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
!From: "IntraRELY" <IntraRELY@yahoo.com>
!References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
<eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>
!Subject: Re: FRAMESET
!Date: Thu, 7 Aug 2003 19:46:56 -0700
!Lines: 161
!X-Priority: 3
!X-MSMail-Priority: Normal
!X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!Message-ID: <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:166000
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!Thanks Yan-Hong,
!
!I have two primary pieces of my application that make the layout.
!
!- The menu - Although I have to build it differant based on the users group
!permissions(this is out of scope of my question). The menu stays the same
!through out the session. I thought it may be best if I DO NOT load it every
!time for each web request and is why I was thing something similar to the
!old FRAMES. It sounds like you might have been suggesting that I reload it
!with each page request.
!
!- Content - this consists of datagrids and forms, plain stuff, but is being
!pulled from a db.
!
!What I need to know is.
!
!a. should I load the entire page and all. This includes menu items and the
!content that changes anyways.
!
!b. just load the content. Leaving the menu alone and avoid redownloading it.
!I plan on using ASP.NET Menu ([url]www.aspnetmenu.com[/url]) for this. If so do I use
!IFrame CSS or User Controls. I cannot seem to get a straight answer.
!
!Keep in mind this is an IntraNET application, no search engines and everyone
!will be using IE6.0. This application doesnt have the interface just yet,
!and isnt that I am having issues, but rather want to build it right the
!first time.
!
!Thanks for your input,
!
!Steve Wofford
![url]www.IntraRELY.com[/url]
!
!"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
!news:AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl...
!> Hello Steve,
!>
!> Web application has its limitations such as it need to be run in browser,
!it need to communicate with web server to show, and
!> etc. For your question, I think the main concern is the performance of
!aspx pages.
!>
!> For CSS, Frameset, I think they are all data presentation ways of web
!pages. If you want to use these formats to show static
!> pages, it is OK and it doesn't need to communicate with web server when
!clients are browsing them. However, if the page
!> need user interaction, what we could think of is how to improve the
!performance of it.
!>
!> ASP.NET provides many way to improve performance than typical, such as
!caching. I suggest you read "Developing High-
!> Performance ASP.NET Applications" in MSDN. It provides some frequently
!used tips in developing high-performance
!> asp.net applications.
!>
![url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-performanceaspnetapplications.asp?[/url]
!> frame=true
!>
!> Hope it helps.
!>
!> Best regards,
!> Yanhong Huang
!> Microsoft Online Partner Support
!>
!> Get Secure! - [url]www.microsoft.com/security[/url]
!> This posting is provided "AS IS" with no warranties, and confers no
!rights.
!>
!> --------------------
!> !From: "IntraRELY" <IntraRELY@yahoo.com>
!> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
!<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
!> !Subject: Re: FRAMESET
!> !Date: Wed, 6 Aug 2003 10:57:59 -0700
!> !Lines: 61
!> !X-Priority: 3
!> !X-MSMail-Priority: Normal
!> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!> !Message-ID: <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
!> !Newsgroups: microsoft.public.dotnet.framework.aspnet
!> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
!> !Xref: cpmsftngxa06.phx.gbl
!microsoft.public.dotnet.framework.aspnet:165455
!> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!> !
!> !Thanks. I am not worried about refresh, I can just give them a refresh
!> !button to refresh the datagrid from the db. I am not really a web
!designer,
!> !but it looks like I need to use CSS. Remeber I just want to keep content
!> !updated not the menu, as there are round trips required to update a menu
!> !that never changes.
!> !
!> !Steve
!> !
!> !"Tibby" <tierscheiss1977@hotmail.com> wrote in message
!> !news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...
!> !> IMHO, Web Interface for DataEntry is horrid, but that's my HO. There's
!> !> Javascript that can refresh just a single frame, or you can have the
!page
!> !> just refresh itself.
!> !>
!> !> HTH
!> !> Tibby
!> !> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
!> !> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...
!> !> > I am building an Intranet application and is more of an "Application"
!> !vs.
!> !> a
!> !> > typical "Web Application" or "Web Site". Using a FRAMSET seems like
!it
!> !has
!> !> > many benefits and gives mainly the feel of quicker access and a more
!> !> > streamlined application. However, am I sure you know of the
!drawbacks,
!> !for
!> !> > instance F5 to refresh (which loads the default page), I know I can
!work
!> !> > around this, but wanted to know what may suite me best in my
!scenario. I
!> !> > plan on using ASP.NET Menu for the menu interface.
!> !> >
!> !> > The user needs to quickly switch between pages like a local
!application,
!> !> or
!> !> > at least quickly as possible. This is a data entry system, not a
!"cool
!> !> > looking e-commerce site". Having the whole page reload for every page
!> !can
!> !> > take twice as long. The only graphical part of the application is the
!> !menu
!> !> > and if I have to reload the menu for every page request.you could
!> !imagine
!> !> > how much time can be saved by using the same menu for all pages.
!> !> >
!> !> > The reason I am looking at using ASP.Net Menu is the fact that this
!> !needs
!> !> to
!> !> > mimic more of the "Local Application" and the end users will be using
!> !this
!> !> > 8+ hours a day, so the interface has to be clean. But I also need to
!> !> > minimize the response time due to the amount of usage per user. There
!> !> aren't
!> !> > so many users, but this is the core application the company will be
!> !> > utilizing.
!> !> > I am looking for an opinion.
!> !> > TIA,
!> !> > Steve Wofford
!> !> > [url]www.IntraRELY.com[/url]
!> !> >
!> !> >
!> !>
!> !>
!> !
!> !
!> !
!>
!>
!
!
!
Yan-Hong Huang[MSFT] Guest
-
IntraRELY #10
Re: FRAMESET
Thanks again Yan-Hong,
Sounds good, but I have the option to use iFrame, Frameset and old fashion
FRAM. What method would work using ASP.NET Menu.
Thanks,
Steve Wofford
[url]www.IntraRELY.com[/url]
"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
news:LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl...datagrid in another frame. So the content of menu won't> Hello Steve,
>
> That is much clearer now. :) I suggest you make menu in a frame andweb server.> be refreshed and only the content of the datagrid need to post back to therights.>
> ASP.NET menu control is OK for it. Thanks.
>
> Best regards,
> Yanhong Huang
> Microsoft Online Partner Support
>
> Get Secure! - [url]www.microsoft.com/security[/url]
> This posting is provided "AS IS" with no warranties, and confers no<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>>
> --------------------
> !From: "IntraRELY" <IntraRELY@yahoo.com>
> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl><AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>> <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>microsoft.public.dotnet.framework.aspnet:166000> !Subject: Re: FRAMESET
> !Date: Thu, 7 Aug 2003 19:46:56 -0700
> !Lines: 161
> !X-Priority: 3
> !X-MSMail-Priority: Normal
> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> !Message-ID: <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
> !Newsgroups: microsoft.public.dotnet.framework.aspnet
> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
> !Xref: cpmsftngxa06.phx.gblgroup> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> !
> !Thanks Yan-Hong,
> !
> !I have two primary pieces of my application that make the layout.
> !
> !- The menu - Although I have to build it differant based on the usersevery> !permissions(this is out of scope of my question). The menu stays the same
> !through out the session. I thought it may be best if I DO NOT load itit> !time for each web request and is why I was thing something similar to the
> !old FRAMES. It sounds like you might have been suggesting that I reloadbeing> !with each page request.
> !
> !- Content - this consists of datagrids and forms, plain stuff, but isthe> !pulled from a db.
> !
> !What I need to know is.
> !
> !a. should I load the entire page and all. This includes menu items andit.> !content that changes anyways.
> !
> !b. just load the content. Leaving the menu alone and avoid redownloadinguse> !I plan on using ASP.NET Menu ([url]www.aspnetmenu.com[/url]) for this. If so do Ieveryone> !IFrame CSS or User Controls. I cannot seem to get a straight answer.
> !
> !Keep in mind this is an IntraNET application, no search engines andbrowser,> !will be using IE6.0. This application doesnt have the interface just yet,
> !and isnt that I am having issues, but rather want to build it right the
> !first time.
> !
> !Thanks for your input,
> !
> !Steve Wofford
> ![url]www.IntraRELY.com[/url]
> !
> !"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
> !news:AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl...
> !> Hello Steve,
> !>
> !> Web application has its limitations such as it need to be run in![url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-pe[/url]> !it need to communicate with web server to show, and
> !> etc. For your question, I think the main concern is the performance of
> !aspx pages.
> !>
> !> For CSS, Frameset, I think they are all data presentation ways of web
> !pages. If you want to use these formats to show static
> !> pages, it is OK and it doesn't need to communicate with web server when
> !clients are browsing them. However, if the page
> !> need user interaction, what we could think of is how to improve the
> !performance of it.
> !>
> !> ASP.NET provides many way to improve performance than typical, such as
> !caching. I suggest you read "Developing High-
> !> Performance ASP.NET Applications" in MSDN. It provides some frequently
> !used tips in developing high-performance
> !> asp.net applications.
> !>
>
rformanceaspnetapplications.asp?content> !> frame=true
> !>
> !> Hope it helps.
> !>
> !> Best regards,
> !> Yanhong Huang
> !> Microsoft Online Partner Support
> !>
> !> Get Secure! - [url]www.microsoft.com/security[/url]
> !> This posting is provided "AS IS" with no warranties, and confers no
> !rights.
> !>
> !> --------------------
> !> !From: "IntraRELY" <IntraRELY@yahoo.com>
> !> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
> !<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
> !> !Subject: Re: FRAMESET
> !> !Date: Wed, 6 Aug 2003 10:57:59 -0700
> !> !Lines: 61
> !> !X-Priority: 3
> !> !X-MSMail-Priority: Normal
> !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> !> !Message-ID: <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
> !> !Newsgroups: microsoft.public.dotnet.framework.aspnet
> !> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
> !> !Xref: cpmsftngxa06.phx.gbl
> !microsoft.public.dotnet.framework.aspnet:165455
> !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> !> !
> !> !Thanks. I am not worried about refresh, I can just give them a refresh
> !> !button to refresh the datagrid from the db. I am not really a web
> !designer,
> !> !but it looks like I need to use CSS. Remeber I just want to keepmenu> !> !updated not the menu, as there are round trips required to update aThere's> !> !that never changes.
> !> !
> !> !Steve
> !> !
> !> !"Tibby" <tierscheiss1977@hotmail.com> wrote in message
> !> !news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...
> !> !> IMHO, Web Interface for DataEntry is horrid, but that's my HO."Application"> !> !> Javascript that can refresh just a single frame, or you can have the
> !page
> !> !> just refresh itself.
> !> !>
> !> !> HTH
> !> !> Tibby
> !> !> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
> !> !> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...
> !> !> > I am building an Intranet application and is more of anlike> !> !vs.
> !> !> a
> !> !> > typical "Web Application" or "Web Site". Using a FRAMSET seemsmore> !it
> !> !has
> !> !> > many benefits and gives mainly the feel of quicker access and acan> !> !> > streamlined application. However, am I sure you know of the
> !drawbacks,
> !> !for
> !> !> > instance F5 to refresh (which loads the default page), I know Ipage> !work
> !> !> > around this, but wanted to know what may suite me best in my
> !scenario. I
> !> !> > plan on using ASP.NET Menu for the menu interface.
> !> !> >
> !> !> > The user needs to quickly switch between pages like a local
> !application,
> !> !> or
> !> !> > at least quickly as possible. This is a data entry system, not a
> !"cool
> !> !> > looking e-commerce site". Having the whole page reload for everythe> !> !can
> !> !> > take twice as long. The only graphical part of the application isthis> !> !menu
> !> !> > and if I have to reload the menu for every page request.you could
> !> !imagine
> !> !> > how much time can be saved by using the same menu for all pages.
> !> !> >
> !> !> > The reason I am looking at using ASP.Net Menu is the fact thatusing> !> !needs
> !> !> to
> !> !> > mimic more of the "Local Application" and the end users will beto> !> !this
> !> !> > 8+ hours a day, so the interface has to be clean. But I also needThere> !> !> > minimize the response time due to the amount of usage per user.be> !> !> aren't
> !> !> > so many users, but this is the core application the company will> !> !> > utilizing.
> !> !> > I am looking for an opinion.
> !> !> > TIA,
> !> !> > Steve Wofford
> !> !> > [url]www.IntraRELY.com[/url]
> !> !> >
> !> !> >
> !> !>
> !> !>
> !> !
> !> !
> !> !
> !>
> !>
> !
> !
> !
>
>
IntraRELY Guest
-
IntraRELY #11
Re: FRAMESET
I have also been told I can use Web User Controls, but at this point I am
lost...it seems like such simple concept.
Thanks again,
Steve Wofford
[url]www.IntraRELY.com[/url]
"IntraRELY" <IntraRELY@yahoo.com> wrote in message
news:uyYmryVXDHA.1644@TK2MSFTNGP10.phx.gbl...fashion> Thanks again Yan-Hong,
>
> Sounds good, but I have the option to use iFrame, Frameset and oldthe> FRAM. What method would work using ASP.NET Menu.
>
> Thanks,
>
> Steve Wofford
> [url]www.IntraRELY.com[/url]
>
> "Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
> news:LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl...> datagrid in another frame. So the content of menu won't> > Hello Steve,
> >
> > That is much clearer now. :) I suggest you make menu in a frame and> > be refreshed and only the content of the datagrid need to post back tosame> web server.> rights.> >
> > ASP.NET menu control is OK for it. Thanks.
> >
> > Best regards,
> > Yanhong Huang
> > Microsoft Online Partner Support
> >
> > Get Secure! - [url]www.microsoft.com/security[/url]
> > This posting is provided "AS IS" with no warranties, and confers no> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>> >
> > --------------------
> > !From: "IntraRELY" <IntraRELY@yahoo.com>
> > !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>> > <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>> microsoft.public.dotnet.framework.aspnet:166000> > !Subject: Re: FRAMESET
> > !Date: Thu, 7 Aug 2003 19:46:56 -0700
> > !Lines: 161
> > !X-Priority: 3
> > !X-MSMail-Priority: Normal
> > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> > !Message-ID: <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
> > !Newsgroups: microsoft.public.dotnet.framework.aspnet
> > !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
> > !Xref: cpmsftngxa06.phx.gbl> group> > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> > !
> > !Thanks Yan-Hong,
> > !
> > !I have two primary pieces of my application that make the layout.
> > !
> > !- The menu - Although I have to build it differant based on the users> > !permissions(this is out of scope of my question). The menu stays thethe> every> > !through out the session. I thought it may be best if I DO NOT load it> > !time for each web request and is why I was thing something similar toredownloading> it> > !old FRAMES. It sounds like you might have been suggesting that I reload> being> > !with each page request.
> > !
> > !- Content - this consists of datagrids and forms, plain stuff, but is> the> > !pulled from a db.
> > !
> > !What I need to know is.
> > !
> > !a. should I load the entire page and all. This includes menu items and> > !content that changes anyways.
> > !
> > !b. just load the content. Leaving the menu alone and avoidyet,> it.> use> > !I plan on using ASP.NET Menu ([url]www.aspnetmenu.com[/url]) for this. If so do I> everyone> > !IFrame CSS or User Controls. I cannot seem to get a straight answer.
> > !
> > !Keep in mind this is an IntraNET application, no search engines and> > !will be using IE6.0. This application doesnt have the interface justof> browser,> > !and isnt that I am having issues, but rather want to build it right the
> > !first time.
> > !
> > !Thanks for your input,
> > !
> > !Steve Wofford
> > ![url]www.IntraRELY.com[/url]
> > !
> > !"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
> > !news:AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl...
> > !> Hello Steve,
> > !>
> > !> Web application has its limitations such as it need to be run in> > !it need to communicate with web server to show, and
> > !> etc. For your question, I think the main concern is the performancewhen> > !aspx pages.
> > !>
> > !> For CSS, Frameset, I think they are all data presentation ways of web
> > !pages. If you want to use these formats to show static
> > !> pages, it is OK and it doesn't need to communicate with web serveras> > !clients are browsing them. However, if the page
> > !> need user interaction, what we could think of is how to improve the
> > !performance of it.
> > !>
> > !> ASP.NET provides many way to improve performance than typical, suchfrequently> > !caching. I suggest you read "Developing High-
> > !> Performance ASP.NET Applications" in MSDN. It provides some![url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-pe[/url]>> > !used tips in developing high-performance
> > !> asp.net applications.
> > !>
> >refresh> rformanceaspnetapplications.asp?> > !> frame=true
> > !>
> > !> Hope it helps.
> > !>
> > !> Best regards,
> > !> Yanhong Huang
> > !> Microsoft Online Partner Support
> > !>
> > !> Get Secure! - [url]www.microsoft.com/security[/url]
> > !> This posting is provided "AS IS" with no warranties, and confers no
> > !rights.
> > !>
> > !> --------------------
> > !> !From: "IntraRELY" <IntraRELY@yahoo.com>
> > !> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
> > !<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
> > !> !Subject: Re: FRAMESET
> > !> !Date: Wed, 6 Aug 2003 10:57:59 -0700
> > !> !Lines: 61
> > !> !X-Priority: 3
> > !> !X-MSMail-Priority: Normal
> > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> > !> !Message-ID: <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
> > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet
> > !> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> > !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
> > !> !Xref: cpmsftngxa06.phx.gbl
> > !microsoft.public.dotnet.framework.aspnet:165455
> > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> > !> !
> > !> !Thanks. I am not worried about refresh, I can just give them athe> content> > !> !button to refresh the datagrid from the db. I am not really a web
> > !designer,
> > !> !but it looks like I need to use CSS. Remeber I just want to keep> menu> > !> !updated not the menu, as there are round trips required to update a> There's> > !> !that never changes.
> > !> !
> > !> !Steve
> > !> !
> > !> !"Tibby" <tierscheiss1977@hotmail.com> wrote in message
> > !> !news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...
> > !> !> IMHO, Web Interface for DataEntry is horrid, but that's my HO.> > !> !> Javascript that can refresh just a single frame, or you can haveis> "Application"> > !page
> > !> !> just refresh itself.
> > !> !>
> > !> !> HTH
> > !> !> Tibby
> > !> !> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
> > !> !> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...
> > !> !> > I am building an Intranet application and is more of an> like> > !> !vs.
> > !> !> a
> > !> !> > typical "Web Application" or "Web Site". Using a FRAMSET seems> more> > !it
> > !> !has
> > !> !> > many benefits and gives mainly the feel of quicker access and a> can> > !> !> > streamlined application. However, am I sure you know of the
> > !drawbacks,
> > !> !for
> > !> !> > instance F5 to refresh (which loads the default page), I know I> page> > !work
> > !> !> > around this, but wanted to know what may suite me best in my
> > !scenario. I
> > !> !> > plan on using ASP.NET Menu for the menu interface.
> > !> !> >
> > !> !> > The user needs to quickly switch between pages like a local
> > !application,
> > !> !> or
> > !> !> > at least quickly as possible. This is a data entry system, not a
> > !"cool
> > !> !> > looking e-commerce site". Having the whole page reload for every> > !> !can
> > !> !> > take twice as long. The only graphical part of the applicationcould> the> > !> !menu
> > !> !> > and if I have to reload the menu for every page request.youneed> this> > !> !imagine
> > !> !> > how much time can be saved by using the same menu for all pages.
> > !> !> >
> > !> !> > The reason I am looking at using ASP.Net Menu is the fact that> using> > !> !needs
> > !> !> to
> > !> !> > mimic more of the "Local Application" and the end users will be> > !> !this
> > !> !> > 8+ hours a day, so the interface has to be clean. But I also> to> There> > !> !> > minimize the response time due to the amount of usage per user.> be> > !> !> aren't
> > !> !> > so many users, but this is the core application the company will>> > !> !> > utilizing.
> > !> !> > I am looking for an opinion.
> > !> !> > TIA,
> > !> !> > Steve Wofford
> > !> !> > [url]www.IntraRELY.com[/url]
> > !> !> >
> > !> !> >
> > !> !>
> > !> !>
> > !> !
> > !> !
> > !> !
> > !>
> > !>
> > !
> > !
> > !
> >
> >
>
IntraRELY Guest
-
Yan-Hong Huang[MSFT] #12
Re: FRAMESET
Hello Steve,
Sorry for the late response.
You could refer to
[url]http://www.asp.net/ControlGallery/default.aspx?Category=32&tabindex=2[/url] for
some asp.net web control samples.
Besides, I highly recommend you ditch the frames and replace them with user
controls.
If you do not have that option, then you will be forced to use copious
amounts of javascript to allow the frames to communicate with each other
since ASP.NET does not directly support frames.
The server cannot directly load a page into another frame. Only client
side code can do that. Luckily all hope is not lost. You can output the
needed client side code from your server code, and have the browser execute
the client side code.You can do that using the RegisterClientScriptBlock
method.
Here's more info on that:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/[/url]
frlrfSystemWebUIPageClassRegisterStartupScriptTopi c.asp
Now the javascript you'll need to emit should look something like this:
parent.frames.frame2.location = 'somepage.aspx'
Hope it helps.
Best regards,
Yanhong Huang
Microsoft Online Partner Support
Get Secure! - [url]www.microsoft.com/security[/url]
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
!From: "IntraRELY" <IntraRELY@yahoo.com>
!References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
<eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
<AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>
<#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
<LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl>
<uyYmryVXDHA.1644@TK2MSFTNGP10.phx.gbl>
!Subject: Re: FRAMESET
!Date: Thu, 7 Aug 2003 21:22:48 -0700
!Lines: 269
!X-Priority: 3
!X-MSMail-Priority: Normal
!X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!Message-ID: <OU7pIQWXDHA.2200@TK2MSFTNGP09.phx.gbl>
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:166018
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!I have also been told I can use Web User Controls, but at this point I am
!lost...it seems like such simple concept.
!
!Thanks again,
!
!Steve Wofford
![url]www.IntraRELY.com[/url]
!
!"IntraRELY" <IntraRELY@yahoo.com> wrote in message
!news:uyYmryVXDHA.1644@TK2MSFTNGP10.phx.gbl...
!> Thanks again Yan-Hong,
!>
!> Sounds good, but I have the option to use iFrame, Frameset and old
!fashion
!> FRAM. What method would work using ASP.NET Menu.
!>
!> Thanks,
!>
!> Steve Wofford
!> [url]www.IntraRELY.com[/url]
!>
!> "Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
!> news:LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl...
!> > Hello Steve,
!> >
!> > That is much clearer now. :) I suggest you make menu in a frame and
!> datagrid in another frame. So the content of menu won't
!> > be refreshed and only the content of the datagrid need to post back to
!the
!> web server.
!> >
!> > ASP.NET menu control is OK for it. Thanks.
!> >
!> > Best regards,
!> > Yanhong Huang
!> > Microsoft Online Partner Support
!> >
!> > Get Secure! - [url]www.microsoft.com/security[/url]
!> > This posting is provided "AS IS" with no warranties, and confers no
!> rights.
!> >
!> > --------------------
!> > !From: "IntraRELY" <IntraRELY@yahoo.com>
!> > !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
!> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
!> > <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
!> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>
!> > !Subject: Re: FRAMESET
!> > !Date: Thu, 7 Aug 2003 19:46:56 -0700
!> > !Lines: 161
!> > !X-Priority: 3
!> > !X-MSMail-Priority: Normal
!> > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!> > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!> > !Message-ID: <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
!> > !Newsgroups: microsoft.public.dotnet.framework.aspnet
!> > !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!> > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
!> > !Xref: cpmsftngxa06.phx.gbl
!> microsoft.public.dotnet.framework.aspnet:166000
!> > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!> > !
!> > !Thanks Yan-Hong,
!> > !
!> > !I have two primary pieces of my application that make the layout.
!> > !
!> > !- The menu - Although I have to build it differant based on the users
!> group
!> > !permissions(this is out of scope of my question). The menu stays the
!same
!> > !through out the session. I thought it may be best if I DO NOT load it
!> every
!> > !time for each web request and is why I was thing something similar to
!the
!> > !old FRAMES. It sounds like you might have been suggesting that I
reload
!> it
!> > !with each page request.
!> > !
!> > !- Content - this consists of datagrids and forms, plain stuff, but is
!> being
!> > !pulled from a db.
!> > !
!> > !What I need to know is.
!> > !
!> > !a. should I load the entire page and all. This includes menu items and
!> the
!> > !content that changes anyways.
!> > !
!> > !b. just load the content. Leaving the menu alone and avoid
!redownloading
!> it.
!> > !I plan on using ASP.NET Menu ([url]www.aspnetmenu.com[/url]) for this. If so do I
!> use
!> > !IFrame CSS or User Controls. I cannot seem to get a straight answer.
!> > !
!> > !Keep in mind this is an IntraNET application, no search engines and
!> everyone
!> > !will be using IE6.0. This application doesnt have the interface just
!yet,
!> > !and isnt that I am having issues, but rather want to build it right
the
!> > !first time.
!> > !
!> > !Thanks for your input,
!> > !
!> > !Steve Wofford
!> > ![url]www.IntraRELY.com[/url]
!> > !
!> > !"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
!> > !news:AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl...
!> > !> Hello Steve,
!> > !>
!> > !> Web application has its limitations such as it need to be run in
!> browser,
!> > !it need to communicate with web server to show, and
!> > !> etc. For your question, I think the main concern is the performance
!of
!> > !aspx pages.
!> > !>
!> > !> For CSS, Frameset, I think they are all data presentation ways of
web
!> > !pages. If you want to use these formats to show static
!> > !> pages, it is OK and it doesn't need to communicate with web server
!when
!> > !clients are browsing them. However, if the page
!> > !> need user interaction, what we could think of is how to improve the
!> > !performance of it.
!> > !>
!> > !> ASP.NET provides many way to improve performance than typical, such
!as
!> > !caching. I suggest you read "Developing High-
!> > !> Performance ASP.NET Applications" in MSDN. It provides some
!frequently
!> > !used tips in developing high-performance
!> > !> asp.net applications.
!> > !>
!> >
!>
!![url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-p[/url]
e
!> rformanceaspnetapplications.asp?
!> > !> frame=true
!> > !>
!> > !> Hope it helps.
!> > !>
!> > !> Best regards,
!> > !> Yanhong Huang
!> > !> Microsoft Online Partner Support
!> > !>
!> > !> Get Secure! - [url]www.microsoft.com/security[/url]
!> > !> This posting is provided "AS IS" with no warranties, and confers no
!> > !rights.
!> > !>
!> > !> --------------------
!> > !> !From: "IntraRELY" <IntraRELY@yahoo.com>
!> > !> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
!> > !<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
!> > !> !Subject: Re: FRAMESET
!> > !> !Date: Wed, 6 Aug 2003 10:57:59 -0700
!> > !> !Lines: 61
!> > !> !X-Priority: 3
!> > !> !X-MSMail-Priority: Normal
!> > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!> > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!> > !> !Message-ID: <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
!> > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet
!> > !> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!> > !> !Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
!> > !> !Xref: cpmsftngxa06.phx.gbl
!> > !microsoft.public.dotnet.framework.aspnet:165455
!> > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!> > !> !
!> > !> !Thanks. I am not worried about refresh, I can just give them a
!refresh
!> > !> !button to refresh the datagrid from the db. I am not really a web
!> > !designer,
!> > !> !but it looks like I need to use CSS. Remeber I just want to keep
!> content
!> > !> !updated not the menu, as there are round trips required to update a
!> menu
!> > !> !that never changes.
!> > !> !
!> > !> !Steve
!> > !> !
!> > !> !"Tibby" <tierscheiss1977@hotmail.com> wrote in message
!> > !> !news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...
!> > !> !> IMHO, Web Interface for DataEntry is horrid, but that's my HO.
!> There's
!> > !> !> Javascript that can refresh just a single frame, or you can have
!the
!> > !page
!> > !> !> just refresh itself.
!> > !> !>
!> > !> !> HTH
!> > !> !> Tibby
!> > !> !> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
!> > !> !> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...
!> > !> !> > I am building an Intranet application and is more of an
!> "Application"
!> > !> !vs.
!> > !> !> a
!> > !> !> > typical "Web Application" or "Web Site". Using a FRAMSET seems
!> like
!> > !it
!> > !> !has
!> > !> !> > many benefits and gives mainly the feel of quicker access and a
!> more
!> > !> !> > streamlined application. However, am I sure you know of the
!> > !drawbacks,
!> > !> !for
!> > !> !> > instance F5 to refresh (which loads the default page), I know I
!> can
!> > !work
!> > !> !> > around this, but wanted to know what may suite me best in my
!> > !scenario. I
!> > !> !> > plan on using ASP.NET Menu for the menu interface.
!> > !> !> >
!> > !> !> > The user needs to quickly switch between pages like a local
!> > !application,
!> > !> !> or
!> > !> !> > at least quickly as possible. This is a data entry system, not
a
!> > !"cool
!> > !> !> > looking e-commerce site". Having the whole page reload for
every
!> page
!> > !> !can
!> > !> !> > take twice as long. The only graphical part of the application
!is
!> the
!> > !> !menu
!> > !> !> > and if I have to reload the menu for every page request.you
!could
!> > !> !imagine
!> > !> !> > how much time can be saved by using the same menu for all
pages.
!> > !> !> >
!> > !> !> > The reason I am looking at using ASP.Net Menu is the fact that
!> this
!> > !> !needs
!> > !> !> to
!> > !> !> > mimic more of the "Local Application" and the end users will be
!> using
!> > !> !this
!> > !> !> > 8+ hours a day, so the interface has to be clean. But I also
!need
!> to
!> > !> !> > minimize the response time due to the amount of usage per user.
!> There
!> > !> !> aren't
!> > !> !> > so many users, but this is the core application the company
will
!> be
!> > !> !> > utilizing.
!> > !> !> > I am looking for an opinion.
!> > !> !> > TIA,
!> > !> !> > Steve Wofford
!> > !> !> > [url]www.IntraRELY.com[/url]
!> > !> !> >
!> > !> !> >
!> > !> !>
!> > !> !>
!> > !> !
!> > !> !
!> > !> !
!> > !>
!> > !>
!> > !
!> > !
!> > !
!> >
!> >
!>
!>
!
!
!
Yan-Hong Huang[MSFT] Guest
-
IntraRELY #13
Re: FRAMESET
I was thinking of using iFrames, NOT Frames. I understand why one would need
and benefit from user control and would work for my solution. My only
concern is that I do not want to reload part of the page, that has already
been loaded. The only data that will change is what would be contained in
the iFrame, which for the most part is a datagrid. I think that this will
offer a better and quicker user experiance. I usderstand the concept of
resuability, using iframes or user controls are the same, but what one
provides a tighter interface. Although User Controls allow you to reuse your
controls, but you are still loading them for each page even though it is the
same control. iFrames on the otherhand allow you reuse the same interface
w/o additional download per page request.
I cannot see any communication between frames other than loading another
page into the iFrame, which is easy. I dont see this as an issue.
If you can take a look at MS CRM, what those pages do is very similar to
what I need my pages to do. I think if I follow that applications design, I
should be good.
Looking forward to your input and THANKS,
Steve Wofford
[url]www.IntraRELY.com[/url]
"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
news:u6V0Zw%23XDHA.2116@cpmsftngxa06.phx.gbl...user> Hello Steve,
>
> Sorry for the late response.
>
> You could refer to
> [url]http://www.asp.net/ControlGallery/default.aspx?Category=32&tabindex=2[/url] for
> some asp.net web control samples.
>
> Besides, I highly recommend you ditch the frames and replace them withexecute> controls.
>
> If you do not have that option, then you will be forced to use copious
> amounts of javascript to allow the frames to communicate with each other
> since ASP.NET does not directly support frames.
>
> The server cannot directly load a page into another frame. Only client
> side code can do that. Luckily all hope is not lost. You can output the
> needed client side code from your server code, and have the browser[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/[/url]> the client side code.You can do that using the RegisterClientScriptBlock
> method.
>
> Here's more info on that:
>rights.> frlrfSystemWebUIPageClassRegisterStartupScriptTopi c.asp
>
> Now the javascript you'll need to emit should look something like this:
> parent.frames.frame2.location = 'somepage.aspx'
>
> Hope it helps.
>
> Best regards,
> Yanhong Huang
> Microsoft Online Partner Support
>
> Get Secure! - [url]www.microsoft.com/security[/url]
> This posting is provided "AS IS" with no warranties, and confers nomicrosoft.public.dotnet.framework.aspnet:166018>
> --------------------
> !From: "IntraRELY" <IntraRELY@yahoo.com>
> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
> <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>
> <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
> <LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl>
> <uyYmryVXDHA.1644@TK2MSFTNGP10.phx.gbl>
> !Subject: Re: FRAMESET
> !Date: Thu, 7 Aug 2003 21:22:48 -0700
> !Lines: 269
> !X-Priority: 3
> !X-MSMail-Priority: Normal
> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> !Message-ID: <OU7pIQWXDHA.2200@TK2MSFTNGP09.phx.gbl>
> !Newsgroups: microsoft.public.dotnet.framework.aspnet
> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
> !Xref: cpmsftngxa06.phx.gblto> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> !
> !I have also been told I can use Web User Controls, but at this point I am
> !lost...it seems like such simple concept.
> !
> !Thanks again,
> !
> !Steve Wofford
> ![url]www.IntraRELY.com[/url]
> !
> !"IntraRELY" <IntraRELY@yahoo.com> wrote in message
> !news:uyYmryVXDHA.1644@TK2MSFTNGP10.phx.gbl...
> !> Thanks again Yan-Hong,
> !>
> !> Sounds good, but I have the option to use iFrame, Frameset and old
> !fashion
> !> FRAM. What method would work using ASP.NET Menu.
> !>
> !> Thanks,
> !>
> !> Steve Wofford
> !> [url]www.IntraRELY.com[/url]
> !>
> !> "Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
> !> news:LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl...
> !> > Hello Steve,
> !> >
> !> > That is much clearer now. :) I suggest you make menu in a frame and
> !> datagrid in another frame. So the content of menu won't
> !> > be refreshed and only the content of the datagrid need to post backusers> !the
> !> web server.
> !> >
> !> > ASP.NET menu control is OK for it. Thanks.
> !> >
> !> > Best regards,
> !> > Yanhong Huang
> !> > Microsoft Online Partner Support
> !> >
> !> > Get Secure! - [url]www.microsoft.com/security[/url]
> !> > This posting is provided "AS IS" with no warranties, and confers no
> !> rights.
> !> >
> !> > --------------------
> !> > !From: "IntraRELY" <IntraRELY@yahoo.com>
> !> > !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
> !> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
> !> > <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
> !> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>
> !> > !Subject: Re: FRAMESET
> !> > !Date: Thu, 7 Aug 2003 19:46:56 -0700
> !> > !Lines: 161
> !> > !X-Priority: 3
> !> > !X-MSMail-Priority: Normal
> !> > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> !> > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> !> > !Message-ID: <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
> !> > !Newsgroups: microsoft.public.dotnet.framework.aspnet
> !> > !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> !> > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
> !> > !Xref: cpmsftngxa06.phx.gbl
> !> microsoft.public.dotnet.framework.aspnet:166000
> !> > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> !> > !
> !> > !Thanks Yan-Hong,
> !> > !
> !> > !I have two primary pieces of my application that make the layout.
> !> > !
> !> > !- The menu - Although I have to build it differant based on theit> !> group
> !> > !permissions(this is out of scope of my question). The menu stays the
> !same
> !> > !through out the session. I thought it may be best if I DO NOT loadto> !> every
> !> > !time for each web request and is why I was thing something similaris> !the
> !> > !old FRAMES. It sounds like you might have been suggesting that I
> reload
> !> it
> !> > !with each page request.
> !> > !
> !> > !- Content - this consists of datagrids and forms, plain stuff, butand> !> being
> !> > !pulled from a db.
> !> > !
> !> > !What I need to know is.
> !> > !
> !> > !a. should I load the entire page and all. This includes menu itemsI> !> the
> !> > !content that changes anyways.
> !> > !
> !> > !b. just load the content. Leaving the menu alone and avoid
> !redownloading
> !> it.
> !> > !I plan on using ASP.NET Menu ([url]www.aspnetmenu.com[/url]) for this. If so domessage> !> use
> !> > !IFrame CSS or User Controls. I cannot seem to get a straight answer.
> !> > !
> !> > !Keep in mind this is an IntraNET application, no search engines and
> !> everyone
> !> > !will be using IE6.0. This application doesnt have the interface just
> !yet,
> !> > !and isnt that I am having issues, but rather want to build it right
> the
> !> > !first time.
> !> > !
> !> > !Thanks for your input,
> !> > !
> !> > !Steve Wofford
> !> > ![url]www.IntraRELY.com[/url]
> !> > !
> !> > !"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote inperformance> !> > !news:AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl...
> !> > !> Hello Steve,
> !> > !>
> !> > !> Web application has its limitations such as it need to be run in
> !> browser,
> !> > !it need to communicate with web server to show, and
> !> > !> etc. For your question, I think the main concern is thethe> !of
> !> > !aspx pages.
> !> > !>
> !> > !> For CSS, Frameset, I think they are all data presentation ways of
> web
> !> > !pages. If you want to use these formats to show static
> !> > !> pages, it is OK and it doesn't need to communicate with web server
> !when
> !> > !clients are browsing them. However, if the page
> !> > !> need user interaction, what we could think of is how to improvesuch> !> > !performance of it.
> !> > !>
> !> > !> ASP.NET provides many way to improve performance than typical,!![url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-p[/url]> !as
> !> > !caching. I suggest you read "Developing High-
> !> > !> Performance ASP.NET Applications" in MSDN. It provides some
> !frequently
> !> > !used tips in developing high-performance
> !> > !> asp.net applications.
> !> > !>
> !> >
> !>
>no> e
> !> rformanceaspnetapplications.asp?
> !> > !> frame=true
> !> > !>
> !> > !> Hope it helps.
> !> > !>
> !> > !> Best regards,
> !> > !> Yanhong Huang
> !> > !> Microsoft Online Partner Support
> !> > !>
> !> > !> Get Secure! - [url]www.microsoft.com/security[/url]
> !> > !> This posting is provided "AS IS" with no warranties, and confersa> !> > !rights.
> !> > !>
> !> > !> --------------------
> !> > !> !From: "IntraRELY" <IntraRELY@yahoo.com>
> !> > !> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
> !> > !<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
> !> > !> !Subject: Re: FRAMESET
> !> > !> !Date: Wed, 6 Aug 2003 10:57:59 -0700
> !> > !> !Lines: 61
> !> > !> !X-Priority: 3
> !> > !> !X-MSMail-Priority: Normal
> !> > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
> !> > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
> !> > !> !Message-ID: <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
> !> > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet
> !> > !> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
> !> > !> !Path:
> cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
> !> > !> !Xref: cpmsftngxa06.phx.gbl
> !> > !microsoft.public.dotnet.framework.aspnet:165455
> !> > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
> !> > !> !
> !> > !> !Thanks. I am not worried about refresh, I can just give them a
> !refresh
> !> > !> !button to refresh the datagrid from the db. I am not really a web
> !> > !designer,
> !> > !> !but it looks like I need to use CSS. Remeber I just want to keep
> !> content
> !> > !> !updated not the menu, as there are round trips required to updatehave> !> menu
> !> > !> !that never changes.
> !> > !> !
> !> > !> !Steve
> !> > !> !
> !> > !> !"Tibby" <tierscheiss1977@hotmail.com> wrote in message
> !> > !> !news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...
> !> > !> !> IMHO, Web Interface for DataEntry is horrid, but that's my HO.
> !> There's
> !> > !> !> Javascript that can refresh just a single frame, or you canseems> !the
> !> > !page
> !> > !> !> just refresh itself.
> !> > !> !>
> !> > !> !> HTH
> !> > !> !> Tibby
> !> > !> !> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
> !> > !> !> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...
> !> > !> !> > I am building an Intranet application and is more of an
> !> "Application"
> !> > !> !vs.
> !> > !> !> a
> !> > !> !> > typical "Web Application" or "Web Site". Using a FRAMSETa> !> like
> !> > !it
> !> > !> !has
> !> > !> !> > many benefits and gives mainly the feel of quicker access andI> !> more
> !> > !> !> > streamlined application. However, am I sure you know of the
> !> > !drawbacks,
> !> > !> !for
> !> > !> !> > instance F5 to refresh (which loads the default page), I knownot> !> can
> !> > !work
> !> > !> !> > around this, but wanted to know what may suite me best in my
> !> > !scenario. I
> !> > !> !> > plan on using ASP.NET Menu for the menu interface.
> !> > !> !> >
> !> > !> !> > The user needs to quickly switch between pages like a local
> !> > !application,
> !> > !> !> or
> !> > !> !> > at least quickly as possible. This is a data entry system,application> a
> !> > !"cool
> !> > !> !> > looking e-commerce site". Having the whole page reload for
> every
> !> page
> !> > !> !can
> !> > !> !> > take twice as long. The only graphical part of thethat> !is
> !> the
> !> > !> !menu
> !> > !> !> > and if I have to reload the menu for every page request.you
> !could
> !> > !> !imagine
> !> > !> !> > how much time can be saved by using the same menu for all
> pages.
> !> > !> !> >
> !> > !> !> > The reason I am looking at using ASP.Net Menu is the factbe> !> this
> !> > !> !needs
> !> > !> !> to
> !> > !> !> > mimic more of the "Local Application" and the end users willuser.> !> using
> !> > !> !this
> !> > !> !> > 8+ hours a day, so the interface has to be clean. But I also
> !need
> !> to
> !> > !> !> > minimize the response time due to the amount of usage per> !> There
> !> > !> !> aren't
> !> > !> !> > so many users, but this is the core application the company
> will
> !> be
> !> > !> !> > utilizing.
> !> > !> !> > I am looking for an opinion.
> !> > !> !> > TIA,
> !> > !> !> > Steve Wofford
> !> > !> !> > [url]www.IntraRELY.com[/url]
> !> > !> !> >
> !> > !> !> >
> !> > !> !>
> !> > !> !>
> !> > !> !
> !> > !> !
> !> > !> !
> !> > !>
> !> > !>
> !> > !
> !> > !
> !> > !
> !> >
> !> >
> !>
> !>
> !
> !
> !
>
IntraRELY Guest
-
Yan-Hong Huang[MSFT] #14
Re: FRAMESET
Hello Steve,
If you input "IFrame and aspx" and searched in google.com, you could find many ideas on using IFrames in aspx pages.
You could refer to :
[url]http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=2022fcea.0308111741.7e39bca2%[/url]
40posting.google.com&rnum=5&prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DUTF-8%26oe%3DUTF-8%26q%
3DiFrame%2Baspx%26sa%3DN%26tab%3Dwg
[url]http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=OejNUzDmBHA.2304%40tkmsftngp02&rnum=[/url]
10&prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DUTF-8%26oe%3DUTF-8%26q%3DiFrame%2Baspx%26sa%3DN%
26tab%3Dwg
Hope that helps.
Best regards,
Yanhong Huang
Microsoft Online Partner Support
Get Secure! - [url]www.microsoft.com/security[/url]
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
!From: "IntraRELY" <IntraRELY@yahoo.com>
!References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
<eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl> <#pVgkaVXDHA.1744
@TK2MSFTNGP12.phx.gbl> <LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl> <uyYmryVXDHA.1644
@TK2MSFTNGP10.phx.gbl> <OU7pIQWXDHA.2200@TK2MSFTNGP09.phx.gbl> <u6V0Zw#XDHA.2116
@cpmsftngxa06.phx.gbl>
!Subject: Re: FRAMESET
!Date: Mon, 11 Aug 2003 17:59:00 -0700
!Lines: 396
!X-Priority: 3
!X-MSMail-Priority: Normal
!X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!Message-ID: <uwmi0wGYDHA.1280@tk2msftngp13.phx.gbl>
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:166944
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!I was thinking of using iFrames, NOT Frames. I understand why one would need
!and benefit from user control and would work for my solution. My only
!concern is that I do not want to reload part of the page, that has already
!been loaded. The only data that will change is what would be contained in
!the iFrame, which for the most part is a datagrid. I think that this will
!offer a better and quicker user experiance. I usderstand the concept of
!resuability, using iframes or user controls are the same, but what one
!provides a tighter interface. Although User Controls allow you to reuse your
!controls, but you are still loading them for each page even though it is the
!same control. iFrames on the otherhand allow you reuse the same interface
!w/o additional download per page request.
!
!I cannot see any communication between frames other than loading another
!page into the iFrame, which is easy. I dont see this as an issue.
!
!If you can take a look at MS CRM, what those pages do is very similar to
!what I need my pages to do. I think if I follow that applications design, I
!should be good.
!
!Looking forward to your input and THANKS,
!
!Steve Wofford
![url]www.IntraRELY.com[/url]
!
!"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
!news:u6V0Zw%23XDHA.2116@cpmsftngxa06.phx.gbl...
!> Hello Steve,
!>
!> Sorry for the late response.
!>
!> You could refer to
!> [url]http://www.asp.net/ControlGallery/default.aspx?Category=32&tabindex=2[/url] for
!> some asp.net web control samples.
!>
!> Besides, I highly recommend you ditch the frames and replace them with
!user
!> controls.
!>
!> If you do not have that option, then you will be forced to use copious
!> amounts of javascript to allow the frames to communicate with each other
!> since ASP.NET does not directly support frames.
!>
!> The server cannot directly load a page into another frame. Only client
!> side code can do that. Luckily all hope is not lost. You can output the
!> needed client side code from your server code, and have the browser
!execute
!> the client side code.You can do that using the RegisterClientScriptBlock
!> method.
!>
!> Here's more info on that:
!>
![url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/[/url]
!> frlrfSystemWebUIPageClassRegisterStartupScriptTopi c.asp
!>
!> Now the javascript you'll need to emit should look something like this:
!> parent.frames.frame2.location = 'somepage.aspx'
!>
!> Hope it helps.
!>
!> Best regards,
!> Yanhong Huang
!> Microsoft Online Partner Support
!>
!> Get Secure! - [url]www.microsoft.com/security[/url]
!> This posting is provided "AS IS" with no warranties, and confers no
!rights.
!>
!> --------------------
!> !From: "IntraRELY" <IntraRELY@yahoo.com>
!> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
!> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
!> <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
!> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>
!> <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
!> <LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl>
!> <uyYmryVXDHA.1644@TK2MSFTNGP10.phx.gbl>
!> !Subject: Re: FRAMESET
!> !Date: Thu, 7 Aug 2003 21:22:48 -0700
!> !Lines: 269
!> !X-Priority: 3
!> !X-MSMail-Priority: Normal
!> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!> !Message-ID: <OU7pIQWXDHA.2200@TK2MSFTNGP09.phx.gbl>
!> !Newsgroups: microsoft.public.dotnet.framework.aspnet
!> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
!> !Xref: cpmsftngxa06.phx.gbl
!microsoft.public.dotnet.framework.aspnet:166018
!> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!> !
!> !I have also been told I can use Web User Controls, but at this point I am
!> !lost...it seems like such simple concept.
!> !
!> !Thanks again,
!> !
!> !Steve Wofford
!> ![url]www.IntraRELY.com[/url]
!> !
!> !"IntraRELY" <IntraRELY@yahoo.com> wrote in message
!> !news:uyYmryVXDHA.1644@TK2MSFTNGP10.phx.gbl...
!> !> Thanks again Yan-Hong,
!> !>
!> !> Sounds good, but I have the option to use iFrame, Frameset and old
!> !fashion
!> !> FRAM. What method would work using ASP.NET Menu.
!> !>
!> !> Thanks,
!> !>
!> !> Steve Wofford
!> !> [url]www.IntraRELY.com[/url]
!> !>
!> !> "Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in message
!> !> news:LAc0$uVXDHA.2080@cpmsftngxa06.phx.gbl...
!> !> > Hello Steve,
!> !> >
!> !> > That is much clearer now. :) I suggest you make menu in a frame and
!> !> datagrid in another frame. So the content of menu won't
!> !> > be refreshed and only the content of the datagrid need to post back
!to
!> !the
!> !> web server.
!> !> >
!> !> > ASP.NET menu control is OK for it. Thanks.
!> !> >
!> !> > Best regards,
!> !> > Yanhong Huang
!> !> > Microsoft Online Partner Support
!> !> >
!> !> > Get Secure! - [url]www.microsoft.com/security[/url]
!> !> > This posting is provided "AS IS" with no warranties, and confers no
!> !> rights.
!> !> >
!> !> > --------------------
!> !> > !From: "IntraRELY" <IntraRELY@yahoo.com>
!> !> > !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
!> !> <u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
!> !> > <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
!> !> <AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl>
!> !> > !Subject: Re: FRAMESET
!> !> > !Date: Thu, 7 Aug 2003 19:46:56 -0700
!> !> > !Lines: 161
!> !> > !X-Priority: 3
!> !> > !X-MSMail-Priority: Normal
!> !> > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!> !> > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!> !> > !Message-ID: <#pVgkaVXDHA.1744@TK2MSFTNGP12.phx.gbl>
!> !> > !Newsgroups: microsoft.public.dotnet.framework.aspnet
!> !> > !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!> !> > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
!> !> > !Xref: cpmsftngxa06.phx.gbl
!> !> microsoft.public.dotnet.framework.aspnet:166000
!> !> > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!> !> > !
!> !> > !Thanks Yan-Hong,
!> !> > !
!> !> > !I have two primary pieces of my application that make the layout.
!> !> > !
!> !> > !- The menu - Although I have to build it differant based on the
!users
!> !> group
!> !> > !permissions(this is out of scope of my question). The menu stays the
!> !same
!> !> > !through out the session. I thought it may be best if I DO NOT load
!it
!> !> every
!> !> > !time for each web request and is why I was thing something similar
!to
!> !the
!> !> > !old FRAMES. It sounds like you might have been suggesting that I
!> reload
!> !> it
!> !> > !with each page request.
!> !> > !
!> !> > !- Content - this consists of datagrids and forms, plain stuff, but
!is
!> !> being
!> !> > !pulled from a db.
!> !> > !
!> !> > !What I need to know is.
!> !> > !
!> !> > !a. should I load the entire page and all. This includes menu items
!and
!> !> the
!> !> > !content that changes anyways.
!> !> > !
!> !> > !b. just load the content. Leaving the menu alone and avoid
!> !redownloading
!> !> it.
!> !> > !I plan on using ASP.NET Menu ([url]www.aspnetmenu.com[/url]) for this. If so do
!I
!> !> use
!> !> > !IFrame CSS or User Controls. I cannot seem to get a straight answer.
!> !> > !
!> !> > !Keep in mind this is an IntraNET application, no search engines and
!> !> everyone
!> !> > !will be using IE6.0. This application doesnt have the interface just
!> !yet,
!> !> > !and isnt that I am having issues, but rather want to build it right
!> the
!> !> > !first time.
!> !> > !
!> !> > !Thanks for your input,
!> !> > !
!> !> > !Steve Wofford
!> !> > ![url]www.IntraRELY.com[/url]
!> !> > !
!> !> > !"Yan-Hong Huang[MSFT]" <yhhuang@online.microsoft.com> wrote in
!message
!> !> > !news:AssvxEVXDHA.2108@cpmsftngxa06.phx.gbl...
!> !> > !> Hello Steve,
!> !> > !>
!> !> > !> Web application has its limitations such as it need to be run in
!> !> browser,
!> !> > !it need to communicate with web server to show, and
!> !> > !> etc. For your question, I think the main concern is the
!performance
!> !of
!> !> > !aspx pages.
!> !> > !>
!> !> > !> For CSS, Frameset, I think they are all data presentation ways of
!> web
!> !> > !pages. If you want to use these formats to show static
!> !> > !> pages, it is OK and it doesn't need to communicate with web server
!> !when
!> !> > !clients are browsing them. However, if the page
!> !> > !> need user interaction, what we could think of is how to improve
!the
!> !> > !performance of it.
!> !> > !>
!> !> > !> ASP.NET provides many way to improve performance than typical,
!such
!> !as
!> !> > !caching. I suggest you read "Developing High-
!> !> > !> Performance ASP.NET Applications" in MSDN. It provides some
!> !frequently
!> !> > !used tips in developing high-performance
!> !> > !> asp.net applications.
!> !> > !>
!> !> >
!> !>
!>
!!![url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-p[/url]
!> e
!> !> rformanceaspnetapplications.asp?
!> !> > !> frame=true
!> !> > !>
!> !> > !> Hope it helps.
!> !> > !>
!> !> > !> Best regards,
!> !> > !> Yanhong Huang
!> !> > !> Microsoft Online Partner Support
!> !> > !>
!> !> > !> Get Secure! - [url]www.microsoft.com/security[/url]
!> !> > !> This posting is provided "AS IS" with no warranties, and confers
!no
!> !> > !rights.
!> !> > !>
!> !> > !> --------------------
!> !> > !> !From: "IntraRELY" <IntraRELY@yahoo.com>
!> !> > !> !References: <#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl>
!> !> > !<u0efOiDXDHA.3404@tk2msftngp13.phx.gbl>
!> !> > !> !Subject: Re: FRAMESET
!> !> > !> !Date: Wed, 6 Aug 2003 10:57:59 -0700
!> !> > !> !Lines: 61
!> !> > !> !X-Priority: 3
!> !> > !> !X-MSMail-Priority: Normal
!> !> > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
!> !> > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
!> !> > !> !Message-ID: <eLRIXOEXDHA.2648@TK2MSFTNGP09.phx.gbl>
!> !> > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet
!> !> > !> !NNTP-Posting-Host: wsip-68-106-74-63.oc.oc.cox.net 68.106.74.63
!> !> > !> !Path:
!> cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
!> !> > !> !Xref: cpmsftngxa06.phx.gbl
!> !> > !microsoft.public.dotnet.framework.aspnet:165455
!> !> > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!> !> > !> !
!> !> > !> !Thanks. I am not worried about refresh, I can just give them a
!> !refresh
!> !> > !> !button to refresh the datagrid from the db. I am not really a web
!> !> > !designer,
!> !> > !> !but it looks like I need to use CSS. Remeber I just want to keep
!> !> content
!> !> > !> !updated not the menu, as there are round trips required to update
!a
!> !> menu
!> !> > !> !that never changes.
!> !> > !> !
!> !> > !> !Steve
!> !> > !> !
!> !> > !> !"Tibby" <tierscheiss1977@hotmail.com> wrote in message
!> !> > !> !news:u0efOiDXDHA.3404@tk2msftngp13.phx.gbl...
!> !> > !> !> IMHO, Web Interface for DataEntry is horrid, but that's my HO.
!> !> There's
!> !> > !> !> Javascript that can refresh just a single frame, or you can
!have
!> !the
!> !> > !page
!> !> > !> !> just refresh itself.
!> !> > !> !>
!> !> > !> !> HTH
!> !> > !> !> Tibby
!> !> > !> !> "IntraRELY" <IntraRELY@yahoo.com> wrote in message
!> !> > !> !> news:#zqPidDXDHA.212@TK2MSFTNGP12.phx.gbl...
!> !> > !> !> > I am building an Intranet application and is more of an
!> !> "Application"
!> !> > !> !vs.
!> !> > !> !> a
!> !> > !> !> > typical "Web Application" or "Web Site". Using a FRAMSET
!seems
!> !> like
!> !> > !it
!> !> > !> !has
!> !> > !> !> > many benefits and gives mainly the feel of quicker access and
!a
!> !> more
!> !> > !> !> > streamlined application. However, am I sure you know of the
!> !> > !drawbacks,
!> !> > !> !for
!> !> > !> !> > instance F5 to refresh (which loads the default page), I know
!I
!> !> can
!> !> > !work
!> !> > !> !> > around this, but wanted to know what may suite me best in my
!> !> > !scenario. I
!> !> > !> !> > plan on using ASP.NET Menu for the menu interface.
!> !> > !> !> >
!> !> > !> !> > The user needs to quickly switch between pages like a local
!> !> > !application,
!> !> > !> !> or
!> !> > !> !> > at least quickly as possible. This is a data entry system,
!not
!> a
!> !> > !"cool
!> !> > !> !> > looking e-commerce site". Having the whole page reload for
!> every
!> !> page
!> !> > !> !can
!> !> > !> !> > take twice as long. The only graphical part of the
!application
!> !is
!> !> the
!> !> > !> !menu
!> !> > !> !> > and if I have to reload the menu for every page request.you
!> !could
!> !> > !> !imagine
!> !> > !> !> > how much time can be saved by using the same menu for all
!> pages.
!> !> > !> !> >
!> !> > !> !> > The reason I am looking at using ASP.Net Menu is the fact
!that
!> !> this
!> !> > !> !needs
!> !> > !> !> to
!> !> > !> !> > mimic more of the "Local Application" and the end users will
!be
!> !> using
!> !> > !> !this
!> !> > !> !> > 8+ hours a day, so the interface has to be clean. But I also
!> !need
!> !> to
!> !> > !> !> > minimize the response time due to the amount of usage per
!user.
!> !> There
!> !> > !> !> aren't
!> !> > !> !> > so many users, but this is the core application the company
!> will
!> !> be
!> !> > !> !> > utilizing.
!> !> > !> !> > I am looking for an opinion.
!> !> > !> !> > TIA,
!> !> > !> !> > Steve Wofford
!> !> > !> !> > [url]www.IntraRELY.com[/url]
!> !> > !> !> >
!> !> > !> !> >
!> !> > !> !>
!> !> > !> !>
!> !> > !> !
!> !> > !> !
!> !> > !> !
!> !> > !>
!> !> > !>
!> !> > !
!> !> > !
!> !> > !
!> !> >
!> !> >
!> !>
!> !>
!> !
!> !
!> !
!>
!
!
!
Yan-Hong Huang[MSFT] Guest
-
Tony #15
frameset
is there a possibility to export from fireworks in a frameset and not only
as a single page?
--
-------------------------------------------------------------------------
FIGHT BACK AGAINST SPAM!
Download Spam Inspector, the Award Winning Anti-Spam Filter
[url]http://mail.giantcompany.com[/url]
Tony Guest
-
Tony #16
frameset
is there a possibility to export from fireworks in a frameset and not only
as a single page?
--
-------------------------------------------------------------------------
FIGHT BACK AGAINST SPAM!
Download Spam Inspector, the Award Winning Anti-Spam Filter
[url]http://mail.giantcompany.com[/url]
Tony Guest
-
Tony #17
frameset
is there a possibility to export from fireworks in a frameset and not only
as a single page?
--
-------------------------------------------------------------------------
FIGHT BACK AGAINST SPAM!
Download Spam Inspector, the Award Winning Anti-Spam Filter
[url]http://mail.giantcompany.com[/url]
Tony Guest
-
Jay #18
Re: frameset
"Tony" <al.ars@chello.nl> wrote in message
news:bWCeb.16267$lh.2957976@amsnews02.chello.com.. .only> is there a possibility to export from fireworks in a frameset and notPatience is a virtue!> as a single page?
>
Why not slice your page into slices and then export each slic as a separate
page.
Jay
Jay Guest
-
Tony #19
Re: frameset
okay your right but when i do that and make 5 frame site (left,right
bottom,top, main) and for what reason ever have to resize the page it all
seems to be messed up
I want to create a square around the mainframe. I hope you understand what i
mean.
--
-------------------------------------------------------------------------
FIGHT BACK AGAINST SPAM!
Download Spam Inspector, the Award Winning Anti-Spam Filter
[url]http://mail.giantcompany.com[/url]
"Jay" <qpr@*spamfree*xtra.co.nz> schreef in bericht
news:oS1gb.169139$JA5.4219460@news.xtra.co.nz...separate>
> "Tony" <al.ars@chello.nl> wrote in message
> news:bWCeb.16267$lh.2957976@amsnews02.chello.com.. .> only> > is there a possibility to export from fireworks in a frameset and not>> > as a single page?
> >
> Patience is a virtue!
> Why not slice your page into slices and then export each slic as a> page.
>
> Jay
>
>
Tony Guest
-
Tony #20
Re: frameset
okay your right but when i do that and make 5 frame site (left,right
bottom,top, main) and for what reason ever have to resize the page it all
seems to be messed up
I want to create a square around the mainframe. I hope you understand what i
mean.
--
-------------------------------------------------------------------------
FIGHT BACK AGAINST SPAM!
Download Spam Inspector, the Award Winning Anti-Spam Filter
[url]http://mail.giantcompany.com[/url]
"Jay" <qpr@*spamfree*xtra.co.nz> schreef in bericht
news:oS1gb.169139$JA5.4219460@news.xtra.co.nz...separate>
> "Tony" <al.ars@chello.nl> wrote in message
> news:bWCeb.16267$lh.2957976@amsnews02.chello.com.. .> only> > is there a possibility to export from fireworks in a frameset and not>> > as a single page?
> >
> Patience is a virtue!
> Why not slice your page into slices and then export each slic as a> page.
>
> Jay
>
>
Tony Guest



Reply With Quote

