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!

Recent content by melrse

  1. melrse

    output value of select scope_identity to page

    i think you have to use execute scalar to obtain the returned value. thanks
  2. 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...
  3. 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...
  4. melrse

    variable for checkbox passing 1 to sql when checked not workong

    thank you so very very much. i have been debugging and no avail. i so appreciate your help. thanks
  5. 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...
  6. 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...
  7. melrse

    run time error in code example after i added variables

    it liked that. no errors. do i need to set all of my form stuff up like this - such as my radio buttons and all? i had this in php/mysql and basically you just passed the label of the field to the insert statement so i am kind of not used to having to set up paramaters and all to get the form...
  8. melrse

    run time error in code example after i added variables

    erver Error in '/intranet' Application. ________________________________________ Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately...
  9. melrse

    run time error in code example after i added variables

    Server Error in '/intranet' Application. -------------------------------------------------------------------------------- Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error...
  10. melrse

    run time error in code example after i added variables

    -I am using Visual Web Developer 2005 Express Edition. -I stuck .sln and .suo which were created when I did the .aspx in Visual Web Developer. I am poking around for the dll. Thanks very much. 2 weeks late for project completion and do appreciate the help.
  11. 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...
  12. 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...
  13. 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...

Part and Inventory Search

Back
Top