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: melrse
  • Content: Threads
  • Order by date
  1. melrse

    output value of select scope_identity to page

    strInsert = "Insert INTO Family (entrydate,returneddate,Quest01,Quest02,) Values('2007',GetDate(),@Quest01,@Quest02); Select scope_Identity()" I apologize for my ignorance but I can't seem to get the above value returned from select scope_identity to output back to user page. Have googled, found...
  2. melrse

    response.write to display record id after form updates sql

    Hi. Have had much success with obtaining help and am muddled. I have a form updating a sql db which works fine. After the form updates the db and the connection for that single update is complete before closing, I want to display what the associated recordID for that form is back. Have a book...
  3. melrse

    variable for checkbox passing 1 to sql when checked not workong

    Dim FcommunicationR As Integer Dim p27 As New SqlParameter("@Quest24communication", FcommunicationR) If Fcommunication.Checked = True Then FcommunicationR = 1 End If cmdInsert.Parameters.Add(p27) <asp:CheckBox ID="Fcommunication" runat="server" Text="Communication" /> This...
  4. melrse

    updating date field in sql from form attached code not working

    The form has a text box where the user will enter the date they have received a survey. The field type in sql I set up as a tiny date. Don't really care about time. When I try to submit, there are issues with converting from the form field to updating the file Dim p As New...
  5. melrse

    run time error in code example after i added variables

    Hi-I am getting a run time error when I run this .aspx form only on the intranet. When run locally, it runs ok. It does not do a lot yet. Can someone take a look at it and see if there is anything wrong that may be causing the application run time error? It appears to have started after I added...
  6. melrse

    vba excel to web

    I have a excel spreadsheet which contains items to be ordered from a vendor. I want to post this to company intranet and allow users to have a template to enter orders from such as name, dept and quantities and the email to vendor. Running apache on linux. Most users running office 97. Is there...
  7. melrse

    excel extension in config file on apache

    I am running apache 1.3.12 on linux box. I have a excel spreadsheet which is an order form for office supplies. I want to have this exist on the company intranet as a template, Allow user to fill in and then email to vendor. I am familiar w/php. ? 1)Apache does not recoginize excel extension and...
  8. melrse

    counting select records in same db field

    Hi. Please, can someone direct me on the following-I have tried dcount and subqueries and not right. Using a db field which contains diverse entries ie: 01,02 thru 10. I need to have a count for the number of each that exist at the bottom of the report. Whenever I use a select such as fieldname...
  9. melrse

    Perl cgi

    Good Morning. I am running apache server version 1.3.12. I am looking at software that requires perl 5.005_03 or later. I was wondering if I needed to load a seperate module for perl cgi scripts to work and if I will be at the correct perl version. Thanks, Melissa
  10. melrse

    apache security using MYSQL

    Hello. I am securing a site running apache version 1.3.12. I read in an apache security article that MYSQL database can be used instead of a text file to store passwords and profiles. Can anyone give me a starting point. Thanks
  11. melrse

    Linux Red Hat Error - Innwatch

    Hi, I have started to receive the following error periodically and was wondering if anyone could help me decipher it: /USR/LIB/NEWS/BIN/INNWATCH: [: Integer expression expected before -gt. awk: error in loading shared libraries :undefined symbol : Thanks
  12. melrse

    setting in config file to display pages over internet

    Good Morning, I have had multiple problems with images and pages displaying correctly when http is issued internally but not displaying when the http requests are coming in to the apache server externally from the internet. I am on version 1.3.12. Is there perhaps a setting in config file that...
  13. melrse

    displaying image

    I have gif images that were created using paint shop pro. I have them in a table for placement on the page. For some reason, the images display correctly when the pages are accessed internally in the organization. When you come in over the internet, they do not display, only the alt description...
  14. melrse

    apache security for intranet

    I have set up an Intranet and am trying to setup security. I am somewhat familiar with iis and trying to get familiar with apache. From what I have read, it works as follows. I am looking to see if I have it ok and to get some additions and pointers. I am running on a Linux box. A person is able...
  15. melrse

    a lead on software

    I am looking for software for an intranet that will allow the viewing of multiple conference rooms availability. Has anyone utilized any software like this? I am running Apache, Linux and am looking for coding in PHP. I could not find anything like this on php.net projects. Any leads will be...
  16. melrse

    form talk-submit job applications

    I am able to write a PHP script that obtains form information and writes it to MYSQL table and assemble email. I am also able to redisplay from table to browser. What I am unclear of is when the form is a job application and you obtain the employee info, you write it to table but what is the...
  17. melrse

    Updating MySql field from textarea

    It looks like the max length of a field be it Varchar or char is 255. This means that when I update the field from textarea, I will only get the first 255 characters. Has anyone found a work around on this?

Part and Inventory Search

Back
Top