ironhide1975
Programmer
Can someone help a ASP.Net newbie. I have a project that works fine, however when I copy the files to a server and run them I get the following error.
Here is a copy of my source code
Any help is appreciated.
Code:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30451: Name 'Request' is not declared.
Here is a copy of my source code
Code:
<script runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim PageID As Integer
PageID = Request.QueryString("PageID")
If PageID = 2 Or PageID = "2" Then
redbar.Style("color") = "#F0F0F0"
redbar.BackImageUrl = "i/HM-Tan.jpg"
TopHeaderBar.ImageUrl = "i/HM-Red.gif"
Else
PageID = 3
redbar.Style("color") = "#F0F0F0"
redbar.BackImageUrl = "i/HM-Red.gif"
TopHeaderBar.ImageUrl = "i/H-Default.gif"
End If
'Response.Write(PageID)
End Sub
</script>
Any help is appreciated.