Jump to content

Pollux

Members
  • Posts

    102
  • Joined

  • Last visited

Previous Fields

  • Languages
    XHTML, CSS, JavaScript, PHP, SQL, Java

Contact Methods

  • Website URL
    http://www.devex-templates.com
  • ICQ
    0

Profile Information

  • Location
    UK

Pollux's Achievements

Member

Member (2/7)

0

Reputation

  1. Pollux

    Northwind Database

    I believe the NorthWind database is an example database that comes with MS Access. It don't know if it's available in SQL Server.
  2. How the filetype is handled is down to the client browser, whether it chooses to play it from a temporary file or alternatively save it to a user specified location. If you zip the file as andersmoen says then the chance is the browser will give the user the option to save it.
  3. Pollux

    Query String

    Since the '#' character has a special meaning in a URL, i.e. its used to locate an anchor within a page, you cannot use it within your querystring. Instead the character needs to be URL encoded, which I believe is %23 for '#'. So, try substituting that in.Hope that helps.
  4. W3Schools isn't really a java hub, try posting here: http://forum.java.sun.com.
  5. Have a read of the ADO tutorial pages. You'll need to learn how to connect to the database, and then how to query it with SQL to test whether theres and entry in the table with the username and password. If you haven't already you'll also want to look at the ASP tutorials to see how to retrieve the username and password that were entered on the form.Have a go, then if you get stuck post a question requesting help.
  6. Pollux

    2 Comboboxes

    Easiest way is to do that with javascript. You'll need to write 2 functions: moveLeft() and moveRight() which are called onclick of the '<' and '>' buttons respectively.The functions will need to retrieve all the selected items from one select box and add them to the DOM in the other. You'll need to look up how to retrieve multiple values from a select, and also how to dynamically add items to a select box. Neither are very difficult so if you get stuck, or aren't sure where to start, post again in the javascript forum and I (or someone else) will give you a hand.
  7. Have a read of the ASP tutorial, particularly the forms page.
  8. Nope, he means First Page 2000 by evrsoft. I'm surprised if no-one else knows it, because its quite a popular free editor, pretty good too if I remember. 2006 is out now apparantly.
  9. Ah, I must have seen that error a hundred times. The problem is generally with the permissions on your database. This page should help you out:http://support.microsoft.com/kb/q175168/
  10. As a hosting environment, ASP extends a web server's capability and makes available a set of objects which can be accessed with your programming language. You can think of ASP as a container for your program: your code runs inside this 'container' and communicates with the server through the objects the ASP 'container' makes available.
  11. Hi there,ASP is very different to javascript and vbscript. ASP is server side, meaning all the code gets run at the server before the page is sent to a client. Whereas javascript is normally client-side, meaning the code runs in your browser. Because server side code runs before the page is sent, it can influence what is actually sent to the client. This makes it possible to build extremely dynamic sites which run off of databases amongst other things. ASP isn't actually a language though, its a technique which allows you to run your vbscript (or javascript, but normally vbs) at the server, so you can do powerful things.They're just the very basic differences, but if you want to know more about ASP and how to use it, you should really read the ASP tutorial.
  12. I haven't read through your code there in too much detail, but as Blue says, your referencing doesn't look too pretty! Would be a nightmare to debug. You should probably try to refactor it; look for a simpler way of achieving the same thing.
  13. Generally the way to send multiple values for one property over the querystring is to simply duplicate the property, e.g. http://www.w3schools.com/index.html?id=20&id=30 Obviously, whether this is suitable will depend on how you plan to retrieve the values though.
  14. Generally you can execute two queries at once in SQL by separating them with a semi-colon. Although different databases can be slightly different.
  15. Pollux

    HTML Form POST

    Try posting in the PHP forum.
×
×
  • Create New...