Post A Form Which Contain An Array Value?
Aug 11, 2009
I am developing an application for windows that is going to upload images to a free image hostings...
I am using WebClient and UploadData for posting my form to the website... now lets take a look to one of these free image hostings , for example img98.com..
as you can see in the main form for uploading there are 4 inputs with the name of "userfile[]" that means userfile is an array...
now I want to know how can I post this value?
View 2 Replies
ADVERTISEMENT
Sep 4, 2010
.net - vb.net handle a post with an array
View 3 Replies
Apr 8, 2009
I have the following HTML form
[Code]...
This page works fine, but I have several files that need uploading. My question, Is there a way to do this from vb.net? Basicly what I'm looking to do is loop thru an array of files use the vb.net to do the http Post.
View 1 Replies
Aug 16, 2011
Ive bin looking for like a few hours now and can't seem to find my answer anywhere.
I want to post to a multipart form on a virustotal.com
I can however make a login bot for a website where i only check the stats from. But virustotal is a complete mystery for me.
View 4 Replies
Jun 29, 2009
OK, I am creating a tool that monitors a folder. IF a file is dropped there, it means there is an issue. So the tool sends out an email and I also want it to send out a page via the telalert system we use. The telalert system is used by filling out certain variables and posting them in a web page. What i want to do is the same thing but behind the scenes in the tool.
Does that make sense? I currently do that in a web form i created using HTML and javascript for a web page our end users use to report issues to us, that code looks like: [Code]. Now some of the other variables used for the post are in the web form. But this way pops up a webpage and stuff. Since my tool will be on a PC running by itself, i would want all the.....'posting' to be done in the background.
View 2 Replies
Dec 30, 2008
I am trying to find out if it possible to create a windows form that will post an XML file using a simple HTML Form? I have the HTML page that will be used to post the XML file already created, what i wanted to be able to do was enter the XML into a text box on my form which the user can post. When the XML is entered and the button POST is hit then the XML is added to the HTML page that i have already made and posted to the webservice. Is this possible?
What i also want to be able to do is display the XML response received following the post, to update you if the post has been successful, is this possible?
View 28 Replies
Jan 21, 2011
I need to POST a HTML form to a 3rd party website (a Mass-SMS texting system).
In the past I've done this by forwarding to a page containing a form I've pre-populated and hidden (using display:none), then I've ran a javascript function at the end of the page to automatically submit this form.
However I'm hoping theres someway I can do all this programmatically (as I don't care about the response, and the user doesn't need to see the page the form is being posted to).
View 2 Replies
Sep 28, 2011
I am trying to programmatically post to a textbox on a web form in IE - I have tried sendkeys - but I dont find them reliable or consistent - The code below is perfect - but only seems to work in a webbrowser control. How do I (click a button/select a radiobutton) send 'hello world' to a textbox on a webform in IE? By the way I would be happy to use the webbrowser control (so the code below would work) - but the webpage (which is not the one in the code below) runs locally on my machine (I dont have any control over it) and does not seem to work within a webbrowser control
[Code]...
View 7 Replies
Oct 5, 2010
i wish to use this form which returns a value true or false,
<form action="loginapp.php" method="post" name="logmein">
<table>
<tr>
[Code]....
i'm trying to do away with webbrowsers (IE required) from my vb project.
also whats a better alternative to ie browsers in vb.net, i been looking at gecko but people say it requires you to include 16mb+ worth of files?!?
there must be a way to include browser functionality, without the end user required to have IE Browser?
View 9 Replies
Sep 28, 2011
I am trying to programmatically post to a textbox on a web form in IE - I have tried sendkeys - but I dont find them reliable or consistent - The code below is perfect - but only seems to work in a webbrowser control. How do I (click a button/select a radiobutton) send 'hello world' to a textbox on a webform in IE? By the way I would be happy to use the webbrowser control (so the code below would work) - but the webpage (which is not the one in the code below) runs locally on my machine (I dont have any control over it) and does not seem to work within a webbrowser control. PS go easy on me - I'm a Newbie/Thick Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]...
View 1 Replies
Jul 3, 2010
I have a web form on a web page like this:
<form
method="post"
action="http://poston.domain.com/"
[code]....
View 2 Replies
Jun 12, 2009
I am trying to post data to a multipart form. The problem right now is that I cannot determine the boundary of the data. The only way to find it is to actually POST some data (as far as I know). The boundary also changes each POST for a single static page.Is there a way to find the post data boundary?
View 3 Replies
Jan 24, 2012
I can grab info from a website uing httpwebrequest but i don't know how to post to a form :/Ive always used a webbrowser for this but its a tad slow.Here is what i use with a webbrowser:
Dim DBSplit() As String = Split(TextBox5.Text, "/")
WebBrowser1.Document.GetElementById("email").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("Pwd").SetAttribute("value", TextBox6.Text)
[code]....
How would i post this data to a form using httpwebrequest?
View 7 Replies
May 28, 2010
I'm successfully communicating string data to and from with a webserver using the System.Net.WebClient and the Upload method. Now I'd like to be able to upload files from my local app to this webserver. I get that it's probably very similar to what I'm doing with the string data, but I've not done anything with files that aren't ascii based so am hesitant as where to begin. I don't want to corrupt the file.
View 3 Replies
Aug 1, 2011
I've written my HTML webserver in VB.NET and I don't know how to make it read data values submitted in HTML forms. My web server only responds to HTTP 'GET' requests. My sample cod is below it is reading the URL rather tan the data contained in the forms`
[Code]...
View 1 Replies
Dec 9, 2011
MVC 3. VB.NET application.. I am trying to pass a id along to keep track of which record a file name needs to be saved in.. The problem is that the id is getting passed into the view but on post back to the controller it is being lost...I have hammered on this for hours now and I am stuck...
[Code]...
View 1 Replies
Apr 13, 2010
I designed a complicated graphic that draws on a Visual Basic screen. But how can I transfer the image to a bitmap or some other format that I can post on the Internet? I've tried the XAML editor in Microsoft Expression Web but people don't like downloading Silverlight, at least that's what they tell me.
View 2 Replies
Jun 11, 2009
The form I want to post to has a dynamic boundary.Is there a to detect the boundary pre-POSTing?Also, do I need to send the data in the format of:
[code]...
Or can I set it up in pairs like: "var1=value1&var2=value2"...for all required form fields? What is the difference between the 2?
View 1 Replies
May 30, 2011
I am trying to create a program that is able to submit post data for the page [URL] where it submits the request fields and then the resulting page is receiving in a string.
View 2 Replies
Jul 24, 2009
How can i send a POST command to a login form's action...in easier words. how can i login to a webpage without opening it in a webbrowser control and after that how can i send text from a vb application to a webpage(sort of like posting) im making an autoposter application.
If u dont know wot an autoposter is see this:
Quote:
This program posts inside many forums (you can choose). It's main objective is to allow a user to distribute their posts to many forums easily without opening each individual page on the in a web browser therefore you get more points to your filehoster's account.
Note: you must still create each forum's account manually.
If u want an example of an autoposter...go here [URL]
View 20 Replies
Jun 11, 2009
Having a problem with sending a file via HTTP post in vb.net. I am trying to mimic the following HTML so the vb.net does the same thing.[code]
View 4 Replies
Apr 13, 2011
I need this code urgently try to sort out my problem and please explain the code with proper way.
View 1 Replies
Nov 25, 2008
<edit on 10th March 2010.>
Changed thread type to QUESTION. I was then able to mark AS ANSWER the relevent post which now also immediately follows this post and so it is easier to find as suggested by forum user j2associates .
<edit> It is also my 3rd post in this thread, the 8th one up, of my posts, from the bottom ( for now ), as the forum format has changed yet again.I will leave the rest of this post( as is ) purely for historical reasons. I have been on these forums long enough to see 3 forum changes. <edit> 19th May, 2010> Link added to a video on the next line of text.
[code]....
View 1 Replies
Mar 15, 2010
If I make the following array in a push button event and I want to put those array variables in a class array. How do I do that? I am just beginning to learn about classes in vb.net but I am having problems using classes and arrays.Is there any good tutorials on that subject.
[Code]...
View 7 Replies
Oct 6, 2011
Im trying to create a software which can post into yahoogroups.I've done trying to log in yahoomail but my problem is when I am going to post in yahoogroups, I am turning back in to yahoo log in page.
Here's my code so far:
Quote:
Imports System.IO
Imports System.Net
Imports System.Text
[code]....
View 1 Replies
Jun 19, 2011
I have an array of people stored in a custom structure array... how can i copy this array to a temp array so that the temp array has all the same values as the original custom array?
View 4 Replies
Jul 13, 2009
I have an array of forms, when a user switches from one to another, I would like to know which form he is on. How can i get the name of the form is currently focused on by the user?
View 9 Replies
Nov 23, 2009
i got the output of my project and it is displayed in the RT BOX and saved locally.. the values are stored as arrays.. the RT Box will display three values time, conc and preconc.the time, conc and preconc values are stored as arrays. my problem is, i should pass this values to the next form FORM2.VB.. and display the values in a graphical format.how to pass these arrays from one form to other??
View 1 Replies
Nov 4, 2009
how can u pass your array to another form
like example
FORM2
public test(2) as string
test(0) = "test1"
[Code]....
how can i get the value from the array test(0) in form 2 to in my textbox in form 1?
View 3 Replies
Mar 29, 2012
I am working on a little project and have had great success, that is until I came upon a slight glitch in programming. Here is the glitch:I have Form1 and Form2. Form1 contains an array, which I need to send to form2 to precess and send on. Is this possible? I have tried sever ideas and none have worked. sending an array from one form to another is possible?
View 5 Replies