473,471 Members | 1,854 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

auto generate htnl for dynamic website

I am developing a display web site which displays several listing and
details, data is picked up from database for the lists. There is no search
criteria but only pagination stuff.
What i am thinkin gis to create a program which will read data and generate
static html pages for the lists and dump the pages on the web server. when
user will acees they will acces html pages instead of aspx pages, helps
perfroamnce improveents.
Is it a right approach? Ha anyone done this kind of thing?
Sep 22 '06 #1
5 1871
You could certainly do that. Or, you could just use output caching on the
ASP.NET pages which could give you the best of both worlds.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"vikram" wrote:
I am developing a display web site which displays several listing and
details, data is picked up from database for the lists. There is no search
criteria but only pagination stuff.
What i am thinkin gis to create a program which will read data and generate
static html pages for the lists and dump the pages on the web server. when
user will acees they will acces html pages instead of aspx pages, helps
perfroamnce improveents.
Is it a right approach? Ha anyone done this kind of thing?
Sep 22 '06 #2
What Peter is suggesting is exactly what I do with my own web site, I take
Peters RSS feed (and others), cache it and use it to drive the site. Its on
an old 733 mhz server. but the cache certainly compensates for it not being
html. One request for each RSS feed results in an object being cached, and
the cached object used for pagination.

I'm currently looking to see what I can improve with IIS6's Kernel Caching
on the site (just for fun though!!)

-
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in message
news:5C**********************************@microsof t.com...
You could certainly do that. Or, you could just use output caching on the
ASP.NET pages which could give you the best of both worlds.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"vikram" wrote:
>I am developing a display web site which displays several listing and
details, data is picked up from database for the lists. There is no
search
criteria but only pagination stuff.
What i am thinkin gis to create a program which will read data and
generate
static html pages for the lists and dump the pages on the web server.
when
user will acees they will acces html pages instead of aspx pages, helps
perfroamnce improveents.
Is it a right approach? Ha anyone done this kind of thing?

Sep 22 '06 #3
John,
That is "very cool". From what little I remember about kernel-mode caching,
it can only be done with static content (e.g., POHTML) right?
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"John Timney (MVP)" wrote:
What Peter is suggesting is exactly what I do with my own web site, I take
Peters RSS feed (and others), cache it and use it to drive the site. Its on
an old 733 mhz server. but the cache certainly compensates for it not being
html. One request for each RSS feed results in an object being cached, and
the cached object used for pagination.

I'm currently looking to see what I can improve with IIS6's Kernel Caching
on the site (just for fun though!!)

-
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in message
news:5C**********************************@microsof t.com...
You could certainly do that. Or, you could just use output caching on the
ASP.NET pages which could give you the best of both worlds.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"vikram" wrote:
I am developing a display web site which displays several listing and
details, data is picked up from database for the lists. There is no
search
criteria but only pagination stuff.
What i am thinkin gis to create a program which will read data and
generate
static html pages for the lists and dump the pages on the web server.
when
user will acees they will acces html pages instead of aspx pages, helps
perfroamnce improveents.
Is it a right approach? Ha anyone done this kind of thing?


Sep 22 '06 #4
Thanks Peter!

I think any cached page with VaryByParam="None" causes IIS6 to use the
kernel and not call the runtime at all for that page request. There is bound
to be one or two places I can use it. I need to do some digging about on it
as I've not read up on it for a while. Gotta squeeze those CPU cycles as
best as I can given the lowly kit I'm using.

--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in message
news:6A**********************************@microsof t.com...
John,
That is "very cool". From what little I remember about kernel-mode
caching,
it can only be done with static content (e.g., POHTML) right?
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"John Timney (MVP)" wrote:
>What Peter is suggesting is exactly what I do with my own web site, I
take
Peters RSS feed (and others), cache it and use it to drive the site. Its
on
an old 733 mhz server. but the cache certainly compensates for it not
being
html. One request for each RSS feed results in an object being cached,
and
the cached object used for pagination.

