ASP.Net/Page/Page Theme — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 11:53, 26 мая 2010
Disable Page Theme (C#)
<%@ Page Language="C#" EnableTheming="false" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Disable Page Theme</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label
id="Label1"
Text="Don"t Theme Me!"
Runat="server" />
</div>
</form>
</body>
</html>