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 wOOdy-Soft 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 pandapark

  1. pandapark

    batch job to restart iis

    I've set up a batch job to run the iisreset.exe using C:\WINDOWS\system32\iisreset.exe in the run field of the task job. ad-hoc i usually run iisreset /restart can i do that using the sceduled task direct or do i need to put it in an actual .bat file created within C:\WINDOWS\system32\ and...
  2. pandapark

    recommended setup for new application

    Hi we have a new asp application, which I'm about to set up within IIS 6.0. Now live should be ok because its on a different server completely to test and train so I just create one website and I'm away. on the server holding dev, test and train ! I could do with some advice on how to set it...
  3. pandapark

    problem installing sql reporting enterprise

    Hi i installed this edition fine on our istanbul server, used an account account2 - worked fine ! tried it on another server - doesn't work the only difference i can see is through IIS - there are 2 websites, the default website and another one which hosts another application. the sql...
  4. pandapark

    stored procedure to compare data between tables

    hi i have a table on server a, which holds customer details. each customer gets a unique number (numeric field) and a datetime field (sdate) when the customer was created. there is also a datetime field called edate, which if the customer moves, stamps a date and time in the edate field, and...
  5. pandapark

    checkbox validation problem

    yeah I've been checking for typo's for half an hour........and just found it sorry ! i thought there was a little on javascript if statements or something ! keith
  6. pandapark

    checkbox validation problem

    sorry i forgot to mention that if i add the other 2 checkboxes in it fails completely !
  7. pandapark

    checkbox validation problem

    Hi i've got this code which works ! but its only validating 7 out of the 9 checkbox fields i have. Is there a limit on the length ? the missing 2 fields are chkFailurePink and chkCalendar thanks keith Response.Write "if (document.frmEnquiry.chkBNE.checked == false &&...
  8. pandapark

    xmlhttp to check if page is not found

    Hi I've inherited some code which does this i.e. returns a URL, if found in the lookup table. if Request ("selSimple1") <> "" then strSQL = "SELECT URL, URL_NAME FROM CTS_SIMPLE_SERVICES WHERE SERVICEID = " & Request ("selSimple1") set oRSURL = ExecQueryRS(strSQL,null) if not oRSURL.EOF and...
  9. pandapark

    output sql table as comma delimited string

    oh ok...........two for the price of one ! one quick question re. george's function i call it like such in my asp (works great) strTempID = "Select BusinessDir.dbo.ConcatDesc1(ID) as MyID from tblTempID" set objRS8 = objCon.execute(strTempID) my table tblTempID has lots of records, I'd...
  10. pandapark

    output sql table as comma delimited string

    will do...........thanks again
  11. pandapark

    output sql table as comma delimited string

    sorry george, bit of a novice at this...... it is saying UDF must include name and text
  12. pandapark

    output sql table as comma delimited string

    hi i do want to use them in a recordset within my asp. i've tried implementing george's code but get an error ?
  13. pandapark

    output sql table as comma delimited string

    oh ok is there some way i could do what i want to do ? thanks

Part and Inventory Search

Back
Top