Maybe it's trivial question, but I have no idea what is the type of Request.QueryString()
. When I check it with typeof - it says it's Object. How to check which object it is and which property of that object is a string in URL?
I'm doing it server side with language specification <%@ language="javascript"%>
If I've got URL like that:
http://127.0.0.1/Kamil/Default.asp?name=
then how to check if name is empty? It's not null. I know I can convert Request.QueryString("name")
to String and check if it's empty string "", but is it proper way?