Classic ASP DatabasesDiscuss using ASP 3 to work with data in databases, including ASP Database Setup issues from the old P2P forum on this specific subtopic. See also the book forum Beginning ASP.NET Databases for questions specific to that book. NOT for ASP.NET 1.0, 1.1, or 2.0.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Databases section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of software programmers and website developers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other developers’ questions, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question: http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
That is my signature, hence it is attached to all of my posts. So, if you would like me to help you, answer my question. Posting your code does me next to no good if you can't tell me what kind of problems you are having.
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question: http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
If by 'hold' you mean NOT manipulate the data in the database you would do nothing since simply pulling the data from the database does not change it in any way.
To add the information you would need to provide a button that, when clicked, would INSERT the data into the database. (Via a SQL Query or RS.AddNew)
Lastly, as far as fetching records, you could set up paging to allow a user to iterate through all of the records in the database, although I don't find that desireable.
Unfortunately I cannot view your register page as my proxy is rejecting the site, so, that is the best I can tell you with what you have told me and with not being able to see your site.
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question: http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
I gonna trail this mr. and who knows maybe it works, if i understand it right, i mean.
Mr dparsons you are the first person who is given me a clue, thanks for that.
I hope you can see the website i am busy making may be to give you professional comments.
If i have to setup paging, i was thinking maybe to exlude a database, is it possible to send the page with the details to a email addres with or without iterating , or am i talking nonsens?
PS I have to go home now its getting dark, South Africa is not save in the night.
First thing tomorrow i going to trail to put that buttom with the,hopefully right query, think i going to come back anyway working or not
You will either do an INSERT OR rs.addnew so your above SQL Query is incorrect.
SQL:
INSERT INTO [table](<columns>) VALUES(<values>)
RS.AddNew:
rs.addnew
rs(<columnname>) = value
rs.update
And i do not know what you mean by this:
If i have to setup paging, i was thinking maybe to exlude a database, is it possible to send the page with the details to a email addres with or without iterating , or am i talking nonsens?
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question: http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
I wanted to say that maybe there is a way to exlude the database, aldo i wich to make it to work with the database,and with a click on a buttom to send the
page to a emailadres.
Maybe this could be easier but for now let me trail to insert as you recommend.