[thelist] .NET Postback
darren
thelist at lists.evolt.org
Tue May 28 10:55:00 2002
On Tuesday, May 28, 2002 at 16:28, Mike King wrote:
MK> ASP.NET is cool and all that, I've followed some great examples. But, it's
MK> the mind-set change to a strictly typed language that is tricky.
MK> Something simple, like checking whether the QueryString has got anything in
MK> it...
how about:
if not (request.QueryString is nothing orElse Request.QueryString.Count = 0) then
' we have something
else
' we got nada...
end if
??
darren.