On the Page_Load of my action page, I'm getting the form variables like thisstring name = HttpContext.Current.Request.Form["Name"];
I then have two functions that use these variables. In the first function, I'm inserting the values into a database and get an error that the procedure expects a parameter that wasn't supplied. The second function that calls a webservice works perfectly with these same variables. I've checked the stored procedure and everything looks fine there.
I've enabled tracing and these variables are displaying a blank value, but it is somehow working for that second function.
There's also a cms involved. The form is actually on a different aspx page than what it's posting to.
Any ideas what might be wrong?