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 dencom 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 b00gieman

  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

Part and Inventory Search

Back
Top