"<h3>Idle exclusion Request</h3>" &
"<strong> Items </strong>" &
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>FC Code</th> <th> Vehicle Type </th> <th> Vehicle SN </th> <th> RentCost </th> <th> RentStartDate </th> <th> RentEndDate </th> <th> 유휴 배제 </th> <th> 신청일 </th> <th> 신청자 </th> <th> 신청자 Email </th>
</tr>
<tr>" &
Concat(Col,
"<td>" & FC_In_Use & " </td>
<td>" & Vehicle_Type & " </td>
<td>" & Vehicle_SerialNo & " </td>
<td>" & Rent_Cost & " </td>
<td>" & Rent_StartDate & " </td>
<td>" & Rent_EndDate & " </td>
<td>" & Dropdown2.SelectedText.Value & " </td>
<td>" & Label1.Text & " </td>
<td>" & Subject_TextInput_Cancle_1.Text & " </td>
<td>" & Subject_TextInput_Cancle_2.Text & " </td>","</tr><tr>") &
"</table>"
I 'm using the selected text of the dropdown with the code above.
<td>" & Dropdown2.SelectedText.Value & " </td> <--In this part, I want to insert the selected text in the dropdown and the text written in the text input at the same time.