Answers

Question and Answer:

  Home  ASP Programming

⟩ How to insert the records in a database table by using ASP?

<%

'Open a Connection with database

Dim DSN

DSN="Provider=SQLOLEDB.1; Persist security info=false; user id=sa; password=main; initial catalog=database name Data Source=localhost"

set objCon=Server.CreateObject("ADODB.Connection")

objCon.Open DSN

%>

<%

'Get the Query

Dim SQL

SQL="insert into tablename values('a','b','c')"

%>

<%

'Insert Into Database

objCon.Execute(SQL)

%>

 133 views

More Questions for you: