Wednesday, October 9, 2013

Replace in Eval Function Asp net

# re: EVAL and replace


EVAL("ID").ToString().Replace("X", "")

or

EVAL("ID").ToString().Replace("X", String.Empty)

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...