Search

You searched for the word(s): userid:611901

Matching Posts

  • Re: Invalid viewstate exception on ScriptResource.axd

    I found that application pool listed is DefaultAppPool and the recycling time is 1740 minutes. I don't think that the errors are co-releated to the time, I checked the rate of occurrence in the error log I found in one day there were 30 viewstate errors 20 of them took place from the time of 12:00 AM to 2:00 AM the rest 10 occurred from 4:00 AM till 11:00 PM in another day from 1:00 AM till 2:00 PM 14 times then from 3:00 PM till 10:00 PM 9 times, is this related to the recycling time?
  • Re: Invalid viewstate exception on ScriptResource.axd

    I don't think I would go with the solution of turning off the validation of viewstate. How would I know if the application pool of the web application is recycling? Thanks
  • Re: Invalid viewstate exception on ScriptResource.axd

    I've mentioned in my post that am not using web farm, this is the problem whenever I search for this topic, the invalid viewstate on scriptresource.axd I find people talking about the web farm and the machine key but as I already said, we are not using a web farm. Is this the only possible reason having this error means running a web farm? There is no other thing would cause this error? Thanks
  • Invalid viewstate exception on ScriptResource.axd

    I am getting a large number of Invalid viewstate exceptions on scriptresource.axd in one of our web applications. I find them daily in the Event Log in two variations something like this: Event message: An unhandled exception has occurred. Event time: 10/5/2009 11:34:29 PM Event time (UTC): 10/5/2009 9:34:29 PM Event ID: eb55b83cdaf9499bbb0de87b4d8e0d02 Event sequence: 14170 Event occurrence: 17 Event detail code: 0 Exception information: Exception type: HttpException Exception message: Invalid viewstate
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by JessyEzzy on 10/8/2009
    Filed under: ScriptResource.axd, ViewState, HttpException
  • Sending mails in a thread

    I have a page for creating a newsletter & sending it to the subscribers (total 26000), in the click event of the submit button of the page I select the emails of the subscribers in an array, loop through the emails creating MailMessages for each and then send the mails in a thread, this is how I create the list of mail messages List<MailMessage> mails = new List<MailMessage>(); foreach (string recipient in recipients) { try { MailMessage mail = new MailMessage(sender, recipient);
    Posted to Getting Started (Forum) by JessyEzzy on 9/13/2009
  • Re: Trapping Fileupload Size Error

    Am using IIS version 5.1 and I tried Server.Transfer but it didn't work too. Thanks
    Posted to Web Forms (Forum) by JessyEzzy on 4/14/2008
  • Re: Trapping Fileupload Size Error

    I've been facing the same problem, I wanted to redirect the users to an error page instead of displaying "Interner Explorer cannot display the webpage" when someone tries to upload a file greater than 4 MB which the default maximum request length, so I placed the same code of yours in the Application_Error event in global.asax with Response.Redirect instead of Server.Transfer but it never gets executed I still get the cannot display page. I've placed a breakpoint at Application_Error
    Posted to Web Forms (Forum) by JessyEzzy on 4/8/2008
  • Error in SlideShowExtender (Forms authentication failed for the request. Reason: The ticket supplied has expired.)

    I have a web application with 2 folders the 1st one containing the frontend pages and the other containing the administration pages, I am using FormsAuthentication for the admin pages only, here how I have set it in the webconfig file. <authentication mode="Forms"> <forms name=".ASPXAUTH" loginUrl="~/admin/login.aspx" timeout="20" defaultUrl="~/admin/default.aspx" /> </authentication> <authorization> <allow users="
    Posted to ASP.NET AJAX Control Toolkit (Forum) by JessyEzzy on 2/21/2008
  • Re: Sending mail from web page

    I don't think that when two different users are accessing a page at the same time that trigger an email-send action is related to what's in msdn about an exception that occurs when SmtpClient.Send is called twice in a short time Here what's mentioned in msdn: "If there is an e-mail transmission in progress and you call SendAsync or Send again, you will receive an InvalidOperationException " I think this means if it's in the same module or block of code like sending a message
    Posted to Web Forms (Forum) by JessyEzzy on 10/21/2007
  • Re: Expand/Collapse a group of CollapsiblePanelExtenders

    Thanks Phanatic this is exactly what I need
    Posted to ASP.NET AJAX Control Toolkit (Forum) by JessyEzzy on 7/27/2007
Page 1 of 10 (100 items) 1 2 3 4 5 Next > ... Last »