Logging IPs That Visit A Site?

Jan 23, 2012

Im currently writing a code that can log ALL of the IP(')s that view a site. I kinda want a code that goes something like

Timer1.tick
textbox1.text = textbox1.text + loggedips.

Or something similar is fine also.After that I want the logs to be saved into a txt file, (I can do this part)Then the user will enter a new site to be logged. Once that is done that will also be saved into a txt file. Etc....Then finally if any IPS that are the same show up in the text files then the user will get that IP in a textbox.

View 11 Replies


ADVERTISEMENT

Open Site When Click (Visit Site Button)

Jan 8, 2010

i want to know how can i code my button when i click it will open my site ... i Think i was clear.

View 1 Replies

VS 2008 Logging Into A Site With WebBrowser?

Mar 29, 2009

I'm trying to use WebBrowser to remotely log into a site and perform a basic action on the site.I'm running into problems though so maybe you brilliant people The first step is logging in to the site. Here's the form code for the login:

<form action="" method="post" id="loginform">
<input type="text" name="username"/>
<input type="password" name="password"/>

[code].....

View 2 Replies

Logging Internet Explorer Visited Site?

Dec 2, 2009

i want to now how to start creating program that can record in a text fileor in a listbox all sites visited by internet explorer or firefox in any pc.

View 2 Replies

Visual Studio Logging In/ Logging Out?

Feb 17, 2012

Using visual studio (Winforms) with sql server (R2). If you can login by inserting the correct values in the textfields (vb.net) that is connected in the database . How do i code the log out?

View 2 Replies

Build An Application That Will Login To A Web Site, Navigate The Site And Download Files?

Mar 26, 2010

I am not sure if this is possiable but I am looking to build an application that will login to a web site, navigate the site and download files. I would like to do this all in code and able to run multiple instances of the program to get information from many different web sites. Is something like this possiable in VB.net?

View 3 Replies

VS 2008 - Threaded Ping - Click Another Site While Its Still Pinging Them It Doesn't Wait Before It Switches Site

Feb 9, 2010

Ive got an app that holds a list of site we have, At each site there are a few devices. The idea is when they click on a site all the details for the site are loaded and then a second thread sits and pings each device to see if its live. Im trying to do this in a seperate thread so if they click another site while its still pinging them it doesn't wait before it switches site. This all seems to be workling fine except if you click through the sites quickly, when you do that it will eventually come up with

Quote:

{"Collection was modified; enumeration operation might not execute."}

The error flags up on the "Next" line in "ThreadedPing"

Thread stuff

Public Sub ThreadedPing(ByVal dt As DataTable)
Try

Dim dr As DataRow

[CODE]...

View 2 Replies

User Can Change The Update Site With Out Building The Program Again With The New Site?

Oct 13, 2010

When i publish my program i choose to let the application check for updates via a website and if their is one update automatically when the program starts. Is their a way were on the main user form i can make it so that the user can change the update site with out me building the program again with the new site. I want to do this becuase the site i use goes down alot so when i changed the update url no one was able to download the update for the new update server.

View 16 Replies

Internet Explorer - User Click A Command Button To Open IE To A Financial WEB Site And Download Informaion From The Site?

May 19, 2011

I'm deploying a VB.Net app (VS 2010 Pro) that requiers the user click a command button to open IE to a financial WEB site and download informaion from the site. The app works fine in every detail when installed on the development computer. But, on the target computer when the command button is clicked an unhandled exception occurs which says: System.IO. FileNotFoundException:File Not found.My code behind the button is Shell("C:Program Files (x86)Internet Exploreriexplore.exe www,fidelity.com",AppWinStyle.NormalFocus)

This works fine on the development computer. Do I need a way to code this as a relative path? If so,can you tell me how this is done?Throughout the app I have written relative paths to needed files using paths like (Open(Environment. GEtFolderPath (Environment. SpecialFoldder.Desktop) + "File Name). They all work fine when deployed.

View 7 Replies

Label Staging Site To Prevent It From Being Used As If It Were The Production Site

May 18, 2012

I'm being asked to maintain several internal-only web apps for my company. For testing, after making my changes, I've created some staging sites which make use of separate databases. As such, if my users were to mistakenly use this site as if it were the production site, they may enter important data and wonder where it "disappeared" to thinking it was the production server.

I'd like to create a big banner of some sort across the top of the staging site (which ONLY appears on the staging site) to remind my users that they are on the test site. I'd like recommendations on the best way to do this, with the following considerations:

IDE: Visual Studio 2008
Server: Windows 2003 with IIS 6
Language: VB.NET 2.0

View 2 Replies

Make The Webbrowser Visit More Than One Page?

Jun 27, 2011

For example I want it to go to one page then when it finishes loading go to another. So I want to to go one from one from one all with the click of a button. Is this possible?

P.S: Another question, just to kill two birds with one stone, how do I make it so whatever is written in a textbox is added to the browser url. For example if the users write 'xyz' that it will add it to Google.com/ as an example and make it Google.com/xyz?

View 17 Replies

The Timer Is Not Waiting That Time After The First Visit?

May 7, 2011

I have a basic question about timers, that I can't answer myself. It's annoying me. My code is made to visit a website every X seconds. There are two problems.

I Set the interval for 30 sec and the first visit should be right now, not after 30 seconds.
After that, wait 30 sec and navigate to another one (in a listbox). The problem is that the Timer is not waiting that time after the first visit.[code...]

View 2 Replies

VS 2008 Visit Blocked Websites?

Mar 8, 2011

i was wondering if there is any way to visit a blocked website using visual basic 2008. i want to use during school in programing class.. just to let you know my teacher said he will let us get by with it, if we could even make something like this.

View 8 Replies

Login Directly From One Site Another Site?

Oct 21, 2010

when i am surfing in one site,i want to see the another URL...without going URL directly access the login......for example this is the login page url i want know automatic login to this page [URL]

View 1 Replies

.net - Does For Each Acting On A List Always Visit Elements In The Same Order

Nov 4, 2010

Will the elements in myList always be visited in the same order with a For Each loop (assuming I don't alter the list)?

Dim myList As New List(Of MyElement)
....
For Each myElem As MyElement In myList
' yadda yadda yadda
Next

View 1 Replies

VS 2008 Get Webbrowser To Visit Websites Using For Each Loop?

Apr 14, 2010

I want webbrowser to visit multiple urls that I filled in List(of String). I use a for each loop to iterate over the List, but the webbrowser only show the last url ask.com. I want webbrowser to visit and display all the urls.

Dim UrlListArray As New List(Of String)
UrlListArray.Add("http://www.google.com")
UrlListArray.Add("http://www.yahoo.com")

[code]....

View 4 Replies

Build A Small Application That Will Automatically Visit A Few Websites?

Jun 19, 2010

I'm trying to build a small application that will automatically visit a few websites. The list of the websites I want to be stored inside a txt file like:

website1.com
website2.com
website3.com

and when I press the "Start" button, my application will open the websites from the txt file, one by one with a delay of 10 or more seconds before loading the next website, in a webbrowser control.

View 6 Replies

Forms :: Visit List Of URLs While Moving Progress Bar

Jun 2, 2010

I'm looking to be able to open a .txt file (with sites 1 per line) and visit all of those sites silently while moving a progress bar.

View 4 Replies

Get Components Info When I Visit Any Folder Live Popup?

May 5, 2011

Im new on vb.net 2010 coding. i am making a project for my college.

How i can get components info each and every time i visit any drive or folder on my computer...

An example: such as when i go to C drive a pop up will be appear that how many files are there and what are the size of those files if files are exist.

View 2 Replies

VS 2008 Multithread A Browser (visit Several Sites At A Time)?

Aug 16, 2009

I currently have a browser go through the same list of sites one by one and gather updates. The problem though this takes awhile. Can a browser be multithreaded, (so it could visit several sites at a time) and if so would this take up a lot of server resources?

View 2 Replies

Write A Program To Manage Pets And Vet Visit Information?

Nov 10, 2010

I want to write a program to manage my pets and vet visit information. I have areadycreated a database but I don't like the interfac

View 2 Replies

Navigating - Program Visit A Website And Basicly Filling Out A Text Field?

Apr 29, 2010

Would it be possible to make my program visit a website and basicly filling out a text field and using the submit button in a form?For example; I have a text field named "Field" in my webpage, and I want my Visual Basic 2008 application to visit that page, and automaticly fill out that field named "Field" with a string I gave my application, and next to click on the submit button.The purpose for this is because I want that the users of my application can post feedback on my webpage. I was looking for something like a MySql client but it's best if I would encrypt/hide the protected information such as table names or MySql passwords.And I believe that these users need to have specific MySql drivers installed to use it. So this idea sounds better. So, is there a way to navigate trough a website like this?

View 4 Replies

Making A Project Which Stores Patients Name, Reason For Visit Etc In A Text File Using Filestreaming?

Jan 18, 2012

I'm using VB 2008. I'm making a project which stores patients name, reason for visit etc in a text file using filestreaming like:

Dim fs As New FileStream("H:/ICS3U Final Project/Betolli.txt", FileMode.Append, FileAccess.Write)
Dim textfile As New StreamWriter(fs)

Is there any way the doctor can literally open up the text file by a click of a button. I don't mean like : read all lines or a STREAMREADER.I want to physically be able to open the text file which is located on the computer harddrive so the doctor can read it.

View 9 Replies

Visit Webpage Of "Crystal Phonebook"?

Jan 23, 2010

Today i finish my "Crystal PhoneBook"Reason of my this Thread Giveme advise And Upgrade me

Visit my Webpage of "Crystal Phonebook" you can also download to here[URL]..Uploading in Download.com is in Progress Dont Scared With My Silly Example.

View 1 Replies

.net - Logging Off On ASP.NET 3.5 Website?

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

ASP.net Web Server Not Logging On

Apr 20, 2012

I have inherited a ASP.net site, and I've made some changes too to some of the VB code and CSS, and have hosted it on a FTP. It uses an SQL DB to allow users to log in and calls stored procedures.The site complies with no errors, and allows me to log in as a user, and can works perfectly on testing.However, once uploaded to the FTP, it no longer allows me to log in as a user. It hangs for a while, and then returns a message saying that the password is wrong, despite it being correct. It doesn't throw an error message, and I think I've narrowed it down to something to do with the Web.config file, but I'm at a loss as how it's not working, especially with the lack of error messages being thrown.[code]

View 2 Replies

C# - Is Passive Logging Possible In .NET

Mar 26, 2009

I was wondering is there a way anyone knows of to "inject" a logger into an application such that it passively monitors the thread and quietly logs processes as they occur without having to do things like: [Code] It would then monitor everything that goes on inside of that method including passed in arguments along with method calls and values passed into those methods, exceptions that occur etc. Has anyone implemented something like this in the past? Could it even be implemented? Is logging in this fashion just a pipe dream?

View 6 Replies

Logging From A Class?

May 23, 2012

I have a class for serial communications (call it CSerial), based on a property value (CSerial.LogLevel), I'd like to produce various levels of logging information about data sent and received to the serial port.Given that it's a reusable class, there's no way of telling whether the log data should be sent to the console, a text box, a file, etc. This would be determined by the application using the class, so I can't write all of the different output options into a method in the class.Question:What's the best way to implement this? I have some ideas:1. Create a Log method and then "override" it in my main application to handle the most suitable form of output? Can I "override" a method as part of an instance? Or do I need to create a new class that inherits my original one, override the method there and then create an instance of my new class?

View 3 Replies

Logging In 0 Httpwebrequest

Mar 22, 2011

can any one see any thing wrong with my code. I swear it did work once or twice. * code now removed as updated below

View 2 Replies

Logging Into A Website

Jan 8, 2009

Im trying to login to my website with vb.net (without the use of java script).webbrowser.documents.forms(0).submit..All i can find on the internet is to use that there to click the login button but it doesn't work.I also found this for filling in the login forms but im having trouble understanding how it works.[code]So if anyone could explain to me how to fill a form or how to click a submit button.

View 1 Replies







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