[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Jim Love

10/28/2002 9:40:00 PM

I am trying to get some of the functionality that I used to have with the
Inet control in VB6. I am using the HttpRequest object in VB.NET. I want the
operating system to dial up using the connections specified in IE. This is
how it worked with the Inet control. If this is not possible, what is the
workaround?


7 Answers

(Luke Zhang [MS])

10/29/2002 7:36:00 AM

0

AS a work around, you can call the Wininet API functions in your .NET
application. For example, InternetAutodial. For a reference, you can refer
this web page:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/w...
inet/establishing_a_dial_up_connection_to_the_internet.asp


Luke

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jim Love

10/29/2002 6:06:00 PM

0

Luke,
That link doesn't work. Could you check it and resend?


Jim Love

10/29/2002 6:29:00 PM

0

Is there any way to do this by setting up Dial Up Networking?


Jim Love

10/29/2002 8:45:00 PM

0

I'm trying to keep this an all .net soultion if at all possible. If the user
just has to set something up (like dial up networking), it's still OK


(Luke Zhang [MS])

10/30/2002 6:49:00 AM

0

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/w...
inet/establishing_a_dial_up_connection_to_the_internet.asp


or you can search with "Establishing a Dial-Up Connection to the Internet"
at msdn.microsoft.com.


Luke

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jim Love

10/31/2002 12:19:00 AM

0

Luke,
I have looked at the link. Using WinInet won't work because this will
eventually be made into a service. I cannot have any thing popup for user
interaction. The documentation recommends the WinHTTP API. Does this API
also have some way to control Dial Up? I know that IE will automatically use
the dial up and so will the Inet control (even in VB.NET). I don't
understand why the HTTPRequest, Socket, WebClient etc.. will not default to
that connection.


(Luke Zhang [MS])

10/31/2002 3:58:00 AM

0

WinHTTP API also can't control the dial up. Some of these components are
desgined for enterprise application which should be work on intranet or
they work on a high layer, for example TCP/IP, and doesn't need to care
lower layer.


Luke

(This posting is provided "AS IS", with no warranties, and confers no
rights.)