ASP.NET version error?

<!-- m --><a class="postlink" href="http://i23.photobucket.com/albums/b366/jamesmarkus69/111.jpg">http://i23.photobucket.com/albums/b366/ ... 69/111.jpg</a><!-- m -->

I'm running Windows XP Pro, Visual Studio .NET 2003, IIS 5.1 and I want to start developing asp.net (vb.net) web applications...can anyone help me out on how to go about fixing this version error?

ALSO: My asp isn't working? :S I tried pasting this into a regular helloworld.aspx file...


<script runat="server">
Sub submit(sender As Object, e as EventArgs)
if name.value<>"" then
p1.InnerHtml="Welcome " & name.value & "!"
end if
End Sub
</script>

<html>
<body>

<form runat="server">
Enter your name: <input id="name" type="text" size="30" runat="server" />
<br /><br />
<input type="submit" value="Submit" OnServerClick="submit" runat="server" />
<p id="p1" runat="server" />
</form>

</body>
</html>


and it displays the form...but when I press submit, it doesn't output what I typed. :| I installed 1.1 .NET framework redistru first, and then I installed the 1.1 .NET SDK....

kind regards :)Moved to .NET forum.I think its clear that the you problem is in you .NET Framework version, make sure its 1.1 not 1.0, Search for it on Microsoft web site, plus i guess you can install it from VS2003 CD, in the prequest CD
 
Back
Top