A couple of parameter values I'm passing are coming froma textbox. The stored procedure I'm calling doesn't like the fact that the string is not in quotes. How do I do that?
string param = "@custno=123&@notes=add some notes here.&@comments=add a comment here."ExecuteLocalData(SessionKey, 11, param);
Hi Julie,
whats the error that you are getting? I am using the following code on our site in an aspx file.
ts.ExecuteLocalProcedure(SessionId, 12, "@slot_id=" + slotId + "&@SessionKey=" + SessionId +"&@notes="+ tbComments.Text);
Jon