Click here to Skip to main content
15,911,503 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey Guys,

i have a serious problem

i've uploaded my application online and after about 40 minutes may be less may be more with no action on the website i got this error

====================================
CSS
Server Error in '/' Application.

Value cannot be null.
Parameter name: source

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: source

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

====================================

i think that session times out

i am using Forms Authentication and i set the time out to 90 as follows

====================================
XML
<system.web>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
        <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
      </assemblies>
    </compilation>
    <authentication mode="Forms">
      <forms defaultUrl="Home.aspx" cookieless="AutoDetect" loginUrl="Login.aspx" timeout="90"></forms>
    </authentication>
    <authorization>
      <deny users="?" />
    </authorization>
    <customErrors mode="Off"></customErrors>
  </system.web>

====================================

i don't know where is the problem

can any one help plz??
Posted
Updated 14-Jul-13 23:34pm
v2
Comments
KarthickInfosys 15-Jul-13 5:40am    
H, Please try the steps mention in the following Link

http://forums.asp.net/t/1283350.aspx

1 solution

Check out this link:

The resource cannot be found[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900