Thursday, September 19, 2013

How to pass "&" or other sign in query string in asp.net

string subject="you # me";

Response.Redirect("About.aspx?sub="+ Server.UrlEncode(subject));

No comments:

Post a Comment

Complete Authentication System in ASP.NET Core using JWT

JWT (JSON Web Token) authentication is widely used for securing APIs in modern applications. In this article, we will build a complete authe...