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: *

  1. b00gieman

    Variables value

    Hi, I have the following code: ID=Request.QueryString("ID_No") .... if(....) then ....... if ID>0 then ........ else ....... end if end if My problem is the following:in the if condition , the ID variable has lost its value.Am I doing something wrong?
  2. b00gieman

    Newb Question on asp:Image

    That was very helpful.Thanks a lot!
  3. b00gieman

    Newb Question on asp:Image

    That solved my problem.Thanks a lot! :)
  4. b00gieman

    Newb Question on asp:Image

    The image is in the App_Data folder , which is in the site's folder...
  5. b00gieman

    Newb Question on asp:Image

    Hi, I want to insert an image into my site.My problem is I cannot see the image when running the site.The code I'm using is: <asp:Image ID="img1" ImageUrl="~/App_Data/image1.jpg" runat="server"/> How can I fix this problem? Thanks!
  6. b00gieman

    access SQL server 2005 database from SQL server 2000

    Hi, Is it possible to access a MS SQL Server 2005 database using MS SQL Server 2000 using Enterprise Manager? Thanks in advance!
  7. b00gieman

    DTS 'Execute SQL task' with parameters

    Hi, Is it possible to have a 'Execute SQL task' with parameters like: if 'input_parameter'='value' 'sql_query' else 'sql query' ? Thanks in advance!
  8. b00gieman

    Alternative to sp_OACreate?

    The code I'm using can be found here: http://support.microsoft.com/kb/312839
  9. b00gieman

    Alternative to sp_OACreate?

    Since I cannot use xp_sendmail(in MS SQL Server 2000) , I've created my own stored procedure for sending emails.The problem is I get error messages regarding the usage of sp_OACreate , sp_OAGetErrorInfo , sp_OASetProperty , sp_OAMethod.It seems I cannot use the stored procedures from the master...
  10. b00gieman

    xp_sendmail as different user

    I'm using SQL Server 2000.The administartor has granted the permissions for xp_sendmail to a generic user.What I need to do is to impersonate that generic user and send emails.I need to run the xp_sendmail for a database other than the 'master' database.
  11. b00gieman

    xp_sendmail as different user

    Hi! I want to use the xp_sendmail procedure for my database.The problem is I don't have the rights to run the procedure. Instead , I recieved a name that I should run the procedure under.From what I read , I should call the procedure like this: EXEC master.dbo.xp_sendmail...
  12. b00gieman

    cast function

    thanks!
  13. b00gieman

    cast function

    Hi! Is it possible to update the content of a column from a table(smalldatetime) with nvarchar data using CAST? The nvarchar string is mm/dd/yyyy and so is the date format
  14. b00gieman

    authentication in cdo.message

    Hi! Could someone pls tell me what's the difference between Basic authentication and NTLM authentication in cod message? Thanks in advance!
  15. b00gieman

    delete files

    yes,I'm sure
  16. b00gieman

    delete files

    the script is done in asp.However,I have the permission to delete files from the asp application.However,if I check the directory the next day,the files aren't there anymore,so I'm thinking it might be a 'lock' done by the application....
  17. b00gieman

    delete files

    I also created a script that deletes the files.The script doesn't generate any error,but when I check the folder,nothing's changed....
  18. b00gieman

    delete files

    NWS:I checked the file properties.Usually , each file has the "Security" and "Summary" options,but the files in that folder do not have these options.Any idea why?
  19. b00gieman

    delete files

    Maybe I could just upload the files and send them,and then sepparately run a script for deleting the files...
  20. b00gieman

    delete files

    No...The problem is that after the files are sent,if I check the folder where they are supposed to be temporarily stored,the files are still there...if I try to open any file,I get 'access denied'...deleting them is not possible either...

Part and Inventory Search

Back
Top