SteveS
Posts: 41
|
| Posted: 03/14/2004, 1:13 PM |
|
Hi,
Its taking me ages to re-code the outputted html and asp pages to add flash menus, copyright notices and other formatting to every page (including removing the 'Generated with CodeCharge Studio' text).
Is there an easy way to generate pages as you want them without lots of recoding?
Thanks in advance.
Steve.
|
 |
 |
peterr
Posts: 5971
|
| Posted: 03/14/2004, 1:24 PM |
|
I'm not sure what and how you are re-coding but try using the includable pages to implement common elements.
For example this forum is made up of a Header, Footer, and other elements, so that there is not need to make changes on every page: http://forums.codecharge.com/index.html http://forums.codecharge.com/header.html
The text "Generated with CodeCharge Studio" is removed if you decide to purchase the software after your evaluation period.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
SteveS
Posts: 41
|
| Posted: 03/14/2004, 1:32 PM |
|
Great, thanks for the prompt response. Any idea on an answer to http://forums.codecharge.com/posts.php?post_id=44356 please?
Thanks!
|
 |
 |
Richard Gutery
|
| Posted: 12/18/2004, 5:37 PM |
|
Here's sample code from one of my projects. I've stripped out other code and
just included some basic stuff.
This one loops through all the IIS Server variables
<HTML>
<!-- This example displays ALL of IIS ServerVariables. -->
<TABLE BORDER="1">
<TR><TD><B>Server Variable</B></TD><TD><B>Value</B></TD></TR>
<% For Each strKey In Request.ServerVariables %>
<TR>
<TD><%= strKey %></TD>
<TD><%= Request.ServerVariables(strKey) %></TD>
</TR>
<% Next %>
</TABLE>
</HTML>
This one show an example of selecting a few IIS server variables
<HTML>
<!-- This example displays the content of several ServerVariables. -->
ALL_HTTP server variable =
<%= Request.ServerVariables("ALL_HTTP") %> <BR>
CONTENT_LENGTH server variable =
<%= Request.ServerVariables("CONTENT_LENGTH") %> <BR>
CONTENT_TYPE server variable =
<%= Request.ServerVariables("CONTENT_TYPE") %> <BR>
QUERY_STRING server variable =
<%= Request.ServerVariables("QUERY_STRING") %> <BR>
SERVER_SOFTWARE server variable =
<%= Request.ServerVariables("SERVER_SOFTWARE") %> <BR>
SERVER_SOFTWARE server name=
<%= Request.ServerVariables("SERVER_NAME") %> <BR>
</HTML>
You'll probably want to use "SERVER_NAME".
Hope they Help.
RG
"SteveS" <SteveS@forum.codecharge> wrote in message
news:64054cf6b6be35@news.codecharge.com...
> Great, thanks for the prompt response. Any idea on an answer to
> http://forums.codecharge.com/posts.php?post_id=44356 please?
>
> Thanks!
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|