Re: Jump to named anchor after form processing
From: Evertjan. (exjxw.hannivoort_at_interxnl.net)
Date: 10/20/04
- Next message: Andrew Urquhart: "Re: Accessing bookmark?"
- Previous message: Andy Dingley: "Re: Accessing bookmark?"
- In reply to: Robert Mark Bram: "Re: Jump to named anchor after form processing"
- Messages sorted by: [ date ] [ thread ]
Date: 20 Oct 2004 23:17:57 GMT
Robert Mark Bram wrote on 20 okt 2004 in
microsoft.public.inetserver.asp.general:
> Hi Evertjan!
>
> Thank you for your response.
>
>> I would not use a <form> here.
>
> Hmm... but there is some user input that I need to obtain in order to
> do my processing.
then use seperate forms:
<form action="#important1" method=post>
<input your user input for posting
</form>
<form action="#important2" method=post>
<input your user input for posting
</form>
or use clientsied scripting to cange the action string.
OT on this ASP NG!!!
>
>> Try:
>>
>> Important 1<br>
>> Important 2
>>
>> and keep the anchors on the same page:
>>
>> <a name="important1"></a>What is important 1 ...
>> <a name="important2"></a>What is important 2[too?] ...
>>
>> The browser cache will not send a request to the server if your asp
>> code allows a long enough expiry time[-out], say:
>>
>> <% Response.Expires = 40 %>
>
> I don't quite understand what is happenning here. The page blocks for
> a while, waiting for some response?
Its unclear what you mean with "blocks".
Anyway, as it is not an ASP problem, [except for the timeout],
this is OT.
I suggest you ask in a cliendside code NG.
-- Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress, but let us keep the discussions in the newsgroup)
- Next message: Andrew Urquhart: "Re: Accessing bookmark?"
- Previous message: Andy Dingley: "Re: Accessing bookmark?"
- In reply to: Robert Mark Bram: "Re: Jump to named anchor after form processing"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|