Request.Form ordering on LinkButton click
Brought to you by:
jlittle82
I noticed a small bug on the ordering of items in the
Request.Form when doing a LinkButton click.
.NET automatically places the ID of the link button
in Request.Form[0], and then puts the view state in
Request.Form[1].
The NUnitAsp processing switches this order around,
so the view state is in Request.Form[0], and the link
button in Request.Form[1]. This caused me some
troubles when I was looking for a dynamically named
link button.