I am righting an application that will grab some text from a webpage.
The text will we filtered using a regexpression. No problem there.
My problem is that to access the page I want to grab inf...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21066101.html
Zones:
C#Date Answered: 07/26/2004 Grade: A Views: 27
Hello,
I have an asp.net site written with vb.net. I am utilizing paypal for processing of payment. I am sending the information through an html form to paypal with all the information. The prob...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21799507.html
I'm trying to write a program that checks my email automatically throughout the day. If you go to this webpage: http://www.mail.ixpres.com/src/login.php you see a login screen.
How do I fill i...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21934698.html
Zones:
C#Date Answered: 07/28/2006 Grade: A Views: 0
Hi All,
I am trying to use the WebRequest object to write a load testing application in C# .Net 2.0
I believe that I am experiencing throughput problems relating to releasing the ports once t...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_CSharp/Q_22627335.html
Hello, I am using the following code to check if a website url exists:
1 Dim URL_Object As New System.Uri("http://" & UrlInput)
2 Dim URL_WebRequest As System.Net.WebRequest
3 ...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_22884594.html
i have the following code in my aspx file with page language written in vb. the following code is as follow
Sub Button1_Click(sender As Object, e As EventArgs)
' more code to initialize ip...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20432160.html
Zones:
.NETDate Answered: 08/12/2003 Grade: B Views: 0
I was recently creating a program which moved from web page to web page through a site and realized that through the process, I needed the source code in certain scenarios to keep the user moving.
...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20444278.html
Zones:
.NETDate Answered: 01/09/2003 Grade: A Views: 0
I have this code:
Private Sub GetHTMLSource(ByVal url As String)
Dim req As WebRequest = WebRequest.Create(url)
Dim res As WebResponse = req.GetResponse()
Dim iTotalBu...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21344542.htm...
I'm using my application to test security in our web. Only admin password should have access to certain pages and so on..
I was hoping that I could test my web using webrequest, but when I use t...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21344787.htm...
I have this class.
Public Class HTMLCodeDownloader
Public url As String
Private thisThread As New Threading.Thread(AddressOf download)
Private InDownload As Boolean = False
...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21345905.htm...