Advertisement

1 - 10 of 37 containing alltags:("webrequests") (0 seconds)
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...
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...
Zones: ASP.Net ProgrammingDate Answered: 04/04/2006 Grade: C Views: 0
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...
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...
Zones: MS Visual C#, .NET Framework 2.xDate Answered: 07/12/2007 Grade: A Views: 4
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 ...
Zones: ASP.Net ProgrammingDate Answered: 12/11/2007 Grade: A Views: 0
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...
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. ...
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...
Zones: MS Visual BasicDate Answered: 03/10/2005 Grade: A Views: 0
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...
Zones: MS Visual BasicDate Answered: 03/10/2005 Grade: A Views: 0
I have this class. Public Class HTMLCodeDownloader     Public url As String     Private thisThread As New Threading.Thread(AddressOf download)     Private InDownload As Boolean = False    ...
Zones: MS Visual BasicDate Answered: 03/10/2005 Grade: A Views: 0