please help guys. Im trying to get the sum of 2 values to be displayed. Here is an example....
<%
Dim intVar
intVar = request.querystring("number")
%>
<P><%= intVar %> + <%= intVar %> = <%= intVar + intVar %></P>
I want this to display on the page as (Taking number as "4")...
4+4 = 8
Instead i get 4+4 = 44
If i change the script replacing request.querystring("number")
with the actual number then it works, but i need it to be called from the form or querystring. Please help! How do i get around this problem? Im tearing my hair out.
Cheers peeps 