Well thanks guys, I finally figured it out and I thought I would post it so if anyone needs the same thing for anything and they look at this post it will tell them how to do it.
First this is the code I stuck in Enterprise Manager to create the stored procedure..
CREATE PROCEDURE spFindIdent @FullName nvarchar(30), @DOB nvarchar(8)
AS
SELECT DPS_NUMBER, NAM, SEX, RACE, DOB1, HGT, WGT, EYE, HAI
FROM Ident
Where NAM LIKE @FullName
AND DOB1=@DOB
GO
Then in the ASP code this is what I used to run it..
strSql = "exec spFindIdent @FullName='" & strSearchFullName & "%', @DOB='" & strSearchDOB & "'"
set rs = my_Conn.Execute (strSql)
Brad
Web Hosting with SQL Server @ $24.95 per month