2
votes
3answers
84 views
Why do the major browsers not support HTMLs ACCEPT attribute for input type=”file”?
Does anyone know how to use the accept attribute in input tags? I can see it documented, but w3schools indicates that it is not supported by any of the major browsers. Testing also …
2
votes
3answers
93 views
Multipart/form-data and UTF-8 in a ASP Classic application
Hi all,
I have a problem that I really don't understand.
I'm trying to upload a files in a asp classic app, without the use of an external component. I also want to post some text …
0
votes
2answers
96 views
HTML Encoding Form Post
A user has sent me some information that they posted to one of my pages with potential XSS issues however, looking at the server side code I don't think it would ever run through m …
2
votes
4answers
270 views
Pressing enter inside a textbox does not fire onclick event of submit button in firefox
I have this html page which is very simple, it contains a text box and a submit button, what I want is when typing something in the text box and pressing enter the function in the …
0
votes
4answers
75 views
Good solution to the ‘preventing default button on form from firing’ problem?
I need a solution for the age old problem of a 'default button' firing undesirably.
i.e you hit enter in a text box, but there is a submit button on the form that isn't the one you …
1
vote
3answers
56 views
Best practices for storing html form content in XML document
I have two web forms which are filled in by the user. They contain different types of fields: text boxes, radio buttons, check boxes (single or in groups). All the information that …
0
votes
5answers
106 views
Am I using onchange incorrectly?
I'm trying to have a value (key) that updates to correspond with a number in a textbox (angle) divided by a value (25). However, for some reason, the changeMe function doesn't seem …
0
votes
2answers
32 views
Using a form to change css stylesheet
Hi,
I use about a dozen different templates for several different vertical markets that I customize for CLients. I add custom Headers, footers and links and develop a color pallet …
0
votes
1answer
88 views
Really Weird ASP.Net Reserved Request.Form key name
I seem to have stumbled across a really weird issue when posting a static HTML page to an ASP.NET page:
Example:
<form action="Kiosk.aspx" method="post">
<input type="hi …
2
votes
4answers
367 views
PHP - Pass Drop Down List option through query string
I have a drop down list that has options that need to be passed through a query string. How would I go about doing this? Also, would anyone be able to list a way to do this both …
0
votes
5answers
156 views
Reading form action property in IE6, if form has a field named “action”
Given the form below:
<form id="myForm" action="index.php">
<input type="hidden" name="action" value="list" />
<input type="submit" />
</form>
Ho …
0
votes
3answers
190 views
HTML Form and Javascript Confirmation
I'm having a problem with submitting a form and Javascript confirmation. Basically, the following Javascript is called when the "submit" button is pressed.
function confirmation() …
2
votes
2answers
139 views
how to handle multiple forms on one page?
On one page i have list of questions with diffrent tipe of answers. (texboxes, checkboxes etc) Page is dynamicly generated. I have to store answers in database. What is the best wa …
1
vote
3answers
37 views
Is there any difference between {strlen($var) == 0} and {empty($var)}
Hi,
considering that the variable only can be String fetched from an HTML Form (input-text, textarea).
1
vote
4answers
179 views
Asp.Net nested form
I need to supply an html form (not a server form) for searching within an asp.net web-forms website. The form will post to another website where an indexed search is performed. S …
