|
Rank: Member Groups: Member
Joined: 12/19/2007 Posts: 21
|
Why would the spell checker dialog as long as 45 seconds to appear after clicking the button that is set as the StartButton? It also takes at least 45 seconds to close. I'm working on the development machine (localhost) and the dictionary is also on the localhost.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We can't think of anything that would take that long. Can you create a test page to duplicate the problem?
Thanks!
|
|
Rank: Member Groups: Member
Joined: 12/19/2007 Posts: 21
|
I've found that on the click of the asp button (used to initiate the spell check) the page reloads and repopulates an employee drop down list (list of 5,500 names). Even though I have "If Not Page.IsPostBack Then" on Page_Load it still reloads the page.
I believe the issue is that the populating of the drop down list is occuring before the spell check dialog comes up. If I turn the datareader off the dialog pops up immediately.
There is no issue with the spell check dialog but I need to figure out the Page_Load issue.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You will need to remove that list. The SpellChecker uses AJAX to call the server. And whenever AJAX is used to postback a page, it will be extremely slow with large drop down list.
Thanks!
|
|