Hi all, could anyone tell me the following. How do I create in ASP.NET/C# analogue of the following in HTML/PHP:
<form>
<input type="checkbox" name="items[]" value="1" />
<input type="checkbox" name="items[]" value="2" />
<input type="submit /">
</form>
then, on the receiving side an $items *array* is created consisting of 1 and 2.
How do I do the same using ASP.NET and how to catch that array on the server side using C#?
Thank you in advance,
Temuri