how to send a file from my application to my website if my computer happens to be connected to the internet. It's an FTP site. I used Visual Web Developer 2008 to build my site. I obviously have to do some digging of my own but maybe someone can tell me a few things to point me in the right direction.
I have an asp.net webpage that only contains a textbox and a button. The user submits their email address using this webpage.What I am trying to do now is take the information submitted by the user and go to another website. Where my "website/program" gives the different website the entered email address, and clicks the submit button.
If I where to physically go to the different website, there would be a textbox to enter the email. But since I am accessing the website from my page "behind the scenes" I cant manually enter their email address.Is it possible to do this, if so how? Also, my code behind is in VB.
What is the VB.NET (or C#) code to prepare POST data and send to a different website than specified in the current <form ...> section?
EDIT: Every algorithm I've found online using HttpWebRequest gets the returning page from the other site and outputs it with Response.Write. I want to navigate to the new page posting the data and leaving the current page completely.
EDIT2: (more specific description of what I want)The code below displays a line chart. When the user clicks on the label for a data point, the page refreshes (performs a postback) and displaying the x-value of the clicked point.Instead, upon clicking a label, I want to send other_id="#VALX" as the only POST data to other_results.aspx as if the user had typed the corresponding id into the the TextBox on other_search.aspx and clicked Submit.
Working with my friend on a Minecraft casino program. I want the program to send a packet of data to the server. He can make the plugin to capture the data in java but how do I make my end of it to make it send the data to the server? Do I need to make a class with the data to send the data?
I have the following code which is meant to send an email from the website. I want the your name, phone number, your email and inquiry to be in the body content of the page as an html formate.
I'm a total noob to website development and I'm trying to send data by a HTTP POST to an already opened website, let me explain:
I have a website, that it's being called from another website (that I'm not developing) into a new window, my website performs a query and gets the data that has to be sent back. I need to know if my website can send the data to the already open website that called mine, or do I have to send the data to a new window.
I would like to know how HttpWebRequest and HttpWebResponse works. How would I send a login request to a website and then find out if it worked or not?
is it possible to make one application send a task to another application and recieve the result from that secondary app?i made a text editor program and i added a scan feature and i made another app that has ocr capabilities.The scanner ability is in my text editor program, the ocr program doesnt scan you have to input an image into it and it will give text result a few seconds later.the prob is alot of times the ocr code uses sooo much memory and crashes when its incorporated with my text editor, but individually each application works fine and doesnt take too much memory. Memory wont be even an issue if the ocr program is standalone so that when it is done decoding image the application can be made to exit. now here is the question, how do i make my text editor send the image to the ocr program and how do i make my ocr program send the text back to my text editor? is it possible? i mean the only way i know off is creating temp files in a certain folder and having a timer on each program that keeps waiting for temp files. That just seems like pretty lame coding to me i was wondering if there's a better way?
I need to send a short string, (less than 30 bytes, but sent every second), from one VB application, to a Delphi application.. is this possible, using CopyDataStruct, WM_COPYDATA and SendMessage functions in Windows?
<!-- Generated by F12 developer tools. This might not be an accurate representation of the original source file --> <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head> <meta content="text/html; charset=utf-8" http-equiv="content-type">
I'm constructing a temporary website at [URL]. I would like to know if I can run an application from Visual Basic 2008 Express Edition on my website. It is a Table design from DataGridView which I can run successfully from my desktop but I want to upload for use on my website.
I have already asked about the problem in java forum.Now i think the solution is only possible through microsoft products.Problem is i want to get the handle of a application and send commands to that application.Is it possible commands are send to combo box , text area, buttons etc..
I am not sure if it proper forum for this question. anyone explain how to run a easy VB.net program in a website.I know there are other programming tools for this purpose but I'd like to use VB.net.
i have made an application in visual studio 2008 (Visual Basic) what i need help doing is i have a website i would like them to login to. On my windows form i have a TextBox1 and a TextBox2, how can i have it where they can log into the site via these textboxs?
I want to develop an application from which i can login into the website and send SMSs from it,i want to login to this website url...i have limited knowledge of vb.net and java,
I'm designing a site that I'll be uploading content to from my VB.net program. I've also set up the stuff so you can upload content from one of the pages:
I have a Class file which is written in C#, I want to use this class in my Web Application which solution is in vb.netf I place this C# class file either in root folder or App_Code folder, it does not allow me to create object, show syntax error, and intellesence is not working for this object.
This website "[url]..." contains currency exchange rate, and it's useful to my desktop application " bill system " .the question is: How to get data from this website to my desktop application textboxes ?
Is it possible to do this so I can embed a VB .NET application in a website. Or is this something which is more suitable for doing in a WPF broswer application?
I am writing an app which gets information from a website. Basically I load the webpage into a webbrowser control and parse the document text for what I need.
My problem is: I have a German version of windows. The webpage returned has the German version of the webpage. I require the English version but there is no way of specifying the language in the URL, so it must be picking up the default language of my operating system. How can I override this, is there a property of the Webbrowser control which I can set?
After converting a Asp.net website to web application, I receive 'Type MyNameSpace.MyMaster is not defined' error on pages that use the MasterType directive.
eg In the aspx file <%@ MasterType VirtualPath="~/MyMaster.master" %> In the designer.vb file the following code is generated and has the error described above:
Public Shadows ReadOnly Property Master() As MyNameSpace.MyMaster Get Return CType(MyBase.Master, MyNameSpace.MyMaster) End Get End Property