c# - HTML tag not appearing on page -



c# - HTML <A> tag not appearing on page -

i have dataset 2 datatable. want show fields of datatables in labels.

i using stored procedure. code here------

private void getinfocompany() { int companyid; if (int.tryparse(hidcompanyid.value, out companyid)) { var ds = companydata.getcompanyinfo(companyid); if (ds != null && ds.tables[0].rows.count > 0) { var dtcontact = ds.tables[0]; var dtprofile = ds.tables[1]; } if (dtcontact != null && dtcontact.rows.count > 0) { lblcontactname.text = dtcontact.rows[0]["name"].tostring(); lblemailid.text = dtcontact.rows[0]["email"].tostring(); lblphoneno.text = dtcontact.rows[0]["contactnumber"].tostring(); lblstate.text = dtcontact.rows[0]["state"].tostring(); lblcountry.text = dtcontact.rows[0]["country"].tostring(); } if (dtprofile != null && dtprofile.rows.count > 0) { lblcompanyname.text = dtcontact.rows[0]["companyname"].tostring(); lblwebsite.text = dtcontact.rows[0]["website"].tostring(); lblemail.text = dtcontact.rows[0]["email"].tostring(); lblaltmail.text = dtcontact.rows[0]["alternateemail"].tostring(); lblcompanyaddress.text = dtcontact.rows[0]["address"].tostring(); lblphno.text = dtcontact.rows[0]["phone1"].tostring(); lblmobileno.text = dtcontact.rows[0]["mobile1"].tostring(); } } }

what css using footer table

.footertable{background-color:#191919;width:100%;} //inline css <table cellpadding="5" cellspacing="1" border="0" class="footertable"> <tr> <td> <a href="#"> link </a> </td> </tr> </table>

c# asp.net

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -