Page_Load(Object sender, EventArgs e) +2024

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fabkhush
    New Member
    • Aug 2008
    • 1

    Page_Load(Object sender, EventArgs e) +2024

    Hi


    Im getting the below error when i hit a particular button on my application

    [SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.]
    GETxxxx.UI.cags .Page_Load(Obje ct sender, EventArgs e) +2024 System.Web.UI.C ontrol.OnLoad(E ventArgs e) +67
    System.Web.UI.C ontrol.LoadRecu rsive() +35
    System.Web.UI.P age.ProcessRequ estMain() +750



    Im not a .NET guy, im from SQL background
    People here say it is SQL error when I know it is not.
    Before expalining this to people here want to when this error comes, how to resolve it.

    I know sumthing wrong with cags.page not getting opened or..?

    Please help me
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    It is a SQL error.
    Your SQL queries are taking too long and are causing timeouts.
    If you cannot fix your queries to be faster, consider making changes to your connection string and SQL objects, as well as your web.config file to allow more time before timing out

    Comment

    Working...