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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: denoxis
  • Content: Threads
  • Order by date
  1. denoxis

    new to IIS6 - How to setup a shared SSL

    I know some hosting companies let you use their ssl certificate through a domain. Some of them give you the convinience of using a subdomain i.e. https://yourcompany.hosting.com while others just give you a directory access: https://www.hosting.com/yourcompany In both cases, the URLs are...
  2. denoxis

    IIS6 won't log alias domains as referer during redirection

    Hi, I was hosting a web site on a shared environment before (Windows 2000/IIS 5)Since the domain name was long, I also had similar domain names pointed to the same IP. For example, my original domain was abcd.com, and I also have abcd2.com and abcd3.com pointed to the same IP. Then I was...
  3. denoxis

    SELECT works but not the UPDATE using LIKE % ?

    Hi, I have this strange problem. In Access 2002, I have linked tables to SQL2000. Basically I can do any kind of query on those tables just like they're an Access table. The other day, I needed to update the fields on this table: product_sku text(50) product_available yes/no...
  4. denoxis

    Any way to read a secure cookie?

    Hi, I have this e-commerce site. I have been writing customer IDs to a cookie, so I can help those people to log in easier. However, I have written the cookies on the secure side with secure property set to True. Therefore I can only read them from the secure side (HTTPS). Now I also want to...
  5. denoxis

    XMLHTTP with POST method doesn't work

    Hi, I have been working on a website that utilizes this XMLHTTP object a lot. Examples look pretty easy, except the one with "POST" method. "GET" works fine, but the following example doesn't work: xml.Open "POST", "http://www.someAddr.xx", False...
  6. denoxis

    reading remote file with POST method

    Hi everybody, I'm working on a solution that should include some remote files from another URL. This solution will be platform independent, and I already know how to do it with ASP. Using PHP, I can dump the result of the remote script with the functions like include() or fopen(). What I want...
  7. denoxis

    Help, I need a Ticket System

    Hi, I was working on a ticket system by myself for the support department of a company. Currently, visitor submits a form, database records it and assigns a ticket number, and sends a message. But we can't track them yet, because support people use Outlook. 1) In order to build my own system...
  8. denoxis

    Closing the objects

    Hi, My server admin warned me about the server resources due to the high traffic. Two main thing, DLLHOST.EXE and INETINFO.EXE are the main resource eaters. He asked me to double check the site if there is any open objects that are not closed properly. I do like this in my code, would it...
  9. denoxis

    SELECT question...

    Hi, I have a table that keeps which item from which order has been dropshipped by who. Something like this: CREATE TABLE [dbo].[new_tbl_drop_ships] ( [drop_ship_id] [int] IDENTITY (1, 1) NOT NULL , [vendor_id] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [order_id] [int]...
  10. denoxis

    Cint() Clng() - learned in a hard way

    For some reason I always use Cint() function to convert the number-looking strings. I always think that "int" is same as the one in SQL. The other day, one of the web site blew up after a year: Overflow: 'Cint' The increasing number in the database was passed by querystrings. In the...
  11. denoxis

    PayFlow Pro anyone?

    Currently I'm using PayFlow Link, Verisign's secure but simple payment authorization solution for e-commerce sites. For PayFlow Pro, I will go ahead and install some COM to the web server. In this case I need to know how to program that thing with ASP. Has anyone done it? Verisign's web site...
  12. denoxis

    HELP: Cannot connect SQL 2000 remotely

    Hi there, I have 4 different SQL 2000 servers located on 4 different boxes and geographic locations. They serve data to their web servers (probably installed on the same machine) I don't have physical access to these machines, so I use ODBC connection via Enterprise Manager and MS Access 2000...
  13. denoxis

    After login redirect the user back - what's wrong?

    Hi there, I have secure pages, and a login screen. If the user is not logged in and goes any of these secure pages, I redirect them to the login page with a querystring parameter "backto". That parameter holds the page name they will go after they login. It's easy until this point...
  14. denoxis

    Star shape in the combobox

    Hi, I saw a website the other day, and they have that nice star shape (not * character) at the very first option of the comboboxes. I checked the source and there was 2 strange characters representing that star shape. I didn't notice any different fonts. Do you know how this is done? TIA
  15. denoxis

    Type mismatch - IIS or SQL problem?

    Hi, I don't know if you have ever had this problem, little strange. I have a database driven website (Windows 2000 + MSSQL2000). I have another database driven website (Windows 2000 + MSSQL 2000). I have the exactly same table on two different databases (Table X). Datatypes of the 3 fields are...
  16. denoxis

    Sending Login/password thru ASP

    Hi, I know we can post and read data using XMLHTTP object to/from specific URL. However, when you post a data to a password protected directory you have to enter it manually. Is there any way to send this login/password as a part of XMLHTTP process? TIA
  17. denoxis

    Need help for my RunSQL function

    Here is my RunSQL function that allows me to run SQL statement anywhere easily. My problem is the way to identify the statement type i.e. SELECT, UPDATE or INSERT. Because I want to return the affected records if it's update or insert, and also I want to return the recordset and CLOSE the...
  18. denoxis

    Encrypted ASP doesn't work - misplaced @ command?

    Hi, I tried to encrypt my 70K-long ASP code. It's pure ASP, beginning with <% and ending with %> No HTML or anything. When I encrypt and upload it, web server gives &quot;Page Command Out Of Order&quot; error at the first line. &quot;@ commands must be at the first line&quot; it says. First...
  19. denoxis

    Command line scripting

    Hi, I need to do some batch jobs from the command line in XP Pro. Some of my BAT files from Windows 9x are not compatible with XP especially the ones play with date/time. What I need is, I want to reach a file named with the date everyday (i.e. 01_02_2002.txt for today) The one I found was for...
  20. denoxis

    Missing dot in message body sent via CDONTS

    Hi, I'm not sure If I have mentioned this one here before. I generate some text message and send them via CDONTS. The thing is, message appear with the dots removed. For example, <a href=abc.htm>abc.htm</a> may appear like this <a href=abc.htm>abchtm</a> or like this <a...

Part and Inventory Search

Back
Top