B
Ben
Hi,
why does this code not produce an error that variable i is not declared?
Why is dim i as integer not necessary?
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
For i = 1 To 5
Response.Write(i)
Next
End Sub
webconfig: <compilation debug="false" strict="false" explicit="true">
Thanks
Luc
why does this code not produce an error that variable i is not declared?
Why is dim i as integer not necessary?
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
For i = 1 To 5
Response.Write(i)
Next
End Sub
webconfig: <compilation debug="false" strict="false" explicit="true">
Thanks
Luc