Search:

Type: Posts; User: vbsquare

Page 1 of 5 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    0
    Views
    816

    IIS Admin Suite

    Hi all,
    As an IIS admin myself, I long for an easier way to administer my server and users. Ideally, this should be done over the web.

    Now there is the IISAdmin site, but I want more features and...
  2. Replies
    1
    Views
    432

    Hi all, I just want to ask what you guys...

    Hi all,
    I just want to ask what you guys currently use. When writing any kind of system would you normally choose a database product for your backend or a flat file?

    It's just my CS course...
  3. Thread: PHP Web Site

    by vbsquare
    Replies
    4
    Views
    454

    Hi, I've just put up a new PHP web site with...

    Hi,
    I've just put up a new PHP web site with over 30 tips, 5 articles & a nifty discussion board. Take a look at http://www.phpsquare.com/
  4. Thread: PHP Anyone?

    by vbsquare
    Replies
    0
    Views
    381

    If you're interested in learning PHP, then you...

    If you're interested in learning PHP, then you might want to subscribe to a free weekly PHP newsletter that contains tips, articles, news, links and information related to PHP. To subscribe send an...
  5. Replies
    233
    Views
    9,540

    I don't believe what I do because I am scared of...

    I don't believe what I do because I am scared of what might happen to me if I don't believe. As I said, the reason that I believe in God is because of the experiences that I have had.

    I totally...
  6. Replies
    140
    Views
    15,042

    The problems I had were with the AMD K6/2 on...

    The problems I had were with the AMD K6/2 on Windows 95. You need to install a patch otherwise Windows starts booting and comes up with Windows Protection Error. I've also had other problems.

    To...
  7. Replies
    140
    Views
    15,042

    My 10Mb Network consists of: Windows NT 4...

    My 10Mb Network consists of:

    Windows NT 4 (PDC)
    Cyrix 6x86 110Mhz
    78MB RAM
    8GB Seagate IDE HDD
    CD-ROM
    33.6K Modem

    Windows 2000 Advanced Server
  8. Replies
    233
    Views
    9,540

    For me, my personal proof exists within my own...

    For me, my personal proof exists within my own experience of God. My personal proof convinces me that God exists, but my personal proof may well not extend to convince others that God exists.

    I'm...
  9. Thread: type mismatch

    by vbsquare
    Replies
    2
    Views
    346

    These places are pretty handy: ...

    These places are pretty handy:

    http://www.vbsquare.com/internet/
    http://www.activeserverpages.com
  10. Thread: sending mail

    by vbsquare
    Replies
    3
    Views
    399

    You really should use something a little more...

    You really should use something a little more professional than that, such as Microsoft's Collabrative Data Objects through ASP:

    <%
    Set CDO = Server.CreateObject("CDONTS.NewMail")
    CDO.Subject =...
  11. Replies
    4
    Views
    477

    Hi, To make a text file use this code:

    Hi,
    To make a text file use this code:

    <%
    Set FSO = Server.CreateObject("Scripting.FileSystemObject")
    Set File = FSO.CreateTextFile("pathtofile.txt")
    File.Save
    %>

    To read a file line by...
  12. Replies
    0
    Views
    344

    There are several ways in which you could do...

    There are several ways in which you could do this. Firstly, you could use the querystring like this:

    <a href="mypage.asp?username=sam">

    or you could use the session object:
    ...
  13. Replies
    3
    Views
    454

    Windows ME hasn't yet been released although you...

    Windows ME hasn't yet been released although you may be running a beta copy. But Windows ME was designed to be a desktop operating system, not something that you would run a web server on. Windows...
  14. Replies
    2
    Views
    407

    OK. Use my modWinInet.bas found in this thread: ...

    OK. Use my modWinInet.bas found in this thread:
    http://forums.vb-world.net/showthread.php?threadid=21241

    Now goto the search pages that you want to search (eg http://www.yahoo.com) and look at...
  15. Thread: Learning ASP!

    by vbsquare
    Replies
    5
    Views
    764

    If you can get NT because when I tried developing...

    If you can get NT because when I tried developing ASP with PWS 1 every time you make a type and ASP throws up a script error PWS crashes out.
  16. Thread: CDONTS

    by vbsquare
    Replies
    2
    Views
    558

    Yeah, you do need to have it installed. If you...

    Yeah, you do need to have it installed. If you download the NT Option pack for Windows 95/98 then that will probably include it.
  17. Replies
    11
    Views
    868

    Well using HTTP_REFERER gives a host name. What...

    Well using HTTP_REFERER gives a host name. What about HTTP_HOST? I'm guessing here. Here is the script that I use to get all the header variables:

    <%
    For Each Item In Request.ServerVariables...
  18. Looks like you've got pretty much everything you...

    Looks like you've got pretty much everything you need there. Here are my top VB sites for learning:

    http://www.vbsquare.com
    http://www.vb-world.net
    http://www.vbweb.co.uk...
  19. Thread: Learning ASP!

    by vbsquare
    Replies
    5
    Views
    764

    Oops! In ASP all variables are Variants, and you...

    Oops! In ASP all variables are Variants, and you can't declare variables as a specific data type.If you do then ASP will throw up an error. For more help check out http://www.vbsquare.com/internet/...
  20. Replies
    11
    Views
    868

    Well the majority of people accessing pages won't...

    Well the majority of people accessing pages won't have a host name, simply an IP address. If you just want specific servers to access your pages then I think that REMOTE_HOST will give you what you...
  21. Replies
    2
    Views
    300

    Finally they all come as standard. No more option...

    Finally they all come as standard. No more option packs to mess around with! I think that you'll love playing with Win 2K. But just a note to say that MTS is now renamed as Component Services and IIS...
  22. Replies
    3
    Views
    526

    For pictures I think that you would need to...

    For pictures I think that you would need to either perform a binary transfer or perform a bit of a hack.

    Open the picture file in binary format in VB. Send the contents of the file in the same way...
  23. Replies
    11
    Views
    868

    The following variables will return the name of...

    The following variables will return the name of the server:

    HTTP_HOST
    SERVER_NAME
  24. Thread: mac address

    by vbsquare
    Replies
    1
    Views
    428

    Check out this web site: http://www.mvps.org/vbnet

    Check out this web site: http://www.mvps.org/vbnet
  25. Replies
    11
    Views
    868

    Hi, A great place to look for code that you want...

    Hi,
    A great place to look for code that you want like this is on http://www.mvps.org/vbnet
  26. Replies
    7
    Views
    760

    This is what i've got and it still isn't working:...

    This is what i've got and it still isn't working:

    CREATE Procedure sp_mdLoginUser
    @Username char(50)
    As
    DECLARE @UserID int
    If (select count(*) from Users Where Username = @Username) >= 1...
  27. Replies
    7
    Views
    760

    If you're refering to the SQL Stored Proc that I...

    If you're refering to the SQL Stored Proc that I posted, then it simply returns a value of 0 each time even when correct details are passed.

    Any ideas?
  28. Replies
    7
    Views
    760

    Does anyone know how to write a SQL Server stored...

    Does anyone know how to write a SQL Server stored procedure that will check if an item is in a database? Here is what I have at the moment, but it doesn't seem to be working:

    CREATE Procedure...
  29. Replies
    15
    Views
    4,186

    You can actually get ICQ98 through a firewall....

    You can actually get ICQ98 through a firewall. It's just kinda tricky...
    If anyone wants to know how using Deerfield's Wingate product email me - it took me a lot of hours to get it working.
  30. Replies
    21
    Views
    1,325

    Yeah thanks - I just sent you a reply.

    Yeah thanks - I just sent you a reply.
  31. Replies
    21
    Views
    1,325

    If you want some cheap, well specified hosting,...

    If you want some cheap, well specified hosting, there may be a place for you on my server. If you're interested, let me know at sam@vbsquare.com
  32. Replies
    21
    Views
    1,325

    Hi Scott, The upload component you mentioned is...

    Hi Scott,
    The upload component you mentioned is currently not supported, but we intend to purchase a file upload component soon which will be available on our web server.

    If you would like a...
  33. Replies
    5
    Views
    475

    Sounds like you've had a bad time. I have to...

    Sounds like you've had a bad time. I have to agree that planning is essential to making an upgrade to Win 2K, and making sure that you understand all the parts of the new OS that you are going to be...
  34. Replies
    5
    Views
    475

    Yes! No more option pack. Win 2K comes with IIS...

    Yes! No more option pack. Win 2K comes with IIS 5, SMTP, FTP and NNTP services. And what's better, you can change from being a PDC to a BDC or a standalone server without having to reinstall Windows!
  35. Replies
    21
    Views
    1,325

    Hi, I'm currently deploying a web server running...

    Hi,
    I'm currently deploying a web server running Win 2K Advanced Server with Perl, ASP and SQL Server support. The machine is a PIII 500, 256MB RAM, 2x8.4GB (1 is mirrored). If you're interested in...
  36. Replies
    5
    Views
    475

    Hi there web programmer people. I'm very...

    Hi there web programmer people.
    I'm very interested to know how many of you have either migrated to Windows 2000 or are in the process of/going to do soon? I am rolling out a webserver running Win...
  37. Replies
    11
    Views
    554

    Oops! Sorry, I see what you mean now :)

    Oops! Sorry, I see what you mean now :)
  38. Replies
    11
    Views
    554

    Hi Scott, I think you'll find that these guys...

    Hi Scott,
    I think you'll find that these guys are running all their stuff on Linux, so no ASP for you I'm afriad.
  39. Replies
    0
    Views
    333

    Hi, I'm looking for a webmaster to run a site...

    Hi,
    I'm looking for a webmaster to run a site that I'm working on that allows visitors to submit code etc to an online db. Rather like VBCode.com etc but this one looks a lot better and supports...
  40. Replies
    0
    Views
    376

    Hi, I'm looking for a webmaster to run a site...

    Hi,
    I'm looking for a webmaster to run a site that I'm working on that allows visitors to submit code etc to an online db. Rather like VBCode.com etc but this one looks a lot better and supports...
Results 1 to 40 of 177
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width