| Tim Slattery 2007-05-31, 1:21 pm |
| Ahmd <mkahmed77@gmail.com> wrote:
>Pls help me.. pls c this code
>
><FORM Action="<%=Request.ServerVariables("SCRIPT_NAME") %>"
>Method=POST>
>
>
> <Input Type=Hidden name="CurrentPage" Value="<%=CPage%>" >
> <% If CPage > 1 Then %>
> <Input type=Submit Name="Submit" Value="Previous">
> <% End IF%>
> <% If CPage <> TotPage Then %>
> <Input type=Submit Name="Submit" Value="Next">
> <% End If %>
> </FORM>
>
>
>this function i want to call when i click an image. i mean i have
>previous and next image in the page. when i click previous image i
>want to call this function
This is ASP code, which means that it runs on the server before
anything is sent to the client. The "click an image" action would
happen on the client, after the ASP processing is complete.
If you tell us what you want the user to see when an image is clicked,
maybe we can help you get there.
--
Tim Slattery
MS MVP(DTS)
Slattery_T@bls.gov
http://members.cox.net/slatteryt
|