Hello everyone, first I already posted this question looking from itextsharp point of view but did not get a lot responses. So I am trying to approach this differently. I have this code:
If Not customer_id Is Nothing Then
For Each c_id As String In customer_id
label1.text=rdr("customer_name")
Next
End If
Here is the html mark up:
<div>
<img border="0" src="http://www.example.com/img/logo.jpg" alt="My company" />
</div>
<div class="float-right max-width13 right-align">
<div>
Customer name: <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
< ...
Go to the complete details ...