I Have another Issue with my Code (ARGGGH!) I have a request.querystring that I am calling and i get the following error Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index
public void getAccountRef()
{
string getAccountRef = (string)Request.QueryString["AccountRef"].ToString();
SqlDataSource1.SelectParameters[0].DefaultValue = getAccountRef;
}
Any thoughts why? I am trying to parse the account ref which is going to formatted like REDIT1
Cheers
Justin
SqlDataSource1doesn't have a select parameter with index0– Alex Mar 28 '11 at 15:48