Link to home
Start Free TrialLog in
Avatar of stephentrice
stephentrice

asked on

C# asp.net form view see variables posting

I have a form view using a stored procedure to do an update. I get the following error.

Procedure or function UpdateClientView has too many arguments specified.

Now I fully understand this error and what it is telling me, but I don't know how to view what the form is posting. I have compared my stored procedure to my form view and it looks like all the variables are the same. In classic ASP I would set the form action to get, and I could view what the form was posting on the querystring.I have added the code below to my code behind and I think this would work except it throws the exception. This form view is on a content page and uses a master. I just need to see what the form is posting so I can compare it to my stored procedure. Thanks!
foreach (string key in Request.Form.AllKeys)
        {
            Label10.Text += key + " = " + Request.Form[key] + "<br />";
        }

Open in new window

SOLUTION
Avatar of strickdd
strickdd
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of stephentrice
stephentrice

ASKER

Thanks strickdd. Do you know of a good online resourse I can research this on.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial