Hello;
I am working on providing a live feed function for a client using ASP.Net and SQL Server 2008. I can get the feed to display in a div through code and it looks very good in most browsers and functions right until I browse the page on my Android phone. Then
all the formatting changes and is not being displayed correctly. I need help to figure out what I need to change so this can display on all platforms properly. Sample code follows.
The Form Page.
<body>
<form id="form1" runat="server">
<div runat="server" id="messagelist" class="_MsgDiv">
</div>
</form>
</body>
Code Behind
SqlDataReader tblQuery = cmdQuery.ExecuteReader();
while (tblQery.Read())
{
Literal litRslt = new Literal();
litRslt.Text = @"div class='_tlkSchedule'><span class=\'_talker\'>" ...
Go to the complete details ...