vote up 1 vote down star

Hi, everyone.

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.

flag
It's a web form or user control event ? – Barbaros Alp Sep 10 at 11:04
Try the standard Microsoft Grid to see if you have the same trouble – Kris-I Sep 10 at 11:36

2 Answers

vote up 0 vote down

Hi, DevExpress has a very good support center. Ask your questions. After their answer publish it here. I'm using DevEx too :-)

link|flag
vote up 0 vote down

Hi, everyone.

I didn't any solutions, but when I try to write again project code. It's work great.

Thanks guys.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.