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 SkipVought 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: BeckD
  • Order by date
  1. BeckD

    DW Changes my asp code

    Thanks Dodge, So does that mean that Dreamweaver won't let me use "include file" and insists that I use "include virtual"??! er... think I'll go back to homesite...
  2. BeckD

    DW Changes my asp code

    Hi, I'm new to Dreamweaver, but not new to ASP/web sites. I think I have a configuration problem with DW. When I save an page it messes with my code and turns the following: <!--METADATA TYPE="typelib" FILE = "C:\Program Files\Common Files\System\ADO\msado15.dll" --> <% Option Explicit...
  3. BeckD

    Anybody using C2GXOR encryption component?

    Unfortunately I'm not using .Net, just good ole classic ASP. Nothing is wrong with SSL, and I'm using that as well. The idea of encrypting the credit card numbers is that if someone got into the db or managed to hack the site with sql injection (I think I've put all the necessary precautions...
  4. BeckD

    Javascript within ASP apostrophe problem, little help?

    Or you could use entities for the quotes instead: <% if ShowButton = "True" then response.write "<input type='button' Onclick='Javascript:location.href=&quot;http://www.google.com&quot;' value='Test' name='B1'>" %>
  5. BeckD

    Javascript within ASP apostrophe problem, little help?

    Hmmm - your code actually worked for me... It maybe that the ShowButton variable is a boolean rather than a string, i.e. 'boolean ShowButton = True is different to 'string ShowButton = "True" Also, not that it matters to the syntax, but you don't need the "end if" if you put an If statement...
  6. BeckD

    Anybody using C2GXOR encryption component?

    Hi all I'm using a free encryption component by www.componentstogo.com (web site seems to be down today) called C2GXOR. It's always worked fine in the past but I'm tearing my hair out with it at the moment. I'm trying to encrypt and decrypt credit card numbers but sometimes, once a number is...
  7. BeckD

    Uk Bank Holiday XML Web Service?

    Hi Does anyone know of anywhere that provides an xml file of uk bank holidays? I want to integrate bank holidays into a project and I'm trying to avoid having to keep a database/ file or anything manually up to date so I was hoping that an xml web service was available for this purpose -...
  8. BeckD

    Connection string to Oracle

    Oh I see... thanks for that Turkbear. I was assuming that it would be similar to how it works in SQL Server where you put the IP address in the connection string (I'm new to Oracle if you hadn't guessed!)... Cheers, Beck
  9. BeckD

    Connection string to Oracle

    Thanks mrDrive but I've already looked on that site and couldn't find anything about remotely connecting to Oracle using IP address. Maybe I missed it - if you see it on there let me know! Cheers, Beck
  10. BeckD

    Connection string to Oracle

    Hi I want to create a connection string to a remote oracle server. Anyone got any examples? All the connection strings I've found are for local oracle databases and I don't think this will work. I want to be able to connect via IP address. I know you can do it for SQL Server - surely it's...
  11. BeckD

    file uploading

    Hi Check out http://www.4guysfromrolla.com/webtech/LearnMore/Upload.asp This gives you links to two different ways of uploading without components. HTH, Beck
  12. BeckD

    Request.form methods?

    Hi Why don't you put a hidden field in both forms with the name of the form in it. That way, you can find out the value of the hidden field and know which form was used. HTH, Beck
  13. BeckD

    html in xml element is ignored

    Hi Thanks very much! It works! You can have a star! Beck
  14. BeckD

    html in xml element is ignored

    Hi I think you've misunderstood my problem. The <b> html tag was just an example - the xml file is dynamically generated by asp so the html inside the cdata body element could be anything not just <b>. I want to know how you can put html inside an xml element and have the xsl page read the...
  15. BeckD

    html in xml element is ignored

    Hi I have an xml file describing a document. The body of the document contains html. I then have an xsl page which transforms the xml. My problem is that I want to the html to be interpreted, not displayed or ignored. XML File <page> <document> <date>09 September 2002</date>...
  16. BeckD

    Can't kill word process

    Thanks Andreas, it works.
  17. BeckD

    Can't kill word process

    Hi I'm trying to write a spellchecker and I'm using the MS Word 9 object library. My problem is that I can't seem to close the word object after I've finished with it. This results in many instances of the word process which evenually eats all of my pc's memory. Here is an example of my...
  18. BeckD

    ActiveX Control in ASP

    Hi Tarwn It works!!!!!! Hooray!! Thanks for your help. I understand your logic though with asp not seeing it as it's not loaded when the asp is run. I hadn't thought it through properly. BTW - I did know that it won't work unless the object is installed on the clients machine - but seeing...
  19. BeckD

    ActiveX Control in ASP

    Hi penauroth Thanks, but at this stage I'm not trying to set attributes yet! I've got the control on the web page and I just want to be able to call the GetSelectedText function of the control. My code (shown above) doesn't seem to know that rtb is an object, even though I've called the...
  20. BeckD

    ActiveX Control in ASP

    Does anyone else know how to do this? Am I trying to do something impossible?

Part and Inventory Search

Back
Top