sirs, request.querystring(if get method) or request.form (if post method) are not working properly. an existing portal throws two parameters, name and employeenumber. i don't seem to retrieve it in the page_load() event that i had added in the default.aspx of dotnetnuke.
sub page_load(source as object, e as eventargs)
label.text = request.querystring("name")
label.text = request.querystring("employeenumber")
end sub
i tried printing out the info it happens that if i compare it to "" then it is true. it does not get any value
but when i enter the string in the url, and refresh the page, I CAN GET IT (info). by the way, the portal passes these parameters alright. i've seen it in the url. example:
http://192.168.10.1/dotnetnuke/default.aspx?name=john&employeenumber=1000&rand=012042304023
then when the page loads fully, it just becomes http://localhost/dotnetnuke
then i STILL, don't get any info.
IS IT DOTNETNUKE causing the problem sirs? thanks so much.