I'm currently looking to see what I can improve with IIS6's Kernel
Caching
on the site (just for fun though!!)

-
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in
message
news:5C**********************************@microso ft.com...
You could certainly do that. Or, you could just use output caching on
the
ASP.NET pages which could give you the best of both worlds.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"vikram" wrote:

I am developing a display web site which displays several listing and
details, data is picked up from database for the lists. There is no
search
criteria but only pagination stuff.
What i am thinkin gis to create a program which will read data and
generate
static html pages for the lists and dump the pages on the web server.
when
user will acees they will acces html pages instead of aspx pages,
helps
perfroamnce improveents.
Is it a right approach? Ha anyone done this kind of thing?



Sep 22 '06 #5
I read on Digg or somewhere how somebody was running a web site on an old
Atari, so I imagine you are in pretty good shape there. :-)

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"John Timney (MVP)" wrote:
Thanks Peter!

I think any cached page with VaryByParam="None" causes IIS6 to use the
kernel and not call the runtime at all for that page request. There is bound
to be one or two places I can use it. I need to do some digging about on it
as I've not read up on it for a while. Gotta squeeze those CPU cycles as
best as I can given the lowly kit I'm using.

--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in message
news:6A**********************************@microsof t.com...
John,
That is "very cool". From what little I remember about kernel-mode
caching,
it can only be done with static content (e.g., POHTML) right?
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"John Timney (MVP)" wrote:
What Peter is suggesting is exactly what I do with my own web site, I
take
Peters RSS feed (and others), cache it and use it to drive the site. Its
on
an old 733 mhz server. but the cache certainly compensates for it not
being
html. One request for each RSS feed results in an object being cached,
and
the cached object used for pagination.

I'm currently looking to see what I can improve with IIS6's Kernel
Caching
on the site (just for fun though!!)

-
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.comwrote in
message
news:5C**********************************@microsof t.com...
You could certainly do that. Or, you could just use output caching on
the
ASP.NET pages which could give you the best of both worlds.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"vikram" wrote:

I am developing a display web site which displays several listing and
details, data is picked up from database for the lists. There is no
search
criteria but only pagination stuff.
What i am thinkin gis to create a program which will read data and
generate
static html pages for the lists and dump the pages on the web server.
when
user will acees they will acces html pages instead of aspx pages,
helps
perfroamnce improveents.
Is it a right approach? Ha anyone done this kind of thing?



Sep 22 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: csomberg | last post by:
SQL 2000 I thought I would throw this out there for some feedback from others. I'd like to know if you feel using MS auto-increment field is a good solution these days or should one grow their...
49
by: Thom Little | last post by:
I developed a C# application and a windows installer application that properly installs the C# application on a new machine. After the C# application is installed I would like to automatically...
3
by: SPG | last post by:
Hi, I am new to C#, and was wondering if there is an easy way to auto generate a Dataset and the relevant classes (IE: Adapter for updating etc) by pointing a wizard at the db? I am sure...
6
by: | last post by:
Hi, can someone provide some advise on how to get around with using auto generated proxies? basically I already have the proxy classes, and they are used by other places. I'd like use these...
1
by: daniellee2006 | last post by:
I am creating a basic website to store people profiles and within this website i have a page that creates a table dependent on the number of records in mysql written in PHP within these tables...
6
by: ash | last post by:
i have a web page using frameset split into few pages. And I want to generate one page of HTML code and send it through email. My question is have to generate a HTML page using asp? Thx very much.
15
by: kulkanuja | last post by:
actually i am working on asp.net and i am using a label i have to read multiple lines in a label i am using response.write but its not working how can i do this?
9
by: pbd22 | last post by:
Hi. This is just a disaster management question. I am using XMLHTTP for the dynamic loading of content in a very crucial area of my web site. Same as an IFrame, but using XMLHTTP and a DIV. I...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.