Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Substitute a DIV for a SPAN with the asp:panel control

Status
Not open for further replies.
Jan 11, 2007
51
I'm using a panel to hide some html code, but the panel causes a line break, so I'd prefer it to write out a span.

Another option I thought of, but am not sure is possible, is to use a <SPAN> tag with a runat="server" property, and somehow hide the <span> during runtime, though like I said I'm not sure how to do that, if its evfen possible.

Thanks
 
You can add the runat attribute to the SPAN tag as well as an ID. Then in code you can reference the SPAN tage by ID.

ex:
myspan.visible = FALSE
 
I'm using a panel to hide some html code, but the panel causes a line break,
That is because a Panel renders a div tag and the default behaviour of a div tag is to have "display:block". You could change this behaviour to "display:inline" and then they won't go under each other e.g.
Code:
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] >
<head runat="server">
    <title>Untitled Page</title>
    <style type="text/css">
        .inline {display:inline}
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Panel ID="Panel1" runat="server" CssClass="inline">
        Panel 1
        </asp:Panel>
        <asp:Panel ID="Panel2" runat="server" CssClass="inline">
        Panel 2
        </asp:Panel>
    </div>
    </form>
</body>
</html>


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top