HTML forms are used to pass data to a server. A form is essentially a container that can be used to hold any amount of any subset of several types of data.
0
votes
0answers
2 views
refresh listview , after input data ( visual basic)
i want to refresh a listview1 located in form1 i created a code that fires a public void to refresh it or make it listview1.visible = false; nothing works except messagebox.show("test");
any help ? ...
0
votes
0answers
15 views
PHP Subscriber button
Alright, I feel a bit guilty asking this as there seems to be a plethora of other similar entries, but I'm terribly thick with anything PHP. I thought a personalized approach might be beneficial - I ...
0
votes
0answers
3 views
woocommerce hook on page-new.php
I'm using woocommerce and mgates vendor software while adding hooks on the page-new.php page to make instructions for my vendors on the add product page. I'm using
add_action( ...
-5
votes
2answers
25 views
I have a probleme in Creating a php/mysql Delete form [on hold]
Hello to everyone in this fantastic club , Im amira from morocco , iam new to the forum ,all i need a little help here ,When a was creating a little code in php/mysql i wanted to know how to built a ...
0
votes
0answers
11 views
Is there a way to attach a file to an HTML form without using the type=“file” attribute of the <input> tag?
Say I have an html page with a form for posting. The form is intended to post a file to my server, and to this end currently uses a <input type="file" name="attachment" ...> tag to attach this ...
0
votes
1answer
15 views
How do I set the name of a form in Rails?
I tried
<%= form_tag ("/ombcauth", name:"ombc_form") do %>
But it gave me a syntax error:
syntax error, unexpected ',', expecting ')'
...append= form_tag ("/ombcauth", ...
0
votes
0answers
15 views
jQuery Mobile pop up notification on form submit
I have a jQuery review page that I am submitting data to a submit.php page to email the data. As of now on success I have it going to a "success" page but I would rather (if possible) when you submit ...
0
votes
0answers
9 views
In Excel 2010, how do I create a Macro to copy data from downloaded CSV?
I have data that needs to be downloaded from on online form, then have that data transferred to a specific sheet with pre-formatted rows and columns, with specific headers. The downloaded data has a ...
1
vote
3answers
34 views
Redirect to any page and submit form details
I'm looking to submit form details using method="POST" to an external URL, then redirect the user to a 'Thank you' page after successfully completing the form.
My sample HTML/Javascript is as ...
-1
votes
2answers
27 views
jQuery serialize() leaves out textarea
When I submit a form using jQuery's serialize() method, everything gets submitted except the textarea in the form. Is this a common issue? I can't figure it out. The form works except for just the ...
0
votes
0answers
19 views
request.FILES always empty on file upload
I am totally stumped on this, and must be doing something incredibly stupid. I am trying to simply upload a file on a Django project. The problem seems to be that NO form data is getting passed ...
-2
votes
1answer
38 views
php posting to an email
So i have this code. The top input does get sent to the email but the bottom doesnt (Tank I.D.). I need to get the second part working. I looked at a similar one where it used $v['example'] instead of ...
0
votes
2answers
21 views
Focus the first input on load only if no input is focused
I'm trying to set a default focus for all the pages of my site but without changing the focus on page reload.
I mean:
User opens a page.
Focus is automatically set on the 1st input.
User changes ...
0
votes
1answer
15 views
ValidationMessageFor readonly property, or one ValidationMessageFor two properties
I have a class that contains
[Required]
public string FirstName { get; set; }
[Required]
public string LastName { get; set; }
public string FullName {
get {
return this.FirstName + " " + ...
4
votes
4answers
63 views
How to prevent user from bookmarking URLs?
My website's webpages displays webpages by using GET to retrieve variables from a predefined URL.
For example the code on the first page: index.php
<p><a ...