Hi anand.mand,
Check this example. Now please take its reference and correct your code.
HTML
C#
<table style="width: 100%;" border="1">
<tr>
<th style="text-align: center;">
JobNames
</th>
</tr>
<%if (Session["JobNamesSucces"] != null)
{
for (int i = 0; i < Session["JobNamesSucces"].ToString().Split(',').Length; i++)
{%>
<tr>
<td>
<%=Session["JobNamesSucces"].ToString().Split(',')[i]%>
</td>
</tr>
<%}
} %>
</table>
VB.Net
<table style="width: 100%;" border="1">
<tr>
<th style="text-align: center;">
JobNames
</th>
</tr>
<%If Session("JobNamesSucces") IsNot Nothing Then
For i As Integer = 0 To Session("JobNamesSucces").ToString().Split(","c).Length - 1%>
<tr>
<td>
<%=Session("JobNamesSucces").ToString().Split(","c)(i)%>
</td>
</tr>
<% Next
End If%>
</table>
Code
C#
protected void Page_Load(object sender, EventArgs e)
{
Session["JobNamesSucces"] = "Developer,Tester,DBDesigner";
}
VB.Net
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
Session("JobNamesSucces") = "Developer,Tester,DBDesigner"
End Sub
Screenshot