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 TouchToneTommy 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: durug
  • Order by date
  1. durug

    ASP in IIS & Apache

    Hi everybody! I have a ASP Application (using Session object) which is running fine on my machine with Windows 2000, IIS 5.0 with MySQL. I moved the application on an Apache Server with ASP Support enabled and MySQL. And I receive the following message: "Internal Server Error The server...
  2. durug

    Refresh Report & ASP

    Hi everybody! I have here a strange situation. I have a Crystal Report in ASP showing some data from the Database. I log in to the application, open the report, eveything is fine. Then, I update some data and open again the Report. But the Report is not bringing the latest information from the...
  3. durug

    Reload Problem

    Any of you guys know how I can check if the page is been reloaded by the user?
  4. durug

    Reload Problem

    Hi everybody! When I press a button on my page a function is inserting a record into the DB. After this action if I press the refresh button from IE the function is called again. How can I prevent this situation from happening? Thanks, Durug
  5. durug

    Query Active Directory

    Hi everybody Does anybody know how to return all the users from Active Directory? Thanks, Durug
  6. durug

    Autofill for scrolling list

    From what I know, there is no solution for that in ASP. Maybe if you play with Javascript ... Still don't except the similar functionality from Access autocomplete. Durug
  7. durug

    Select from a combobox

    Hi, I have a combobox which is populated dynamicly when the page loads. Lets say it <select name=&quot;Test&quot;> <option selected value=&quot;A&quot;>A</option> <option value=&quot;B&quot;>B</option> <option value=&quot;C&quot;>C</option> </select> What I'm trying to accomplish: in the...
  8. durug

    Sending a value into the report

    Add your Forms!MyForm... line in the ControlSource of the report field after the &quot;=&quot; sign. Durug
  9. durug

    Web Server Certificate

    Hi everybody! I have a web server certificate and somehow Win2000 is corrupted, so we will have to format and install again the whole server. What is the procedure to backup the certificate and install it again after installing Win2000 back again. Will the certificate still work? What...
  10. durug

    mysql vs ms sql server

    Thanks all of you, especially John. I opened my eyes a little :)
  11. durug

    mysql vs ms sql server

    But from the programming point of view?
  12. durug

    mysql vs ms sql server

    Hi everybody! Could somebody explain me the difference between mysql server and MS sql server. Thanks a lot. Durug
  13. durug

    Linked server insert

    Hi everybody! Here is the story: we have an application that we didn't designed that is inserting data into a DB. Since we don't know how it works, we add an insert trigger for a table which will every time when a new record is added, insert the same information into another table into a DB...
  14. durug

    Debug a trigger

    Thank you, you convinced me to post my &quot;secret&quot; trigger :) I think only the select statemnt is causing some problems SELECT @PR_ID = m.PR_ID , @title = p.TITLE, @Code_F1 = m.CODE_F1 FROM inserted m, grs1000.proginfo p where m.INFO_ID = p.INFO_ID AND m.CODE_F1 is not null...
  15. durug

    Debug a trigger

    Hi everybody! I use SQL 7.0 and I implemented an insert trigger on a table. Now, apparently nothing is happening. How can I debug the trigger? Or how can I make sure it's working? Thanks, Durug
  16. durug

    Find a caracter in a string

    Thanks a lot! Durug
  17. durug

    Find a caracter in a string

    Hi everybody! Is there a function in TSQL which returns the position of a specific caracter in a string like the instr() function from VB? thanks, Durug
  18. durug

    Autonumber

    Hi! I have a column of autonumber type. I tested the application, so the autonumber field got to the value 24. Now I would like to send the application to the client and to remove the test data from the tables. How to I make the autonumber to start again from 1. Thanks, Durug
  19. durug

    Calendar Issue

    Sorry, my mistake. The control was bound that's why was not refreshing.
  20. durug

    Calendar Issue

    Hi everybody! I have a textbox and a ActiveX Calendar (I'm using Access 2000). In the calendar after_update event I'm using this code trying to populate the textbox with the value selected in the calendar: Private Sub cldr_AfterUpdate() Me!DateBirth.Value = cldr.Value End Sub where cldr is...

Part and Inventory Search

Back
Top