|
-
Feb 23rd, 2001, 06:18 AM
#1
Thread Starter
Hyperactive Member
Hello,
I wrote all my asp pages to include the <% asp tags %> before reaching the <html> tags -
apparently good programming practice.
I use the POST method, together with hidden input/text boxes to send variables from 1 page
to the next - this works 100%. My problem is that when I link to one of these pages, from
a different page, using a hyperlink, the page loads IGNORING the <%ASP%> tags and just starts
loading from the <HTML> tags.
How can I fix this OR change my hyperlink??
Thanks,
T
-
Feb 23rd, 2001, 09:06 AM
#2
Frenzied Member
post your code,
i never heard of that,
with your code maybe will find why!!
-
Feb 23rd, 2001, 09:23 AM
#3
what is the hyperlink look like?
http://blah.blzh/blh.asp
or
file://c:\inetub\blah\blah.asp
If it looks like the second one. That would be the problem.
-
Feb 23rd, 2001, 09:25 AM
#4
Thread Starter
Hyperactive Member
It looks like the first one - the normal hyperlink....
highlight the word (like "BACK"), click on hyperlinks and choose where to link to - this is done in Frontpage.
T
-
Feb 23rd, 2001, 10:00 AM
#5
hmm...maybe you are having some caching problems..add this to your page(s) and see if it works..
Code:
Response.Cachecontrol = "no-cache"
Response.AddHeader = "Pragma", "no-cache"
Reponse.Expires = -1
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|