Set assignment not supported
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Writing code using VB.net (aspx file)~ script assignment statement: set UserData = request.form("UserData") yields a compile error ~ 'Let' and 'Set' assignment statements no longer supported. Is there a substitute assignment statement that will work instead of 'Set' ? Many thanks!:cool: Reed Eichner reichner@satx.rr.com
-
Writing code using VB.net (aspx file)~ script assignment statement: set UserData = request.form("UserData") yields a compile error ~ 'Let' and 'Set' assignment statements no longer supported. Is there a substitute assignment statement that will work instead of 'Set' ? Many thanks!:cool: Reed Eichner reichner@satx.rr.com
Yeah:
Dim UserData As String UserData = Request.Form.Item("UserData")
RageInTheMachine9532