|
|
|
|
Copyright © BVR India.
All Rights Reserved.
|
|
|
<%
'Dim MM_cs_STRING,strSql,rs
'MM_cs_STRING = "DRIVER=Microsoft Access Driver (*.mdb);DBQ="& Server.MapPath("Biz.mdb")
Set rs = Server.CreateObject("ADODB.Recordset")
strSql = "select * from Product where SrNo = 3"
rs.CursorType = 3
rs.LockType = 3
rs.Open strSql,Con
%>
|
|
| |