Click to See Complete Forum and Search --> : Need to Display Result


khandu
03-23-2005, 03:18 AM
Hi

I need to make a site to display results of exams

So can any1 teach me how to?? Also If i could search database for particular results too..

Need to have features like add result , search result, List result according to choice

Also like u know ppl can fill their bio-data forms and that can be saved in a DB and can be searched and displayed..

Will be great help

I know HTML but dont have idea bout ASP or Database.. The DB i think i will use it SQL ( free sites give that only)

buntine
03-23-2005, 04:59 AM
The are describing some of the key problems server-side programming is there to solve. I suggest you hire or purchase a book on the sbject if you truly want to learn not just the code, but the concepts behind it. There are also several online resources, such as:

- www.asp101.com
- www.4guysfromrolla.com
- www.w3schools.com

You will need to setup a database (such as MS Access or SQL Server) to manage your data. You need not worry about your limitations to SQL, as it is the only universally recognised data management language (or query language, to be more precise). Each of the Web Sites I listed above provide in-depth tutorials and examples of writing data-driven Web Applications. I suggest you take a look at each.

Esentially, there are three key technologies you will need to know -- or atleast understand:

- ASP
- ADO (ActiveX Data Objects)
- SQL

Regards.