Hello:
We proved the Session with server of xsp.
We tested:
   Recompile the SessionInProcHandler
   With a counter in Line 114

   We did a Page aspx when read a value saved in Session for example.

Page1.aspx
<html>
...
<script runat="server">
    void enviar(object o, EventArgs e) {
      Session["save"]="date";
      Response.Redirect("pag2.aspx");
    }
</script>
<body>
     <form runat="server">
        <asp:Button Text="send" Onclick="enviar" />
     </form>
</body>
</html>

Page2.aspx
........
<html>
<head>
<meta http-equiv="refresh" content="5">
<script runat="server">
   Page_Load(object o, EventArgs e){
      string xdate = (string)Session["save"];
      Response.Write(xdate);
   }
</script>
</head>
</html>

Good We Result:

    If many client enter in order of one in one the posibility that
session down is soso null.

    When many client enter at time equals the session down


_______________________________________________
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to