Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
7k views

Why is ValidateInput(False) not working?

I am converting an application I created using webforms to the asp.net mvc framework using vb.net. I have a problem with one of my views. I get the yellow screen of death saying "A potentially ...
7
votes
1answer
297 views

ASP.NET Request.Form Performance

I used a HttpHandler to implement a light-weight web service targeted for high performance. It requires a POST with content-type application/x-www-form-urlencoded. The web service does many tasks ...
3
votes
3answers
128 views

How can I tell if a value in Request.Form is a number? (C#)

Suppose I must call a function with the following signature: doStuff(Int32?) I want to pass to doStuff a value that is read from Request.Form. However, if the value passed in is blank, missing, ...
2
votes
2answers
4k views

C# Can i modify Request.Form's variables?

i try Request.Form.Set(k, v) but it's throw exception Collection is read-only
1
vote
1answer
74 views

How to read input value from the Request.Form collection by input name

I want to be able to read values of HtmlHiddenField controls from the Request.Form collection in a user control on postback. The keys in the collection seem to represent the control's name attribute ...
1
vote
1answer
90 views

How to Retain Request.Form data

This is regarding forwarding POST variables properly in ASP.Net To force all connections use the https protocol rather than http, I inserted the following code in Global.asax If Not ...
1
vote
2answers
488 views

Uploading Image and Fixing/Veryfing it's size with <input type=“file”>?

I Use ASP .NET 3.5 C#, and i whould like to get the picture that the user trying to upload from <input type="file" name="uploadPicture" id="uploadPicture"> Can i just use: ...
1
vote
2answers
424 views

ASP.NET: Using Request[“param”] versus using Request.QueryString[“param”] or Request.Form[“param”]

When accessing a form or query string value from code-behind in ASP.NET, what are the pros and cons of using, say: // short way string p = Request["param"]; instead of: // long way string p = ...
1
vote
3answers
229 views

How can I retrieve the values of controls in the form that posted?

I know this has got to be the simplest-sounding question ever asked about ASP.Net but I'm baffled. I have a form wherein my visitor will enter name, address, etc. Then I am POSTing that form via the ...
1
vote
2answers
517 views

Finding File data from POST in C#

This is probably something blatantly obvious that I'm just missing. Help me, SO! I'm trying to access file data submitted via POST from a web form (not the built in C# ones though.) I have no idea how ...
1
vote
3answers
2k views

jquery $post posts page, but Request.Form is null

I have few input fields in a form. after some validation, I use jquery to post the page. $.post("Myproduct.aspx?action=1"); The post appears to go through. But when I debug the server code, the ...
1
vote
3answers
1k views

Results of Request.Form if the requested input is blank

When I use Request.Form("myInput") and the input field "myInput" is blank, I get a server error. How do I handle this? Is there a way to check if "myInput" has not been filled?
0
votes
0answers
123 views

Request.Form problem with System.Web.Security.FormsIdentity

I have a situation where I submit a form from my https web page to a third party website. User has to confirm the password on that third party website. From there a form is submitted and a user is ...
0
votes
4answers
474 views

How to traverse through Request.Form without knowing any details?

I want to spit out everything in Request.Form so I can just return it as a string and see what I am dealing with. I tried setting up a for loop... // Order/Process // this action is the submit POST ...
0
votes
2answers
608 views

Pass hiddenfield value within a WizardSteps control to next site

Im having some problems with sending a value to the next site on a submit. I think the problem is that the hiddenfield is placed inside a WizardSteps control, but i dont know. Here is the html code: ...
0
votes
1answer
657 views

Retrieval of input type=password Request.Form[“strPassword”] gives null

Are there any special considerations trying to read up data from an HTML form where the element is an input type="Password"? When a ColdFusion page POSTs my handler with form data I am getting null ...