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

  1. martiros

    Good beginners site comparing PHP & ASP.NET & JSP

    If you have plenty of free time to learn ASP, ASP.NET or PHP (all are good choice for your project) - use online tutorials at www.w3schools.com If you know VB6 - use ASP There are several good books on building projects as yours w/step-by-step instructions (like "Instant ASP scripts&quot...
  2. martiros

    networking between XP & WIN 98

    Thanks all. rockerfellerz, How do I ping? What do I need to type?
  3. martiros

    networking between XP & WIN 98

    Siberd, thank you for taking time to answer. I checked and found that Client for Microsoft Networks is installed and, as I wrote in my initial message, I can see my laptop from both Win 98 desktops. My desktops are invisible for laptop though. I have 2 TCP/IP components installed: D-Link...
  4. martiros

    networking between XP & WIN 98

    Thanks for answering. What is network ID? Where do I find it?
  5. martiros

    Access UNION query in ASP

    my unprofessional quess - get rid of double quotes & use single ones select feature_id, 1 as phase from projects where (datediff('m',#9/10/2003#,demo_start) >6)
  6. martiros

    networking between XP & WIN 98

    Hi, I just recently installed wireless D-Link router and USB cards/adapters for my 3 PCs - 1 laptop w/Win XP & 2 desktops w/Win 98. I can find see laptop from either Win 98 PC but can't find/see my desktops from XP laptop. When I turn my desktops on there is no prompt for network logon. In...
  7. martiros

    Basic SQL Select displays No records

    Another thought. SELECT Category, Count(*) FROM spam_audit_log GROUP By Category ORDER BY Count(*)DESC My bet - it will not work because of (*) in ORDER BY Count(*)DESC So, I'd try: SELECT Category, Count(id) FROM spam_audit_log GROUP By Category ORDER BY Count(id)DESC; id - your autoNum...
  8. martiros

    Basic SQL Select displays No records

    Yes,it is a straight forward basic statement How about this? SELECT Category, Count(*) FROM spam_audit_log GROUP By Category ORDER BY real_column_name If this also will not work - delete ORDER BY line and try.
  9. martiros

    XML/XSL Error

    FP - Front Page extensions dealing with ASPX is more complicated than with CF. You have to be sure that your virtual directories in IIS are created correctly with all permissions. If you are using DWMX, I think that you have to publish or create your project first (DW will create VR Dir with...
  10. martiros

    XML/XSL Error

    Did you install .NET framework, IIS 5, FP exts and other required components?
  11. martiros

    Hosting a Dreamweaver Site?

    What technologies/languages are available for Mac/DWMX users? I have never used MAC for anything but browsing the Web.
  12. martiros

    Cannot load global.asax.vb file..Parser error, help?

    1. create a new application/project with the correct name 2. import all aspx/aspx.vb files from the old project 3. don't change names anymore
  13. martiros

    Stored Procedures / Forms

    Since it is DW MX forum I'd recommend trying to create StoredProc inside a DWMX itself. It has a StoredProcs wizard inside SQL wizard (as I recall). Most of the times it works & if it will for you - adjust it to your needs.
  14. martiros

    dreamweaver files

    if re-naming doesn't work - don't re-name them. open them in DW & "save as" with normal names as new files. question: Why are you using so many frames? What about includes or server.execute's?
  15. martiros

    Putting my site on the web

    Hey dvid, your address gives me an intro Flash page and after clicking on Enter bttn left menu with an error 404 on the place of all other pages in frames. Your problem could be in the names of your files: ###.html - "#" this symbol is reserved and, probably, can't be used in file...
  16. martiros

    shopping cart

    May I recommend a very good book for beginners: Foundation Dreamweaver UD 4 (ISBN 1903450349) It covers step-by-step building ASP e-commerce web site with Access & SQL Server DBs including shopping cart, stored procs & server behaviors. Complete code can be downloaded from a website.
  17. martiros

    hosting shopping cart

    Just starting, low traffic, not a lot of products, need everything fast and secure? - I higly recommend starting with PayPal shopping cart: secure, very easy to set up and no monthly fee (2.2% -2.8% commisions from sales only) Not a lot of flexibility for shipping options but with a bit of...
  18. martiros

    Horizontally repeat region in columns

    If you are displaying just a simple list of links in columns, I'd try GetString method for each column - your pages will load faster (try to display 100 or more rows using traditional RS looping & GetString - a BIG difference) you'll need several small recordsets for each column though...
  19. martiros

    Dynamic Images From a Database 2

    how do you store your images in Access - as BLOBs or links? post asp code for displaying images also...
  20. martiros

    Show/Hide DB window

    thank you, SendKeys "{F11}" does the job. Is there a way to hide it again with SendKeys ?

Part and Inventory Search

Back
Top