12/05/2014 by Nitesh

How To do Case Sensitive String Match in SQL Server

Friends, While working on a SP today, I noticed that SQL Server does a case-insensitive string match in a query. Hence in scenarios where passwords are to be validated, using a query as “WHERE Password =@Password” will give valid results if the user enter password as “admin” or “ADMIN” eventhough when the password is set…

Continue Reading »

12/05/2014 by Nitesh

Solution: A potentially dangerous Request.Form value was detected from the client in asp.net

Friends, When posting HTML characters to an ASP.Net page, we normally get this error as – “A potentially dangerous Request.Form value was detected from the client in asp.net“. This post explains how to resolve this problem. To resolve this problem on a single page, you can set the “validateRequest” property of a page to false…

Continue Reading »

11/05/2014 by Nitesh

How To Host an ASP.Net Website on Shared Server

Friends, Many a times, when working with small organizations your immediate senior tells you, “I am giving you the credentials, host the website on the server and let me know”. Being a developer, we should always know how to host a website on server. In this post, we will see the steps that are required…

Continue Reading »

08/05/2014 by Nitesh

How To Convert a Future Date Time to “X minutes from now” in C#

Friends, In my previous post, we saw how can we convert a Date Time value to “X Minutes Ago” feature using C#. A user interestingly asked me for a function that can do something similar but for future dates. Today, in this post we will see how we can achieve similar functionality for a future…

Continue Reading »

07/05/2014 by Nitesh

How To Convert a Date Time to “X minutes ago” in C#

Friends, In one of our previous post, we saw how can we convert a Date Time value to “X Minutes Ago” feature using jQuery. Today, in this post we will see how we can achieve the same functionality in C#. In this post we will write a C# function that will take a DateTime as…

Continue Reading »

1 17 18 19 20 21 38