Hallo zusammen.

Ich besch�ftige mich erst seit kurzem mit ASP.NET und habe zum Testen ein
paar Seiten bei http://www16.brinkster.com/mfchausruck/0701.aspx online
gestellt.

Nun bekomme ich diese Fehlermeldung wenn ich mit dem IE 5.5 zugreife und auf
Umwandeln klicke, mit dem IE 6 geht alles.
The View State is invalid for this page and might be corrupted. 

Exception Details: System.Web.HttpException: The View State is invalid for
this page and might be corrupted.

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: 

 [HttpException (0x80004005): The View State is invalid for this page and
might be corrupted.]
System.Web.UI.Page.LoadPageStateFromPersistenceMedium() +151
System.Web.UI.Page.LoadPageViewState() +16
System.Web.UI.Page.ProcessRequestMain() +421    


Hier der Code:

<%@ Import Namespace="System.IO" %>
<script runat="server">
Sub Page_Load()
  If eingabe.text <> "" Then
    ausgabe.text = Server.MapPath(eingabe.text)
  End If
End Sub
</script>
<html>
<head>
<title>Server.MapPath()</title>
</head>
<body>
<asp:label id="ausgabe" runat="server" /><br>
<form runat="server">
  relativer Pfad: <asp:textbox id="eingabe" runat="server" /><br>
  <input type="submit" value="Umwandeln">
</form>
</body>
</html>

Was mache ich falsch.

mfg
Bernhard





| [aspdedotnet] als [email protected] subscribed
| http://www.dotnetgerman.com/archiv/aspdedotnet/ = Listenarchiv
| Sie k�nnen sich unter folgender URL an- und abmelden:
| http://www.dotnetgerman.com/listen/aspDEdotnet.asp

Antwort per Email an