Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by warche

  1. warche

    My web browser wont resolve domain names

    I've looked at the IPconfig of my computer that works and the one that doesn't. The only differences that I see is the one that works has DNS Servers: 192.168.1.1 DHCP Enabled: Yes It also has a listing for DHCP server. I went into the TCP/IP properties, and I couldn't find any where to...
  2. warche

    My web browser wont resolve domain names

    Yeah I'm using a router. My other computer works and it has 192.168.1.1 for DNS servers. IMy connection is Sprint DSL through their modem to a LinkSys router. I have 4 computers hooked up to the router. This is the only one that is giving me troub;e.
  3. warche

    My web browser wont resolve domain names

    This is what I got Windows 98 IP configuration HostName: Destruction DNS Servers: Node Type:Broadcast NetBIOS ScopeID: IP Routing Enabled: No WINS Proxy Enabled: No Net BIOS Resolution Uses DNS: No Ethernet Adapter: Description: VIA PCI 10.100Mb Fast Ethernet Adapter Physical Address...
  4. warche

    My web browser wont resolve domain names

    I'm just trying to browse the internet with IE and it doesn't work unless I put in the IP address. I'm not really sure what you mean by either of your questions. I always thought that the browser handled getting the correct IP, but it doesn't work on any browser I have on my computer. I am...
  5. warche

    My web browser wont resolve domain names

    Basically the problem I have is that I can view web pages by putting http://616.58.234.187 in the address bar, but www.hotmail.com doesn't work. I can ping fine. I generally use Internet Explorer 6.0.2800.1106 to browse the internet, but I have the same problem with Opera. I've run Spybot...
  6. warche

    * Please advise on what ASP.NET book to purchase......

    I've got VisualBasic.NET Developer's Guide to ASP.NET, XML, and ADO.NET It's working OK for me. Of course, you have to be using VB for it to work for you. They don't go real in depth on the individual properties and methods(that would take quite a bit), but they at least list them. It has...
  7. warche

    session issues

    This worked for me. ASP.NET does not like render tags. Instead use response.write(). Make sure you use the parentheses. I don't know why your codebehind wasn't working, since I didn't see all the code. global.asax ------------------------ <script language=&quot;VB&quot...
  8. warche

    File upload via ASP using forms

    If you are still having trouble try this link. It's about the best you can do outside of getting an Active-X component like ABCUpload or ASPUpload. They made it easier in ASP.NET, but that probably won't help you...
  9. warche

    Access database memo field and printing

    Memo fields can be up to 2 GB, so the server only allows you to retreive the value once. In your first set of code you referenced the Memo field twice. The first time it wasn't null but the second time it was.
  10. warche

    Capturing Oracle DB error in ASP

    Hi Spook try this. before you connect on error resume next line 22 if err.number <> 0 then 'there is an error redirect code end if
  11. warche

    text file on my hosing providers webserver

    What is nessacery to open, modify and save a text file on my hosing providers webserver from my computer using Visual Basic? I have ftp access. Thanks in Advance
  12. warche

    Can I use Direct Play with Visual Basic to create a sort of Battle.net

    I have created a game in Visual Basic 6.0 that I would like to make two-player over TCP. I know I can use Winsock to connect two computers whose users know each other's IP addresses, but I would like to create a lobby online that would enable users to find each other and then have the connection...
  13. warche

    Using ADO to connect to DB on remote server from EXE

    I'm trying to connect to a database that I have online in a VB .EXE that I am making. I can open the connection to my database using ASP from a Web Browser as normal(I'm using WEBSITE & DATABASE instead of real names): Set DB = Server.CreateObject(&quot;ADODB.Connection&quot;) DB.Open...

Part and Inventory Search

Back
Top