The request.form tag has no wiki summary.
0
votes
0answers
43 views
Missing Controls in page after timer method ticks
I have some code that handles a timer method, that just updates a label and changes it to a last updated at this time.
Protected Sub specialNotesTimer_Tick(ByVal sender As Object, ByVal e As ...
1
vote
0answers
65 views
ASP.NET Request.Form case-sensitivity
I have some C# code that retrieves the value of Request.Form["KeyName"], however, the code that is submitting the request is passing keyName=value. This works in our dev/stage environment, but not in ...
2
votes
2answers
158 views
ASP classic - how do I join an array of strings / join / implode do not work
Dim stringIdCollection
stringIdCollection = Join( Request.Form( "id" ), "', '" ) )
Dim whereStatement
whereStatement = "WHERE id IN ('" & stringIdCollection & "');"
I get this ...
0
votes
1answer
33 views
Formview with ListBoxes and user control
I have a FormView that contains three list boxes and a user control. The user control is a grid that inserts and updates data while the form is in edit or insert mode. The problem I am having is that ...
0
votes
1answer
198 views
how to use request.form[] in inherited web form
I have a Master page and one web form inherited from that master page,
the tag is in master page which contains a content place holder inside
Master Page:
<form runat="server">
...
1
vote
1answer
112 views
Request.Form between HTTP and HTTPS pages in ASP.NET
I have a strange situation and google isn't helping me out. I have an admin site which is in simple HTTP who posts data to a different site running under HTTPS. The HTTP admin site (which I don't have ...
0
votes
2answers
499 views
jquery POST data in aspx page
I post data to my aspx file qith the following code:
$.ajax({
type: 'POST',
url: "Ajax_Text.aspx?rand=" + myRand
+ "&id=" + ...
1
vote
2answers
932 views
classic asp request form and variables
I need some help here. I got this simple username/password script to enable a login page. It is basically a form asking a username/password and comparing with some info inside the code.
If ...
0
votes
2answers
860 views
<pages validateRequest=“false” /> and <httpRuntime requestValidationMode=“2.0” /> not working
I've inherited an MVC asp.net app using framework 4.0.
I'm getting the dreaded "A potentially dangerous Request.Form value was detected from the client" error and all my research leads me to believe ...
0
votes
1answer
85 views
Remove part of the Request.Form
In a C# MVC3 solution I'm passing the request.form as a string to a webservice (I understand it would be much better to break it down and populate a model but it's compromised with old code and mainly ...
0
votes
1answer
213 views
c# Request.Form to string and back to Request.Form
I'm facing this problem. I pass the request form as a string to a webservice, and then inside it I'm trying to fetch the data inside that string. I guess I could work it out searching for each ...
0
votes
1answer
193 views
Get Client Value Back from ASP.Net Custom Control
I'm having issues getting a control to pass its value back to my server from the browser. Essentially, what I need is a LiteralControl that can be pushed onto the page, modified by some JavaScript, ...
0
votes
1answer
176 views
ASP.NET: Request.Form and Repeaters
I have textboxes on Page A. These textboxes are inside a repeater. I am wanting to access their values on page B. However, Using Request.Form returns Null.
Dim condition4 As String = ...
1
vote
1answer
124 views
How to get/pass dynamic controls in $.post method in asp.net?
I am add controls dynamically in my page from the database and i am using $.post() method to pass values in client side. Now i want to pass this controls in $.post() method.
so can any one suggest me ...
0
votes
3answers
665 views
Request.Form(“ListBox1.ClientID”) returning nothing
Request.Form("ListBox1.ClientID")
returning nothing in webcontentform and usercontrols. But it works perfectly fine with normal webform.
All the dropdownslist and Listbox are populated by jquery. ...
2
votes
1answer
203 views
Request.Form using in my application Firefox get the values in pdf file but Chrome browser pass the null value
I developed one project using editable pdf files in browser fill the pdf file and save the file to local system see this my post save the pdf file, answer is working in Firefox browser(10.0) but it ...
0
votes
1answer
683 views
How do I get the form value that caused the “A potentially dangerous Request.Form value was detected from the client” in MVC?
I have an MVC3 application that has a custom HandleErrorAttribute so that I can email the error. I often get the "A potentially dangerous Request.Form value was detected from the client", but it only ...
1
vote
1answer
1k 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
2answers
376 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 ...
3
votes
3answers
312 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, ...
8
votes
2answers
989 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 ...
1
vote
2answers
2k 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
2k 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
664 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 ...
0
votes
4answers
2k 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
829 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
1k 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 ...
1
vote
2answers
1k 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
3k 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 ...
2
votes
3answers
3k 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?
21
votes
4answers
14k 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 ...
5
votes
2answers
6k 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


