I need a little help too... I think vbull should create a guide for this sort of thing...
this what i have
"string sUserId=Request.QueryString["u"];
if(null==sUserId || sUserId.Length<1){
lblMsg.Text="User Id is a required parameter." + Usage();
return;
}
string sPwd=Request.QueryString["p"];
if(null==sPwd){
sPwd="";
}
"
I would like to pass the username from vb to this .aspx page if the user is logged on, if not, redirect user to logon then send the querry. My first thought was to create a php page that takes the info and send it to the .aspx form. That does not seem like a secure way. I am now thinking of sending a post to the .aspx page, but how do i get the logged on username from vb and redirect if the use is not logged on let me know if you guys know of a better way to do this.. thanx.....
|