anyone please help me to do searching in ASP classic(inventory system)..i newbie in programming and students..below is the screen look like.
http://imageshack.us/photo/my-images/707/searchc.jpg/
explanation
-
User can input free text in free text field
-
User can select either searching by assetNo/serialNo or select All.
-
User can select all field..
then data will display below with paging..user also can save in excel.
code.
<%
Dim adoCon
Dim rsGuestbook
Dim strSQL
Dim lngRecordNo
lngRecordNo = CLng(Request.QueryString("ID"))
Set rsGuestbook = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT * FROM tbl_Master WHERE ID=" & lngRecordNo
rsGuestbook.Open strSQL, oConn
%>
Database SQL Server
table name (tbl_Master)..Attributes (AssetNo,Region,SerialNo,Manufacturer,dateCreate)
Thanks you so much
Im not sure what exactly are you looking for but this might help: