在运行时更改系统日期格式

在运行时更改系统日期格式

本文介绍了在运行时更改系统日期格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用asp.net c#,我想在运行时更改系统日期格式

所以我找到这段代码:

i am using asp.net c# , i want to change the system date format during runtime
so i find this code :

RegistryKey lkey = Registry.CurrentUser.OpenSubKey(@"Control Panel\International", true);

     
      lkey.SetValue("sShortDate", "dd/MM/yyyy");

     
      lkey.SetValue("sLongDate", "dd/MM/yyyy");





现在我遇到这个问题:



Now i face this problem :

System.Security.SecurityException: Requested registry access is not allowed.





i试图用信任级别解决它,但问题仍然存在。请问任何想法?



i tried to solve it using trust level, but the problem still.please any idea?

推荐答案


这篇关于在运行时更改系统日期格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 20:18