What command was it in C# where you could get the values of, let’s say, multiple textboxes sharing the same name property in a form on post?
If i remember correctly, the value would be returned as an array.
Edit:
It was Request.Forms.GetValues
Sorry for the trouble guys. >.<
The only array supported for a TextBox in C# is using the Lines property in case of a multiline TextBox. There’s nothing like a control array of VB. You can of course write your own wrapper of some kind.