Man, what is with some of the questions recently....
Please provide the information regarding the ASP code that how to add the data ito MSSQL and how to view the same data in table format.
To answer your question in the manner that it deserves to be answered. ASP uses VBScript or Javascript to programaticly connect to a database (using ADO or ODBC or similar) and executes SQL statements.
The SQL statements can perform any number of database activities including selecting data, inserting data, updating data and deleting data.
Acting as an "interface" ASP can be used to retrieve data from a database and then be used to format that data as HTML to be presented on a web page.