I want to bind the label value (which dynamically loads) into email body.
objMessage.TextBody=objMessage.TextBody & XXXXX & ": " & Request("Parts") & vbCrLf
Dim PartsDesc
PartsDesc = request.querystring("partsdesc")
<%
Response.Write "<label for = 'partsTxtBox' class = 'col-sm-4 col-form-label' name='"& PartsDesc &"'>" & PartsDesc & " </label>"
%>
I want to insert the label name in XXXXX position in the email body. How can I do that?
question from:https://stackoverflow.com/questions/65840935/classic-asp-how-to-bind-dynamic-label-name-in-email-body