<%@ Language=VBScript %> Untitled Document <% MemId = request.querystring("memId") MemId = int(MemId) set MemCon = server.createobject("ADODB.connection") MemCon.open "mem" , "" set MemSlc=server.CreateObject("ADODB.recordset") MemSlc.open "SELECT * FROM membership WHERE id=" &MemId ,Memcon,3,3 if MemSlc.RecordCount >0 then %>
Membership:  <%=MemSlc("id")%> MEHR  FOUNDATION
Date:  <%=MemSlc("memdate")%>
Individual
Name:  <%=MemSlc("firstname")%>
Last Name:  <%=MemSlc("lastname")%>
Education:  <%=MemSlc("Education")%>
Occupation:   <%=MemSlc("Occupation")%>
Home Address:   <%=MemSlc("HomeAd")%>
Tel:  <%=MemSlc("telh")%>
Mailing Address:  <%=MemSlc("MailAd")%>
Tel:  <%=MemSlc("telm")%>
Email Address:  <%=MemSlc("email")%>
Corporation/Legal Entity
Company Name:  <%=MemSlc("companyname")%>
Tax Id:  <%=MemSlc("tax")%>
Area of Business:  <%=MemSlc("business")%>
President/CEO Name:  <%=MemSlc("CeoName")%>
Address:  <%=MemSlc("address")%>
Tel:  <%=MemSlc("telc")%>
How did you hear about us?  <%=MemSlc("aboutus")%>
How would you like to be involved? <%=MemSlc("Involved")%>

<%else%> <%end if MemSlc.close MemCon.Close%>