Priority
Show-stopper
Type
Bug 
State
Fixed 
Assignee
Sergey Coox 
Subsystem
Language - ASP.NET 
Affected versions
Fixed in
Fixed in build
Next build 
Fixed in build
250
  • Submitted by   Sergey Coox
    3 years ago (06 Aug 2006 17:53)
  • Updated by Sergey Coox
    3 years ago (09 Sep 2006 13:33)
  • Jira: RSRP-25668
    (history, comments)

RSRP-25668

HTML controls

0
Default.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="MainForm" runat="server">
<div>
<ul id="TestUnorderedList" runat="server">
<li>List Item</li>
</ul>
</div>
</form>
</body>
</html>

Default.aspx.cs


using System;
using System.Web.UI;

public partial class _Default : Page
{
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
TestUnorderedList.Visible = false;
}
}


Issue was closed
Comments (0)
 
History (0)
 
Links
 
Issue has no comments