History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-25668
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Blocker Blocker
Assignee: Sergey Coox
Reporter: Sergey Coox
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

HTML controls

Created: 06 Aug 06 17:53   Updated: 09 Sep 06 13:33
Component/s: Language - ASP.NET
Fix Version/s: 2.0.1
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Fixed in build: 250
Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=25668


 Description  « Hide
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; }

}



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.