hi,
plz help me out to hide querystring at url
eg: http://localhost/payment/paypal.aspx?Uacc=das021 &sdgn=jg43
to only http://localhost/payment/paypal.aspx.

Recommended Answers

All 3 Replies

Hi,

Can anyone send me the Stored Procedure for "sp_validateUser" for login page using asp.net 1.1

Thanks.

commented: create your own thread for your questions -2

Can any one talk me how I can hide url in asp.net & Reduce time of downloading vdio files (flv )

Hi...
why not use a session variable to pass values??..

Example

int number = 75;
Session["MySessionVariable"] = number.ToString();

//Retrieving the variable

int numberTwo = Convert.ToInt32(Session["MySessionVariable"].ToString());
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.