I'm sure one of you html experts can solve this for me...
This asp file appears to work fine (I think if I'm not signed in I get a login page in the iframe once,, after that once it appears to work until I log out..
<% Response.Write hs.GetPageHeader("", "", "", "", False, False, True, False, False) %>
<% Response.Write hs.GetPageHeader("", "Comcast Channel Lineup", "", "", False, False, False, False, False) %>
<br />
/body> iframe height=100% width=100% border='' frameborder='1' framespacing='0' src='https://www.xfinity.com/support/local-channel-lineup/' name="I1"></iframe><
<br>
<br />
<% Response.Write hs.GetPageFooter(false) %>"
Now this code just gives me a blank window in the iframe no matter if I'm logged in or not,,,
<% Response.Write hs.GetPageHeader("", "", "", "", False, False, True, False, False) %>
<% Response.Write hs.GetPageHeader("", "Comcast TV Guide", "", "", False, False, False, False, False) %>
<br />
/body> iframe height=100% width=100% border='' frameborder='1' framespacing='0' src='https://tv.xfinity.com/listings' name="I1"></iframe><
<br />
<br />
<% Response.Write hs.GetPageFooter(false) %>"
I'm thinking I need to add user=XXX&pw=xxx ,, I just not sure how the syntax should look like..
TIA
DEM
This asp file appears to work fine (I think if I'm not signed in I get a login page in the iframe once,, after that once it appears to work until I log out..
<% Response.Write hs.GetPageHeader("", "", "", "", False, False, True, False, False) %>
<% Response.Write hs.GetPageHeader("", "Comcast Channel Lineup", "", "", False, False, False, False, False) %>
<br />
/body> iframe height=100% width=100% border='' frameborder='1' framespacing='0' src='https://www.xfinity.com/support/local-channel-lineup/' name="I1"></iframe><
<br>
<br />
<% Response.Write hs.GetPageFooter(false) %>"
Now this code just gives me a blank window in the iframe no matter if I'm logged in or not,,,
<% Response.Write hs.GetPageHeader("", "", "", "", False, False, True, False, False) %>
<% Response.Write hs.GetPageHeader("", "Comcast TV Guide", "", "", False, False, False, False, False) %>
<br />
/body> iframe height=100% width=100% border='' frameborder='1' framespacing='0' src='https://tv.xfinity.com/listings' name="I1"></iframe><
<br />
<br />
<% Response.Write hs.GetPageFooter(false) %>"
I'm thinking I need to add user=XXX&pw=xxx ,, I just not sure how the syntax should look like..
TIA
DEM
Comment