Jag har fått ett nytt felmeddelande därvör så har jag ändrat hela inlägget Hej, Hej Benni,Server Error in '/' Application.
<code>
Server Error in '/' Application.
--------------------------------------------------------------------------------
Index and length must refer to a location within the string.
Parameter name: length
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.ArgumentOutOfRangeException: Index and length must refer to a location
within the string.
Parameter name: length
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.
Stack Trace:
[ArgumentOutOfRangeException: Index and length must refer to a location within the string.
Parameter name: length]
System.String.InternalSubStringWithChecks(Int32 startIndex, Int32 length, Boolean fAlwaysCopy)
+2916167
MasterPage.checkURL() +52
MasterPage.Page_Load(Object sender, EventArgs e) +5
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +15
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +33
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +47
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean
includeStagesAfterAsyncPoint) +1436
</code>
Jag förstår inte vad som menas, lokalt så fungerar allting så kanonbra.
Felet uppträder när jag klickar på en speciel länk i min "meny"(några länkar i en tabell).
Någon som har ett bra förslag till lösning?Sv: Server Error in '/' Application.
Tycker felet är rätt uppenbart:
System.ArgumentOutOfRangeException: Index and length must refer to a location
within the string.
Parameter name: length
Någonstans i din kod försöker du med en hårdkodad siffra plocka ut nått ur en position som inte finns.
Så försök hitta vart i sidans kod du använder dig av index för positioner.
Ex kanske du gör en Substring... och anger ett indexvärde som är utanför dess längd...?
Mvh JohanSv: Server Error in '/' Application.
Tita på checkURL() methoden in i din MasterPage
Mvh,
Tibi