How do I make a submit button in the asp code is my question actually.
Code:
<input type="submit" value="Mail Them" Name="MailSubmit">
' this line goes just above the </Form> tag.
Here SubmitButtonName is MailSubmit and SubmitButtonValue is Mail Them
How do I make that and add a strLogin which is their ID? That is my question.
Code:
Response.write "<input type='checkbox' name='chkEmails' value='" & rs("CONTACT EMAIL") & "_" & rs("CLIENT NAME") & "_" & rs("Password") & "_" & rs("USER ID") & "'>"
...
...
Code:
for j=0 to Ubound(arrEmails)
arrTemp=split(arrEmails(j),"_")
strEmail=arrTemp(0)
strUserName=arrTemp(1)
strPassword=arrTemp(2)
strLogin=arrTemp(3)
...
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection