CORK
unread,May 13, 2008, 11:59:59 AM5/13/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting
I am having an issue, and I am not sure why. I have googled my a** off
and can't find anyone else with a similar problem.
In the AJAX pageLoad event, I do some stuff where I load up controls
and make previous selections. Sporadically, these things will not
happen. Doing everything the exact same way will not duplicate the
issue, so it seems to be some kind of timing thing. If I refresh the
page after this happens, everything is cool. Comparing the source in
both pages, they are identical. I cannot duplicate this EVER while
running the app in VS. I get no javascript errors whatsoever.
Here is my pageLoad. If you want to see or know anything else, feel
free to ask.
function pageLoad(sender, e)
{
PopulateCategoryOptions();
if ((prodcat != null) && (prodcat != ""))
{
PopulateProductOptions();
}
if ((searchstr != null) && (searchstr != ""))
{
$get('Keyword').value = searchstr;
}
PopulateSearchTypeOptions();
PopulateModPeriodOptions();
if (parseInt(mod) >= 0)
{
$get('Mod').value = mod;
}
PopulateDocCategoryOptions();
if (esconly == 1)
$get('EscalatedCheck').checked = true;
else
$get('EscalatedCheck').checked = false;
}
Thanks in advance to all,
-cork