My web site is in .net mvc. I have saved dates from client side using jQuery calendar into database MS SQL. Also I have saved dates using DateTime.Now. The problem is that the application is hosted on server which is in America, but my client is in Pakistan. They want time according to Pakistani time.
I tried to use TimeZoneInfo class but I am unable to use it as class library, or as DLL. How can I use a static sealed class and access its methods? Secondly I have used culture ur-PKR in web.config; it allows me to add dates in format dd/MM/yyyy which is working fine (according to PK style). Now after using culture style ur-PK, should I use Timezoneinfo class or not?