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 bkrike 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 puitar

  1. puitar

    Scan Text file for Email addresses

    Hello, I have a database of newsletter subscribers (about 12000) and recently sent a newsletter out. I set up a pop3 account to catch all bounces and unsubscribe requests. Using Outlook XP I exported all these emails to a text file. I want to scan this text file for any emails addresses so I...
  2. puitar

    DB Design Help

    Thanks johnherman, All is good.
  3. puitar

    DB Design Help

    Hello, I build websites for a real estate company.eg www.prd.com.au The client wants to incorporate a "surrounding suburb" search when searching for properties. eg When a user searches for real estate within a suburb the search results will include all real estate in nearby suburbs as well...
  4. puitar

    order by - sorting

    Thanks SonOfEmidec1100 Works a treat :)
  5. puitar

    order by - sorting

    Hello, I have a sql statement.. select * from Properties where PropertyType = 'Land' order by 'TotalPrice' The client wants to display certain records first eg (where agent = 'HeadOffice') and then display the rest. Can this be done with sql or do I have to do it with two seperate queries...
  6. puitar

    Codepages

    Hello, I'm building a system that needs to support Japanese. The code below shows how I can either.. 1. Response.write("JAPCHARACTERS") or 2. Response.write(rs("JAPDATABASEDATA")) I am unable to do both on the same page without changing the codepage. ps.. you may need a...
  7. puitar

    Japanese text -SQL Server to Email - jmail

    I found a solution. I needed jmail version 4. I had jmail version 3.7 which did not fully support internationalisation. :)
  8. puitar

    Japanese text -SQL Server to Email - jmail

    Hello, I have a SQL 2000 database that is configured to store japanese text. I am able to input via a form and output via asp japanese text successfully from the database. I am having problems using this japanese data to create dynamic emails using jmail version 3.7.0. Whenever I send...
  9. puitar

    Destroy ASP.NET cookies-how?

    Thanks guys...I'll try it now:)
  10. puitar

    Destroy ASP.NET cookies-how?

    Hello, My application uses ASP.NET cookies eg response.cookies("CartID").Value = 389 I need to be able to destroy this cookie so I can... if Request.Cookies("CartID") Is Nothing then 'create a new cart end if Thanks
  11. puitar

    Table is locking after ASP.NET query

    Hello, I have a ASP.NET app that accesses a MS Access 97 db. The table i'm accessing keeps locking!!! this is shitting me. Please help.
  12. puitar

    Dynamic ASP Menu?

    Greets, I've been looking around for code to generate web menus generated with asp and sql data with no luck... Can anyone point me in the right direction? I want the menu to act similar to a treeview control. I would like to write some asp code to allow clients to edit the menus themselves...
  13. puitar

    Functional Requirements Specs

    Greets, Where can I find a template for functional requirements specifications. There would have to be heaps around, I just can't find any. Thanks
  14. puitar

    for each Item in Request.Form---Sort Order Question

    mmmm.... I am trying to avoid renaming all of the tick-boxes. There are about 70 of them each with unique names.
  15. puitar

    for each Item in Request.Form---Sort Order Question

    Greets, I have a form with many tick boxes. Example names for these are... tckERD023_USQ_MOD1_0023, tckERT023_USQ_MWD1_0223.... When I use.. for each Item in Request.Form [boring code goes here] next the order the tick boxes are processed looks random. I want to look at each tick box...

Part and Inventory Search

Back
Top