Wednesday 8 February 2017

VB.NET - ASP.NET - Fix Error - Additional information: Index (zero based) must be greater than or equal to zero and less than the size of the argument list.


Watch solution on YouTube


To Fix it replace
Response.Write(String.Format("Text1 '{0}' Text2 {1}", "ABC"))

With

Response.Write(String.Format("Text1 '{0}' Text2 {1}", "ABC", "BBC"))

No comments:

Post a Comment