yes that is what i meant asp and
VB script sorry for that its not asp.net just asp im in an asp class that asks for us to create a simple asp page that stores inputed numbers with cookies so you submit a value into the form and it outputs
You have added 0 (number just entered)
Your previous tally was 0 (last number entered)
Your new tally is 0 (all numbers added stored in cookies added together)
the html for the page is
<html>
<head>
<title>Cookie Tally</title>
</head>
<body>
<center>
<h2>Cookie Tally</h2>
<form>
<p>Please enter a number:
<input type="text" name="strValue">
<input type="submit" value="Add to my tally" ></p>
</form>
</body>
</html>
ive tried using functions like
dblCookie and dblInput because you have to convert the cookies so they become numbers i just dont know where to start.
thanx for the help