网页访问问题
我正在使用 C# 开发一个 Web 应用程序。我在 IIS 中部署了该应用程序。当 2 个用户同时访问同一页面时,一个用户得到结果,另一个用户得到错误。我不知道出了什么问题。
IIS 部署或我的应用程序中是否存在任何问题。
供您参考 我收到以下错误消息
异常信息: 异常类型: DataAccessException 异常消息: 创建数据表时出现问题。 CorpAct.DataAccess.ORADataFactory.CreateDataTable(DataRequest Request) 位于 D:\Ranga\EHE Backup\CRM\CRM.EHE\CRM.EHE.Database\RRReport 中的 CRM.EHE.Database.DB_RRReport.getPortFolios(String strMonth, String strYear) \DB_RRReport.cs:第 312 行
I am developing a web application using C#. I deployed the application in IIS. When 2 users access the same page in same time one user getting the result and the other getting the error. I don't know what's the problem.
Is any problem in IIS deployment or in my application.
For your Informaion
The Following Error Message wat i'm getting
Exception information: Exception type: DataAccessException Exception message: There was a problem creating the DataTable. CorpAct.DataAccess.ORADataFactory.CreateDataTable(DataRequest Request) at CRM.EHE.Database.DB_RRReport.getPortFolios(String strMonth, String strYear) in D:\Ranga\EHE Backup\CRM\CRM.EHE\CRM.EHE.Database\RRReport\DB_RRReport.cs:line 312 at
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
认为是你的代码问题。如果您访问的页面将一些数据写入数据库并且存在数据冲突,则可能会出现错误,在这种情况下您应该使用事务。
或者你使用了锁
发布你的错误文本!
Think it's your code problem. You can have error if the page that you access is write some data to DataBase and you have data conflict, in that case you should use transaction.
Or you use a locks
Post your error text!
如果某人可以访问您的页面,那么当其他人也无法查看该页面时,您的问题不太可能出在 IIS 配置中。您可能需要更深入地研究所得到的错误(顺便说一下,您没有在问题中指定),以解决问题。祝你好运!
If your page is accesable to someone it is unlikely that your problem lies within your IIS configuration when someone else is having trouble to view the page as well. You probably need to dive deeper into the error you get (which you didn't specify in your question by the way), to get the problem solved. Good luck!