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: *

  1. Churchill

    A forum in ASP

    I prefer Ovatvvon's method. Especially when doing forums where the user will want to paste code for others to view. Also, you can combine it with another function that replaces another set of strings with their HTML equivalents. This would enable you to give the user some formatting control...
  2. Churchill

    removing multiple items in an array

    I want to find a quick way of removing multiple instances of items in an array so that I get a distinct list of numbers. I thought of using a loop but I wondered if there was a quicker way. Another way I thought of was to put it into a temporary table in a db, then use select distinct to pull...
  3. Churchill

    IE critical update for cookie exploit causes new problem?

    have you had any luck with this? I'm still stumped and it appears it's not as common a problem as I thought it would be. Whenever I have posted this, I've had "experts" claim it is my code that's causing it, or a browser setting, but they've not been able to pinpoint anything...
  4. Churchill

    Speed theory <%.....%> OR <%.....%>...<%%>....<%....%>

    from my experience, the most readable method is usually the slowest to process. It's your call whether to make it readable or optimised.
  5. Churchill

    Speed theory <%.....%> OR <%.....%>...<%%>....<%....%>

    Yes, it does make a difference (so I've read) especially on large pages. Take the following example. They recommend doing this: <% ' PULL RECORDS FROM A TABLE AND DISPLAY IN A TABLE ROW DO WHILE NOT RSData.EOF Response.Write &quot;<TR><TD>&quot; & RSData(&quot;Field1&quot;) &...

Part and Inventory Search

Back
Top