NHibernate、DevExpress 性能
我的网站出现性能问题。
我正在使用 NHibernate 从 DevExpress 检索我的数据库表和 AspxGridView 作为组件。 调试后,我发现与双重调用 Page_Load 事件连接时出现问题。
我能做些什么?? devexpress gridview 初始化后可能会向服务器发出 ajax 请求并再次运行页面生命周期吗?
示例:
protected Page_Load(Object sender, EventArgs e)
{
if (!IsPostBack)
{
grid.DataSource = GetValuesFromHibernate();
grid.DataBind();
}
}
调用 Page_Load:2
谢谢。
I have problem with perfomance in my website.
I am using NHibernate to retrieve my database tables and AspxGridView as component from DevExpress.
After debug I found problem connecting with dual calling Page_Load event.
What can I do??
May be devexpress gridview after initialize make ajax request to server and page life cycle run again?
sample:
protected Page_Load(Object sender, EventArgs e)
{
if (!IsPostBack)
{
grid.DataSource = GetValuesFromHibernate();
grid.DataBind();
}
}
Call Page_Load: 2
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ASP.NET 的 AJAX 功能创建普通的页面生命周期调用。因此,您发布的代码不适用于 DevExpress 的 AspXGridView 控件。
解决方案是仅构建/查询数据一次,并在每次调用页面时用它填充网格。
以下是使用会话执行此操作的代码示例:
http:// Community.devexpress.com/forums/p/68052/231725.aspx#231725
The AJAX feature of ASP.NET creates an ordinary page life cycle call. So the code you posted will not work with the AspXGridView Control of DevExpress.
The solution is to build/query the Data only once and populate the Grid with it every time the page is called.
Here is a code sample which uses the Session to do so:
http://community.devexpress.com/forums/p/68052/231725.aspx#231725
DevExpress 有一个非常好的支持中心。提出你的问题。他们的回答后将其发布在这里。我也在使用 DevEx :-)
DevExpress has a very good support center. Ask your questions. After their answer publish it here. I'm using DevEx too :-)
我没有任何解决方案,但是当我尝试再次编写项目代码时。
工作很棒。
谢谢你们。
I didn't any solutions, but when I try to write again project code.
It's work great.
Thanks guys.