Search Data From Other Sites

Oct 5, 2010

I want to search data from onther sites.

View 1 Replies


ADVERTISEMENT

Scrap Multiple Sites For Data?

Oct 24, 2009

I am trying to scrap multiple sites for data. thus i need asynchronus request. funny thing is my code brings the data back from the page but it doesnot show on my browser. I mean a msgbox will show the html content but when I try to update a div with the data nothing happens

RequestState Class
Imports Microsoft.VisualBasic
Imports System.Net

[Code].....

View 3 Replies

VS 2010 - Post Data To Different Upload Sites

Jan 23, 2010

I am creating a program that will assist users upload a file to a couple different upload sites. There will be RapidShare and Uploading. I want to keep the GUI clean and simple, so I do not want to use a web browser. I have not used much Post Data, but am wanting to use it for this job. What I want the program to do is after the user specifies a file, the program will automatically upload the file to the site.

Here is what I have so far:
Public Function MultiUpload(ByRef data As String, ByRef url As String) As String
Dim request As HttpWebRequest = DirectCast(WebRequest.Create(url), HttpWebRequest)
request.Method = "POST"
WebRequest.Create("[URL]")
request.ContentType = "application/x-www-form-urlencoded"
Dim postData As String = data
request.ContentLength = PostData.Length
request.ContentLength = PostData.Length
End Function

View 1 Replies

Multi-Threading - Collect Data Simultaneously From 4-6 Sites At A Time?

May 4, 2011

I have just written an app in VB 2010 with .NET 4.0 that contacts our field loggers to collect data via modem or IP. Originally it was written without threading, but now the requirements have changed and I need to collect data simultaneously from 4-6 sites at a time. I have never used threading, TPL, etc. Can anybody tell me where to begin so that I can concurrently run multiple collections?

View 6 Replies

VS 2010 WebBrowser - Multiple - Navigate To A List Of Sites And Retrieve Data From Them

Feb 14, 2010

Here's the situation: I need to navigate to a list of sites and retrieve data from them; I know how to retrieve the data, but I'm unsure of the best way to navigate to each of these sites.

[Code]...

View 7 Replies

Parse The "alexa Rank" And "sites Linking In" Stats From An Alexa Search Result?

Apr 30, 2010

I am trying to parse the "alexa rank" and "sites linking in" stats from an alexa search result.here is the html for both items:

rank:

<a href="/siteinfo/v7web.net#trafficstats">220,817</a>

links:

<a href="/site/linksin/v7web.net">61</a>

Obviously the url will be different in each search, however I need to parse the numbers from each result.

View 14 Replies

Create A Search Box Using VB That Will Search A Data Base?

Aug 28, 2011

how to create a search box using visual basic that will search a data base?

View 3 Replies

Use A Textbox As A Search Box To Search Through The Data On The Datagrid?

Jul 18, 2012

i have a project and i want to use a textbox as a search box to search through the data on the datagrid view on my form.

View 2 Replies

How To Get HTML Of Certain Sites

Oct 26, 2011

Sometimes, there are some text in a website which isn't in the html, meaning I can't retrieve it using a get webrequest. For example, in facebook, the list of friends in the 'stalker bar' isn't in the html. Is it possible to get this list of friends?

View 2 Replies

Useful Sites For .NET Programmers?

Feb 3, 2010

Lately I've had to do a bit of programming in VB .NET. It hasn't been too difficult, but the lack of proper documentation or good tutorials has been annoying me. I'm used to finding a lot of relevant info when I google a programming question, or term, or method name - but it's been more difficult with VB .NET. Anyone know of any good tutorial/documentation sites for VB .NET?

View 3 Replies

Blocking Web Sites In Browser?

Oct 10, 2009

I am creating a security program. One of its features is that it blocks inappropriate web sites. I might need help determining which sites are bad and which ones are good. If I could 'read' every work that is displayed in the browser then I could tell, but that may come later.

So, I'm looking for some kind of hook that will allow me to cancel the site if needed. It should be able to still be hooked in Safe Mode, as well... I'm sure that this is going to be an easy one!

View 7 Replies

Connecting Through Https Sites

Apr 26, 2011

I'm creating an API for a particular website. This API will be in the form of a referable DLL. I've tried the normal HttpListner but it errors when getting any data that is through https (basically anything specific about the currently logged in user). I also can't log in using it. My next attempt involved a hidden webbrowser but that is just as hacked up as it sounds (and very glitchy seeing as the WebBrowser likes to interrupt processes that are currently running with its events). I need a system that works and is fast and efficient (I know, I know, kind of a oxymoron). Does anybody know how to do this?I'm using VB.net so any .net code examples are acceptable.

View 2 Replies

Converting One Of Sites From Expression Over To VS?

Jan 24, 2011

Situation: Trying to learn Visual Studio and VB. I have been using Expression web to build web sites for several years. But not alot of programing within them.I have started a project using Visual Studio 2010 Pro and am working in VB. I am converting one of my sites from Expression over to VS and want to start using the Code Behind model for all of my web sites on this one and all future sites. I have a simple form that works on my old site but in the new site the I have no idea as to how to set up the Namespace's (System.Text and System.Net.Mail). Does it go on the page with the form or on the VB page? If someone has a good example of how to set up a form for emailing the results I would really appriciate looking at a copy of it.I use VB as I am the most familiar with it. I have no experience yet with Java or PHP.

View 2 Replies

