Search results

  1. Kodo

    Asp page

    you don't "NEED" a web.config, but it's a handy place to store your connection string. The next thing you will need is some method(s) for retrieving data. Try to keep your data retrieval seperate from your business logic. In other words, don't put your data retrieval methods IN the aspx page...
  2. Kodo

    Where do I run the ASP file?

    The tool to run your ASP file is your web browser. IIS is a web server. ASP is a web scripting language. Load up your web browser and point it to the URL of the file on your web server.
  3. Kodo

    Anybody have luck with Network.Doanload() ?

    try including the file name in the address of the URI
  4. Kodo

    SQL Information

    here's a good place to start http://sqlteam.com/
  5. Kodo

    Anybody have luck with Network.Doanload() ?

    make sure you pass user and password along with it.
  6. Kodo

    purpose of dataform wizard

    grab a drink and some cookies http://msdn.microsoft.com/asp.net/learning/learn/newtodevelopment/default.aspx
  7. Kodo

    Frames

    Frames..blah.. Use virtual frames. You build a header file an "index (the changing portion)" and a footer file. You include the header and footer in the index.
  8. Kodo

    How to store check box values in php sessions?

    Tony, the questions you are asking are questions on common tasks in web development; however, if you are asking questions at these points, then I highly recommend purchasing a book on your topics (PHP appears to be what you're using judging from your other posts). You really need to have a...
  9. Kodo

    Enter Into Sub-Datasheet

    did you enforce referential integrity?
  10. Kodo

    Access Interface to SQL

    We're using MSSQL, not MySQL.. If you want to work with MySQL, then you'll need the MySQL drivers (MyODBC) http://www.mysql.com/products/connector/odbc/ http://dev.mysql.com/doc/refman/5.0/en/odbc-connector.html Im not guaranteeing that it will work with access, but if you set it up as an ODBC...
  11. Kodo

    Enter Into Sub-Datasheet

    I didn't follow WindSailor's link. .given that , I would say (off the top of my head) to try using the binding source object and bind your text fields to the the values of your returned data for the "parent" form (i have a demo of that piece in the vb.net forum here). The next part would be use...
  12. Kodo

    my submit button stoped working after chaigng id to id[]

    you don't need to name it with []. That is an array syntax that is native to the language.. If I had 3 check boxes with the same ID then I would access the index of the array of check box values by doing something like this somecontrolname[index].value what you're doing is not necessary.
  13. Kodo

    problem reciving check box values using post method

    ok.. I had the syntax really close.. try this $query = "SELECT * fROM files WHERE id IN(".$_POST['id'].")";
  14. Kodo

    problem reciving check box values using post method

    PHP isn't my language so I'm taking a pot shot at the syntax... $query = "select * from files where id IN(" + $_POST['Id']+ ")";
  15. Kodo

    How to trap "Index or primary key canot contain a null value"

    How about a field valdation before the record gets saved? If FIELD ="" then 'show message 'set focus back to field End IF ? Your user should never be able to get to save the record if required items are not filled in.
  16. Kodo

    SJ McAbney Birthday Boy

    Happy birthday! Enjoy :D
  17. Kodo

    problem reciving check box values using post method

    if the checkboxes have the same name ("POSTID") then they are posted as a concatenated string with comma's as the delimeter, like so. 1,3,6,29,93 and so on and so on. If MySQL supports the "IN" keyword (and I'm sure it does), you won't need to do that, just do: $query = "select...
  18. Kodo

    Why do women hate the 'C' word?

    leave her a decent tip and apologize for the lads grossly inappropriate behavior.
  19. Kodo

    how to pass user info to diffrent pages using sessions?

    here, this should explain it all. http://www.devshed.com/c/a/PHP/Creating-a-Secure-PHP-Login-Script/
  20. Kodo

    CASE statement in HAVING clause

    why don't you set a default value of 0 for ColumnC so when any new record is created ColumnC will have 0. Now ColumnC will never be NULL and you don't have to bother with the case statement.
Back
Top Bottom