I am working with some classic asp for a project. I have run some syntax that I am unfamiliar with multiple times.
Here is an example:
if Request.QueryString("viewpopup") <> "" then
queryString = "?viewpopup=" & Request.QueryString("viewpopup")
end if
What I am attempting to identify is what the <> and the "" does in the first line of this statement.