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 TouchToneTommy 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 jordan11

  1. jordan11

    javascript window and array value

    I created file called "text.asp" with the code below: <% Response.Write(Request("text")) %> changed the javascript as shown below and everything worked fine. <script language="JavaScript" type="text/javascript"> function viewdetails(strText) { window.open("text.asp?text="+strText...
  2. jordan11

    javascript window and array value

    Thanks for your help but I have managed to work it out.
  3. jordan11

    javascript window and array value

    basically what is happening is someone clicks on a link that opens a window with contains the date, name , email, and email message, I then want them to be able to click on details and open another window that shows the contains of the info in the details, at the moment if I put the mouse over...
  4. jordan11

    javascript window and array value

    arrLog[0] should be arrLog[6] which contains the email message from the database. Thanks
  5. jordan11

    javascript window and array value

    I have posted some more info so you have some light on what I am trying to do. I have an array of the results from my database table and at the moment I want to display the contents of a email message so when the user clicks details a window opens and the email messsage is shown. For i = 0 to...
  6. jordan11

    javascript window and array value

    I want to display the contents of a email message so when the user clicks details a window opens and the email messsage is shown. At the moment I have a title so when you put the mouse over some of the message is displayed but I want the contents to show in a open window instead. Thanks
  7. jordan11

    javascript window and array value

    Hi, I would like to open a new window with the results of an array. can anyone tell me how to can be. This is what I have so far <script language="JavaScript"> <!-- function viewdetails() { var theURL = '< & arrLog(0,i) & >'...
  8. jordan11

    Asp.net, xml and xsl newbie

    Hi, I trying to write an application that will allow a user to go in and see a list of articles, once they selects an article they should have the options to delete,edit or add new article. I am doing this using asp.net (vb), xml and xsl. At the moment I am able to display a page using using...
  9. jordan11

    Asp.net, xml and xsl newbie

    Hi, I trying to write an application that will allow a user to go in and see a list of articles, once they selects an article they should have the options to delete,edit or add new article. I am doing this using asp.net (vb), xml and xsl. At the moment I am able to display a page using using...
  10. jordan11

    smalldatetime error

    sorry they are using access for there forun and sql server for the rest of the site. I have now solved the problem. Thanks for your help
  11. jordan11

    smalldatetime error

    sorry I did not write this code. the only other piece of other information I have is <input type="hidden" name="month" value="<%=Today()%>"> by the way the database is access Thanks
  12. jordan11

    smalldatetime error

    Hi, I get this error message The conversion of char data type to smalldatetime data type resulted in an out-of-range smalldatetime value. when try to insert the code below theMonth = "dbo.tbl_banners" & Month(Today()) MM_editTable = "dbo.tbl_banners" & Month(Today()) MM_editTable = "insert...
  13. jordan11

    Please wait message

    Hi, I have an urgent problem I am using asp.net and my validation on my form is <script language="JavaScript"> function sendMessage(){ var theName = document.form1.name.value; var theEmail = document.form1.email.value; validMail=theEmail.indexOf('@') var theTel = document.form1.tel.value...
  14. jordan11

    check text before creating a hyperlink

    sorry for some reason I am getting a type mis match with test
  15. jordan11

    check text before creating a hyperlink

    Thanks for your help, I used the code below but it does not display a hyperlink it just shows a plain text format even when there should be a hyper link not sure waht is wrong <% set re=new regexp with re .ignorecase=false .pattern="^http://(www\.){0,1}\w+\.(com|org|gov)/{0,1}$" end...

Part and Inventory Search

Back
Top