Hello Mr.phil
I have used three hyper reference statements to pass the parameter "servername", now
I have also saved the value of the parameter "servername" in a variable called "temp" .
Now If I replace the statement :
<a href ="http:\\localhost\project1\disphard.asp?servernam e=wiproecmx2">HARDWARE
CONFIGURATION </a>
With the Statement:
<a href ="http:\\localhost\project1\disphard.asp?<%=temp%> ">HARDWARE CONFIGURATION </a>
Iam getting a
VB compilation Error.
My query is that : What is the Error in above statement? and How do I pass the value of variable
"temp" using the Link ?
================================================== ========================
This Is The Program:
================================================== ===========================
<html>
<title>Server Docket</title>
<head><b><center>
<%
serverName=Request.QueryString("servername")
response.write (servername)
dim temp
temp=request.querystring("servername")
%></center>
</b></head>
<body>
<PRE><CENTER>
<a href ="http:\\localhost\project1\disphard.asp?servernam e=wiproecmx2">HARDWARE CONFIGURATION </a><br>
<a href ="http:\\localhost\project1\dispsoft.asp?servernam e=wiproecmx2">SOFTWARE CONFIGURATION </a><br>
<a href ="http:\\localhost\project1\displaygen.asp?servern ame=wiproecmx2">GENERAL DETAILS </a><br>
%>
</body>
</html>
================================================== =====================
How do I replace "servername=wiproecmx2" with <%=temp%> ???
Thank You