Log Into Website Without Website Open?
Sep 9, 2011
I want to create a program to fetch information from a website (that's fine). However, you need to be logged in to get this information. I just want two simple textbox controls that I would type my username and password into and hit submit and the information would be returned to me so I can use it. (I don't want to use a webbrowser control)
View 2 Replies
ADVERTISEMENT
Feb 19, 2010
What Im making is like a face book and tagged login from my app
1. I have Combobox with 3 urls in there ( Facebook.com Tagged.com and Bebo.com )
2. I have a Form2 with webbrowser
3. I have a Button when clicked it should open up my form 2 and preview of the website which I selected in my combobox in form1
All I'm trying to do is when I select lets say facebook in my form 1 and click load it should open up my form 2 with facebook website in it.[code]Now when I click my button in form 1 it will load Form2 ( named Explorer1) but my form2 is not showing me facebook or tagged page for some reason
View 13 Replies
Feb 26, 2011
i'm creating a website that allows people to upload images to the website in a folder called images on the Site. But I don't know how to upload a file and I'v searched everywhere Please Note: In this Website were not Using the asp:fileupload, were developing our own interface
View 1 Replies
Apr 6, 2009
What I want is: To scan a website every 15 mins or so, (craigslist in this case), and email myself any new posts that come up. I know I need to use WebClient, but I never used that before. Another question would be how to only email when a new post is up and not receive the same email every 15 mins.
View 2 Replies
May 10, 2011
how to open a website
View 2 Replies
May 20, 2009
Just when you press a button, it will open etc. google. ??
View 7 Replies
Jan 2, 2010
I know it's asimple code but i cant remember. i want when my program closed then website open for the user for a site
View 2 Replies
Dec 16, 2010
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.
View 1 Replies
Mar 20, 2009
I have tried over 10 different ways, but have not been able to open a web site with Visual Studio. Is it possible?
View 8 Replies
Sep 18, 2011
i have a project with a listbox and a button. I would like the button to load a text file (in a list) from a website like; [URL] The links format is like this;
[Code]...
View 2 Replies
Jan 25, 2011
I have a ASP.NET 2.0 website created in C# that acts as a completely independent site and I am looking to integrate this into an existing ASP.NET 2.0 website created in VB.NET. Unfortunately I just don't know much about the server management side of ASP.NET yet so too much I'm unaware of when it comes to IIS configuration etc. Does anyone have any advice as to how I can go about integrating this? Basically I want to host it in a subdirectory from root so when you hit example.com/myindependantsite/ it will pull up my C# site.
One possible solution I came across mentioned just dropping the project folder into the root directory and setting up that directory as an application virtual directory in IIS? A few other random questions were small things like would my application relative links (~/for-example.aspx) stay relative to my root subdirectory if it's made into an application virtual directory? Just trying to get this running on their site but like I said it's completely independent so want to preserve my websites environment.
View 4 Replies
Nov 16, 2009
Does any one know what the code is to open a website link from a button =]
View 4 Replies
Nov 24, 2009
How was the code when press one button to open website page?
View 2 Replies
Aug 10, 2009
1. How do I make a VB button open a website? I want it to open the website using the default browser.
2. Is it possible to me to have VB look for a program? Right now one of my buttons will open a exe, but only if its in the same folder. How can I make it so that it can look for the program?
3. I want to add a "help" button so that when a user clicks it they will see a box with some info.
View 7 Replies
Mar 20, 2011
So I've made a program in VB 2010, and it has three comboboxes and a button to view. Now lets say my first combobox is "Type of website". The options are "search engines", "social networking" and "news". The second combobox values would depend on what the first combobox value is selected, like if it was "news" the options would be "technology", "uk", "us", and "world".
The third combobox would then use the values in the first and second comboboxes to give even more values, for example if it was "news" and "technology" the values would be "engadget" etc. Then the view button would open the selected website in an internet browser. How would I code this?
View 6 Replies
Jun 12, 2011
how do I create a label that when clicked by the user, it will open a website using the default browser. I have seen the control LinkLabel but I do not know how it works or how to use it.
View 3 Replies
Feb 2, 2009
I am trying to automate a process I do with a bank with vb.net. Basically I need to open a website and navigate through it (Automatically through the program obviously), enter a batch ID and enter a file path and name. For some reason when I get to the part where I need to enter the file name and path, it simply will not populate the text. I have attached a word document with screenshots and code. The only difference I can see, is that in the bank website's code the the input type for the file text is "FILE" rather than "TEXT" as it is for the batch id...
View 3 Replies
Dec 9, 2009
I have a program that needs to obtain a page's XML Source and then it reads and graphs data from it. I have built the program around just one sample of the xml but now i would like the program to get the xml source every time it loads/press a button ext... But i'm not sure where to start on getting the XML page source of a website.
View 19 Replies
May 2, 2011
I want to create a program that uses IPHlpApi.dll to get the tcp/ip of all connections. It successfully gets the local address and port, the remote address and port, and the status. Now I want to get the website title or url. So far I use this
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]....
View 2 Replies
Dec 29, 2009
Is it possible to have C# and vb.net in the same asp.net website? without separating in class libraries.
View 6 Replies
Jun 21, 2010
So right now, im working on a "log in" app, that logs into facebook.com
I have a
username textbox1
password textbox2
However I dont know how to click the "Login" on facebook.com
I can go to facebook.com/login.php and get that to work...
A few questions, how can i check to make a user is not logged in, and if they are, to press the "logout" option, and clear any cookies from facebook?
Here is what i had so far. just unsure how to check cookies or if someone is logged in.
If InStr(WebBrowser1.DocumentText.ToString(), "Not you? Click here.") > 0 Then
WebBrowser1.Navigate("http://facebook.com/login.php")
End If
[Code]....
View 5 Replies
Jan 21, 2011
I learned I can log into websites using the web browser control provided in VBE 2008 and have done so successfully on several different sites that I use daily at my job. I came across 1 site that uses a lot of pop up windows to navigate through it. The problem is, when I log in using the my web browser control, the pop up (which pulls up the internet explorer) brings up the login screen, I assume because of the site uses sessions. My work around is to attempt to login using the internet explorer. I'm having trouble getting it to work and unable to find answers in the forum (hope I looked in the right place). The app is not doing anything, can someone assist? Here is what I have:
[Code]...
View 6 Replies
Nov 27, 2009
im useing vs 2008 and am trying to log into a website via vb.net and a windows form, without much luck, wondering if someone could point me i the right direction
[Code]...
View 5 Replies
Oct 23, 2010
I originally posted this in the ASP.NET forum because I wasn't sure if this would be more of an ASP.NET thing or VB.NET thing. But, since I haven't received any responses, I thought to take my chances here.
I have an app that, among other things, utilizes a bunch of different portable command line apps. My app is downloaded by the user and then they choose to download whichever command line apps they'd like.
The problem, is that this can be anywhere from 70MBs of data to 900MBs. So that the users won't have to download additional files and to eliminate an additional step to use the app, I'd like to run the portable CLIs directly from my website.
View 2 Replies
Jul 23, 2010
I am new to creating websites for people on a money-earning basis.. I created my Dads website for my final year project, and he will pay me eventually but obviously I cant charge him as much as anyone else.I have just been to a trade show where I picked up 1 definite and 2 possible sites to do. The definite one is as follows:They want a site which:Has a catalogue for the customer to view, as well as being able to order products at a retail price.Has an administrative section with order tracking, catalogue management and page view stats.Has other basic pages such as Contact Us, Terms etc (all the usual).Enables customers to post comments about items, as well as manage their accounts (addresses, payment details etc).Is linked up to sage pay or paypal (or something similar).My task is to design this site from scratch and launch it for them. They already have the hosting sorted out, so no need to worry about that in the quote. I am planning on using .net and SQL Server, if this makes any difference.Basically what I would like is to get some quotes for what other people would charge if they were given the task.
View 2 Replies
Jul 19, 2010
I'm getting desperate here trying to find the problem, and I don't know where to start looking for it.
Here are the symptoms:I've noticed, that when a user logs on in the morning, he is then immediately logged off, then when he logs on again, everything is fine and he can work on the site.
Every once in a while, when the user clicks a link, the page takes a lot of time to load, but it never actually loads, and the user is thrown to the login page.Also, after an Exception has occurred in the website, the user is then thrown to the login page. It's as if the exception clears somehow the session.
[Code]...
View 5 Replies
Dec 4, 2009
In my code behind I'd like to be able to tell that I'm running my web site project in Visual Studio (either Debug or Release).I was considering testing for "localhost" but that's not perfect because we could be testing it locally on the server.
View 3 Replies
Nov 24, 2010
I have a website has already hosted on EasyCgi (suppose that it's called website1). I have to host another one (website2). So I created a folder called "website2" under the website1 root folder. then I FTP all the content of website2 to the "website2" folder.
[Code]...
View 1 Replies
May 4, 2010
I was wondering if it would be possible to block a website, such as "www.proxy.com"
Through Internet Explorer, not one of my custom ones of my form.
View 8 Replies
Jan 24, 2011
we need to add the texture image resources to the project. If you have not done so already, download the textures from [URL]I have not been able to link to any rkimble sites: Just wondering if it still exists / is in service?
View 1 Replies