when performing input error checking on forms which is best to use?
VB Code:
If txtbox1.text = vbnullstring then lblErrorMsg.text = "Box 1 Empty" End IF
or
VB Code:
If Request.Form.Item("txtbox1") = vbnullstring Then lblErrorMsg.text = "Box 1 Empty" End If
basically what is the difference
