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!

Search results for query: *

  • Users: jordan11
  • Content: Threads
  • Order by date
  1. 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) & >'...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. jordan11

    check text before creating a hyperlink

    Hi, I have this piece of code that allows a user to enter there web address or email address. Can some please tell me how I can prevent text such as N/A being a hyper link if the user enters it in the text box. I just want valid address to be hyperlink ie http and www. This is my code <td >...
  7. jordan11

    recalculate after update

    Hi, I have a page called calculation.asp I have another page that you can do updates on by clicking on the hyper links that opens up a page to be updated. Everytime some clicks on these links and does an update I would like calculation.asp to be recalculated. This is an example of one the...
  8. jordan11

    looping problem

    Hi, I am having a looping problem. I have a loop that first checks for each clientid and then does a calculations for evey clientid one of these calculations require a loop. The problem I am having is the first clientid calculations are done correctly but anything after that gives the same...
  9. jordan11

    calculation loop problem

    I have another problem with getting the correct results in my counter. what I would like to happen is if the questionid in one table matches the questionid in a second table then i want to add 2 to the counter and then get the total at the end of the loop. But what is actually happening is I am...
  10. jordan11

    update problem

    I have done some calculations in my asp page and my problem is when it goes to update i get the error message Object required at this point in my code txtsql = "DELETE FROM rating WHERE physicianID = '" _ & strphysicianid &"'" conn.Execute txtsql...
  11. jordan11

    join problem

    Hi, I have this select statement, select o.questionID,p.questionid from opportunityanswers o inner join physiciananswers p on o.questionID = p.questionID and physicianID='128' I would to use 0.question in my query below I tried this questionid=rs(o.questionID) and then tried to use...
  12. jordan11

    moving calculations between asp pages

    Hi, I need some advice on how to move calculations from one asp page to another. Basically what I am doing is calcualtions on a few asp pages and once i get to the end of all the pages do one final calculation with all the totals from each page. Thanks in advance
  13. jordan11

    case problem

    I am using a case statement to compare results between tables and then allocate points based on a match. I am having a problems with radio buttons as I would like to allocate points based on the value selected in the radio button which has a value between 1-5. e.g if table A, a customer has...
  14. jordan11

    case problem

    #1 Today, 09:30 AM Princess Zea Registered User Join Date: Apr 2005 Posts: 42 Time spent in forums: 1 Day 4 h 50 m 57 sec Reputation Power: 0 case problem -------------------------------------------------------------------------------- I am using a case statement to compare...
  15. jordan11

    calculation problem

    I need some help into how to approach this problem I have 5 tables and based on the results in table A and B I need to do a query that will first take the name of the hobby in table A and match them with each customerid hobby in Table C, which I have done The table above is the Hobbies table...
  16. jordan11

    scoring with IF statement

    Hi, I have 4 tables A Oid CSchools CArt CCommunity B Oid CLocationState Status C Pid State LicenseStates D Pid Schools community Region StateBirth PreferredState I need to be put on the right track. I would like to give points based on a match with another field in a...
  17. jordan11

    Array problem

    Hi, I have this array, can someone please tell me how I can get it to update my database so the different states selected update one field only with values like this ca,ga,co. At the moment when it updates it updates each state seperately repeating the values of the other fields e.g if i have...
  18. jordan11

    Insert problem

    Hi everyone, I am getting this error message Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC SQL Server Driver][SQL Server]There are more columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must...
  19. jordan11

    count naming problems

    Hi, I want to do a count but the name of the input box has to names how do I put this name into the request.form. I put ??? were I am having the problems. response.Write "<input type=checkbox name=" & Strtype & "." & strquest & " value="&Strvalue& "> " & oRSc("Selection") & "<br>" aSelected...
  20. jordan11

    Radio button problem

    Hi, I have a dynamic radio button but I am having problem getting the values of my counter. Insead of it giving the values between 1-5 it gives me the value on no matter which radio button is selected.Can anyone tell me what the problem is . The code is below Response.Write"<table border=0...

Part and Inventory Search

Back
Top