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 Mike Lewis 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: sut
  • Order by date
  1. sut

    Problme in accessing request.servervariables("http_referer") on Mac

    Hello, I am using the Request.ServerVariables("HTTP_REFERER") as follows in "index.asp". 'if instr(request.servervariables("http_referer"), "index.html") =0 or request("userid")="" then Response.redirect "index.html&quot...
  2. sut

    How can I sort an array which contains data of "Dates"

    I store monthly HR, IT & General announcements in 3 DBM files. I retrieve data into 3 hashes, (key, value) pair stores (id,(date&announcement)) I want only latest 10 announcements irrespective of the announcement type i.e.HR, IT etc. So what I do, I retrieve the dates into 3 arrays. So I...
  3. sut

    How can I sort an array which contains data of "Dates"

    Thanks raider2001 for your help. What I want to do is something like this. I am storing data in 3 hashes depending on the result type. the (key,value) pair stores "key" and "date & Result type on that date". I can get the values from the hash, store it in an array and sort...
  4. sut

    How can I sort an array which contains data of "Dates"

    Hi, I need to sort an array of values, the values are actually the dates like 01/11/2001, 01/01/2000 etc. If I use sort function it doesn't sort it correctly obvisously because it doesn't compare "date" values it compares "Ascii" value. Does anybody has an idea how to sort...
  5. sut

    Hi, Here is what I want to do.

    Hi, Here is what I want to do. 1. User enters data into HTML form. 2. The form in HTML calls cgi file to store the data in DBM files. 3. The cgi program stores the data 4. After storing data, it should automatically call another html. The First 3 steps works fine, but I am not able to...
  6. sut

    How can I pass values from one cgi program to another?

    Hi, I have one cgi program and I want to include parameters in the following statement. I want to pass the parameter to edit_announce_type.cgi. print a({href=>"edit_announce_type.cgi"},"Edit"); I want to write the above statment something like this: print...
  7. sut

    Accessing the database on MS SQL Server through Perl

    Hi, I have my database on MS-SQL Server (Windows 2000). I want to access it through Perl (client's requirement). It would help me greatly if any body can tell me how to do access MS-SQL server database through Perl? Waiting for suggestions. Thanks S
  8. sut

    Visual Basic COM Component Returns Record Set as a Variant

    Hi In my application, I call Visual Basic COM Component from ASP file. The component returns a recordset as a variant. Some part of the code for component is like Public Function Return_Record() As Variant Dim Sql As New ADODB.Command Dim myconnection As New ADODB.Connection Dim RS as...
  9. sut

    COM Component

    I have 2 components called COM1 and COM2 I call COM1 and then COM2, if COM2 fails to complete the transaction, i want to undo the transaction performed by COM1. How can I call COM2 in COM1? Waiting for suggestions Thanks Smita
  10. sut

    Performance Issues in MTS

    Does any body has a statistics on the performance of MTS if we call a VB component to add / update / delete a record to/from the table (or tables having average number of fields)? I would like to know how much time and storage space MTS would take to do above transactions for an instance of a...
  11. sut

    MTS , COM Component (Urgent)

    Thanks for your suggestion. i will try that and let you know. Regarding the second question, i have one database server and 2 databases on it. one for Publishing System (publishing the content) second for Cache Management System (for the web site user) I have 2 components one for each system...
  12. sut

    MTS , COM Component (Urgent)

    I have COM components developed in VB. I am using SQL Server 7.0, MTS and ASP, HTML to design the web site. I want a solution to the following situations. 1. Two different components totally independent of each other, called COM1 and COM2. The Calling sequence is like this COM1 calls COM2 If...

Part and Inventory Search

Back
Top