我的代码在这里
try
{
db.Entry(object).State = EntityState.Modified;
db.SaveChanges();
}
catch (Exception ex)
{
EventLog.WriteEntry("MyEventSource", ex.StackTrace, EventLogEntryType.Warning);
}
我在写入事件日志时遇到错误。错误是“用户代码未处理的安全异常”
答案 0 :(得分:0)
将以下配置代码添加到<system.web>
标记内的web.config。
<identity impersonate="true" userName="UserName" password="123456789HI987654351"/>
您需要设置系统用户名和密码,并设置身份验证模式窗口。
<system.web>
<authentication mode="Windows"/>
<identity impersonate="true" userName="yourUsername" password="Your password"/>
</system.web>