Hi,

I'm experiencing this strange (to me) thing.
I placed a couple of literal controls inside a web page, giving them 
a starting value and setting EnableViewState="false", both in aspx 
and in codebehind.
During Page_Load I change the value of literal setting
   literal.Text="mytext"+literal.Text
the first time it works, I obtain
   "mytextdefault"
but, at the second postback, I obtain
   "mytextmytextdefault"

it should happen with viewstate enabled because it keeps the new 
value between postbacks but with viestate disabled it should reset 
the value to default and I should obtain everytime "mytextdefault".
Using the same assemblies in .Net Framework it works. Maybe it's a 
known issue or it's by design?
Thanks in advance.


_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to