On Wed, 16 Feb 2005 12:58:26 +0500, Noman <[EMAIL PROTECTED]> wrote:
> 
> 
> Hi
> I am using undermentioned code to access to the linked page with the name 
> value assigned by the string strUserName but I could not do it.
> I added response.redirect to the code but it fires automatically without 
> clicking the link.
> Please Help
> Thanks
> 
> <%
> Dim strUserName 'Holds the name of the user
> strUserName = Request.QueryString("name")
> %>
> <html>
> <a href="FabDesclist.asp?name={strUserName}" style="text-decoration: 
> none">Style/PO Information</a><br>
> </html>
> 
> 
> [Non-text portions of this message have been removed]
> 
> Yahoo! Groups Links
> 
> 
> 
> 
> 


-- 
www.skimawebsolution.com simply websolution.

This will actually help :
The problem is that you failed to let the server know that you are
passing an ASP variable.

<%
 Dim strUserName 'Holds the name of the user
 strUserName = Request.QueryString("name")
 %>
 <html>
 <a href="FabDesclist.asp?name=<%=strUserName %>"
style="text-decoration: none">Style/PO Information</a><br>
 </html>


 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to