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 strongm 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. crusader

    Convert nvarchar parameter to datetime

    can anyone help? I'm trying to insert a nvarchar passed parameter from an asp.net textcontrol and convert it to sqlserver datetime: (i get error: Syntax error converting datetime from character string) Here is the sproc>> CREATE PROCEDURE [dbo].[p_UpdateApplicationStages] -- Add the...
  2. crusader

    How to make text in Textarea render the same as input tag

    Ahh, Excellent that did the trick..... Thank you!!
  3. crusader

    How to make text in Textarea render the same as input tag

    Hi, Does anyone know how to make the input text in a Textarea the same as text in an input tag? I have applied the same style sheet attributes to both the different tags but the rendering of the text still looks slightly different! Here are my styles: .inputText { border-width:1px...
  4. crusader

    regular expression to only allow <b>,<i> and <a href> tags

    Hi, Can anyone advise how I can allow users to fill in a textarea and use certain HTML tags such as <b>,<i> and <a href> but cause an error alert with any others. so far I have this simple reg exp which only seems to work with some tags and not others: function catchBracket() { var...
  5. crusader

    Loss of Network Connection when colleague logons on

    Hi, I have the same problem every morning: I'm the first person to logon to our LAN first thing in the morning. When one of my colleagues comes in, I always loose my LAN connection.The only I resolve it is to disable my connection and then re-connect. I'm not a system administrator so could...
  6. crusader

    Appending items to CSV

    Thanks for the advise Tarwn, I set the fieldName and fieldValue to the form contents and checked to see if they had contents first, if they did not I replaced the fieldValuse with a '0' Many Thanks.
  7. crusader

    Appending items to CSV

    Hi, I'm trying to change the value of a posted form element then write this to a CSV file. I have a form of questions which posts over to a processing page. This processing page insert the values into the CSV file. Some of the question lead on to other question e.g "if yes then what is your...
  8. crusader

    Update Excel - Newbie To ASP

    Thanks DreXor, I found that this works: dim fsoObj, sFileName, objtextFile, fieldName, fieldValue sFileName = server.MapPath("test.csv") set fsoObj = Server.CreateObject("Scripting.FileSystemObject") set objtextFile = fsoObj.OpenTextFile(sFileName, 8) For ix = 1 to Request.Form.Count...
  9. crusader

    Update Excel - Newbie To ASP

    Hi Krickles, Thanks for the reply, in answer to your question I'm trying to post form data into an Excel sheet, and appending under a row of column headings. Thanks, Crusader
  10. crusader

    Update Excel - Newbie To ASP

    Hi, How do you update an existing excel sheet? Is it possible with out using ADO. The excel sheet already has headings, I wish to populate the spreadsheet with data from a HTML form. Crusader
  11. crusader

    form element list

    Just what I was after! Thanks.
  12. crusader

    form element list

    Hi, In ASP is it possible to capture a list or an array of all of the posted form elements. For example in Coldfusion you can simply do a loop over 'form.fieldnames' and this will give you all the used form element names and then you can manipulate to find their values.
  13. crusader

    conditional validation of form elements

    Thanks mwolf00! Thats perfect. cheers, Crusader.
  14. crusader

    conditional validation of form elements

    Hi Can anyone tell me how to validate a form where there are several different form elements of which I want to have a &quot;cannot be empty&quot; validation on groups of form fields. e.g. f a user enters information into one field (say name in a text field) I want to make sure they fill in...
  15. crusader

    Fusebox 3 and dynamic links

    Hi, I am looking into using Fusebox 3 and have had some trouble with passing dynamic database values to other files with in a circuit. how can this be done without hard coding? I want to click on a dynamically displayed link which will then pass me on to an appropriate display page. Without...
  16. crusader

    Flash Variables &amp; Browsers

    locally
  17. crusader

    Flash Variables &amp; Browsers

    I'm having trouble with Flash picking up variables using the loadvariable property in Flash 5. Although all works fine with Netscape. I am creating the variables via coldfusion and then setting them as name value pairs to be picked up by flash using the loadvariables method. Using IE 5.5 it...
  18. crusader

    Flash no viewable on Web

    Check your url paths are they relative or absolute. try either one and see which work.
  19. crusader

    Performance tuning

    Jami, I did a Search in my CF documentation and found this: It is Windows based but if you do a search under CF studio for performance monitor (with your unix version) you should get something more appropriate! (hope this helps) :) ColdFusion provides a set of counters for monitoring the...
  20. crusader

    Problems with MS SQL

    No they are on 2 different machines. I thought that not having a Cfserver on the database server would cause the problem, but it has not. It just seems to be an account issue.

Part and Inventory Search

Back
Top