Display The Sites That Have Already Been Viewed?

Mar 25, 2011

I'm creating a simple web browser. I have a combobox for the url address bar. I'd like the combobox to drop down and display the sites that have already been viewed. I think I can use the BeforeNavigate2 event to do this but I'm unsure how to use it.

View 3 Replies

Getting Souce Code From Web Sites

Jul 17, 2009

I want to make a program that will get you a source code from any webpage.[code]

View 4 Replies

Grabbing Info From Sites?

Aug 2, 2011

Ok so imagine there is a forumand when my program goes to this in web browser.

View 1 Replies

How To Read Files From Sites

Oct 10, 2010

I would like to make my program able to read the content of a *.txt file which I've uploaded on a free server (dmon) I've tried this:

"System.IO.File.ReadAllText("http://passby.dmon.com/test.txt ")"

View 8 Replies

VS 2008 Logging Into Sites?

Jan 10, 2010

For the past year-ish i have pretty much mastered the httpwebrequest function of programatically logging in to 1 of my websites to retrieve data, while it works well i was thinking about the webbrowser function, would i be better sticking to the webrequest route? it looks like the webbrowser requires much less code which is good lol can the webbrowser do everything httpwebrequests can?

View 1 Replies

VS 2008 Possible To Block Sites?

Aug 13, 2009

I'm making a program but I don't want people to abuse it, it loads a site and then refreshes it. People can abuse this by getting views for a game and what-not. What code can I use so that the webbrowser only loads the homepage and not some thing like

View 4 Replies

Way To Block Sites (before Navigating)

Mar 25, 2010

How to block sites with my own webbrowser in vb2008

so when i navigate to a blocked site it wont be opened...

not things like : c:windowssystem32etchost

but when blocked site start navigating webbrowser1.allownavigation = false , or webbrowser1.documenttext = "<font size=7><font color=red>This site isn't allowed</font>

View 4 Replies

.net - Sites Which A Similar Program Or Web-exam?

May 5, 2009

Are there any sites which a similar program or web-exam? The best example I can give is Auto-it's "Auto-it 1,2,3" found here.This is for an absolute-beginner,

View 1 Replies

How To Save Sites Into App Favourite Menu

Aug 5, 2011

I made a web browser and I wanna to add to it the favourite menu feature how?

View 3 Replies

Multiple Sites Using Same Href Everything Here Is Different / How To Code

Feb 5, 2011

I have an app that is going to sign into my social bookmarking sites...I already have accounts on all of these sites but I want to programmaticly click on these links but each link has a different name for the link.Each link does has the same inner text info in the HTML but different urls for the links <a href="submit.php?" rel="nofollow">Submit</a>...How can I program my app to locate and click on the link that has the <a href="" rel= "nofollow">Submit</a>..Is there a way to ignore the information in between the ""?

View 1 Replies

Accessing About 100 Sites At Once Use Classes Or Subs For Each Site?

Mar 1, 2012

I have about 100 websites that I am going to be accessing to scrape some data from (weather, time, etc). When I go to code these babies there will be an abundance of sub routines that I will be creating. They each are going to be accessing pretty much the same type of data.

Should I put them into a Class some how and acces them that way or should I just use Subs and then call them into the Document Completed section of my web browser to run the code? Still sort of confused on the whole Class vs. Sub Routine thing.

View 2 Replies

App Will Sign Up For Multiple Sites - BackgroundWorker Or WebBrowser?

May 16, 2011

I have an app that is needs to access multiple web sites and sign up for accounts. I don't want to run them one by one as this would be slow as christmas so I figured that I could setup some sort of background worker and put each process on it's own thread that way the app could run each sign up page at the same time. Would using background worker be the "BEST" option to use for this type of application requirement?

View 1 Replies

C# - Programmatic Way To Temporarily Block Specific Web Sites?

Jun 19, 2009

I need a way to programaticaly block and then later unblock specific websites based on their domain names. I only need to block browsers (so http & https would be sufficient, I guess?) but not just Internet Explorer, it should also work for anyone trying to run Chrome or Firefox too.

View 4 Replies

Cookies - HTTP Web Request Works For Other Sites, But Not One?

Jun 3, 2012

I'm writing a program in VB.NET, and I'm having trouble with my httpwebrequest code. I've used live HTTP headers for firefox to get the correct post data, but for some reason it won't login.The thing is, I've used identical code for another similar site (changing just the post data) and it works just fine.

Imports System.Windows.Forms
Imports System.Net
Imports System.IO
Imports System.Text

[Code]...

View 1 Replies

Create Multi Screen Resolution Sites In (vb)?

Nov 19, 2010

how do i create website which supports various screen resolution & Multi browser support (i.e 1024*768 ) and others using asp.net...i have developed website in asp.net (vb) my monitor resoultion is 1024*768 but when i try to access my site in other monitor having the resolution more than 1024*768 then the controls are unmanaged .... in the webpage.

View 1 Replies

FtpWebRequest: Can It Work With Online Storage Sites

Jan 22, 2012

Can FtpWebRequest work with sites like Box.com or MediaFire (I suppose it isn't FTP)?

View 9 Replies

Search For Data In .net?

Jun 25, 2012

search form that i want to create in vb.net , the project is an accounting program and the table of accounts and names could be very long so i need to search for specific names that begin with specific letters, i intend to create a form with a textbox and a gridview and when i write few letters in the textbox all the names that begin with these letters will be loaded to the gridview.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved