



Sample VS2008 Project is available at http://snipurl.com/asp_net_extendercontrol_sample.zip
This is the continuation of ASP.NET Extender Control: Decorating & Componentizing Web Controls with Client Behavior. In this walkthrough, the following things are explained:
The client side implementation should consume ASP.NET AJAX JavaScript API, in order to get the benefit of this.
As explained in previous section, this walkthrough explains how to add mouse over and mouse out effect to controls of type Button.
Steps
Based on your application architecture and/or decorator usage, define the decorator class either within web project or separate assembly. HoverExtension is the decorator class which extends ExtenderControl.
Based on figure 3 in the previous post, the following are the steps need to be completed:
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections.Generic;
namespace Udooz
{
[TargetControlType(typeof(Button))]
public class HoverExtension : ExtenderControl
{
private string _hoverCssClass;
public string HoverCssClass
{
get { return _hoverCssClass; }
set { _hoverCssClass = value; }
}
private string _normalCssClass;
public string NormalCssClass
{
get { return _normalCssClass; }
set { _normalCssClass = value; }
}
protected override IEnumerable<ScriptDescriptor> GetScriptDescriptors(Control targetControl)
{
ScriptBehaviorDescriptor descriptor = new ScriptBehaviorDescriptor("Udooz.HoverExtension", targetControl.ClientID);
descriptor.AddProperty("hoverCssClass", this.HoverCssClass);
descriptor.AddProperty("normalCssClass", this.NormalCssClass);
return new ScriptBehaviorDescriptor[] { descriptor };
}
protected override IEnumerable<ScriptReference> GetScriptReferences()
{
ScriptReference reference = new ScriptReference();
reference.Assembly = "HoverExtension";
reference.Name = "Udooz.HoverExtension.js";
return new ScriptReference[] { reference };
}
}
}
The TargetControlTypeAttribute (line 10 ) enables to specify to which web controls this decorator can be applied. HoverExtension can only be applied to Button type. The next step is to define decorated properties for the server side so that it can be used in ASPX page. NormalCssClass and HoverCssClass are two properties defined to set style name for normal and hover state (line 15 – 26).
As discussed in the previous post, the decorated class implements IExtenderControl’s methods GetScriptDescriptors (line 28-34) and GetScriptReferences (line 36-42). The ScriptBehaviorDescriptor does two things here:
The ScriptReference is used to specify on which assembly the client behavior script file will be included (line 39) and the script file name (line 40).
Based on figure 3 in the previous post, the following are the steps need to be completed those are implemented in HoverExtension.js:
Type.registerNamespace('Udooz');
Udooz.HoverExtension = function(element)
{
Udooz.HoverExtension.initializeBase(this, [element]);
this._hoverCssClass = null;
this._normalCssClass = null;
}
Udooz.HoverExtension.prototype =
{
initialize: function() {
Udooz.HoverExtension.callBaseMethod(this, 'initialize');
$addHandlers(this.get_element(),
{ 'mouseover': this._onMouseOver,
'mouseout': this._onMouseOut
},
this);
this.get_element().className = this._normalCssClass;
},
dispose: function() {
$clearHandlers(this.get_element());
Udooz.HoverExtension.callBaseMethod(this, 'dispose');
},
_onMouseOver: function(e) {
if (this.get_element() && !this.get_element().disabled) {
this.get_element().className = this._hoverCssClass;
}
},
_onMouseOut: function(e) {
if (this.get_element() && !this.get_element().disabled) {
this.get_element().className = this._normalCssClass;
}
},
get_hoverCssClass: function() {
return this._hoverCssClass;
},
set_hoverCssClass: function(value) {
if (this._hoverCssClass !== value) {
this._hoverCssClass = value;
this.raisePropertyChanged('hoverCssClass');
}
},
get_normalCssClass: function() {
return this._normalCssClass;
},
set_normalCssClass: function(value) {
if (this._normalCssClass !== value) {
this._normalCssClass = value;
this.raisePropertyChanged('normalCssClass');
}
}
}
// Optional descriptor for JSON serialization.
Udooz.HoverExtension.descriptor = {
properties: [{ name: 'hoverCssClass', type: String },
{ name: 'normalCssClass', type: String}]
}
// Register the class as a type that inherits from Sys.UI.Control.
Udooz.HoverExtension.registerClass('Udooz.HoverExtension', Sys.UI.Behavior);
if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
A client side class Udooz.HoverExtension is defined. The constructor initialize the given “element”. The element reference is the target web control which will be given by ASP.NET at run time using ASP.NET AJAX $create() method.
There are two properties normalCssClass (line 56-65) and hoverCssClass (line 45-54) defined.
The mouse over and mouse out events are registered (line 17-21) and those handlers are defined (line 32-42).
To package the HoverExtension.js into HoverExtension.dll, this script needs to be declared as web resource so that ASP.NET AJAX identifies and consumes this as web resource and invoke this via ScriptResource.axd handler. In the AssemblyInfo.cs file of HoverExtension.dll, the following code needs to be added.
[assembly: System.Web.UI.WebResource("Udooz.HoverExtension.js", "text/javascript")]
Build the HoverExtension project and refer this into a ASP.NET 3.5 web project. The page should register HoverExtension type and can use wherever require.
<%@ Register Assembly="HoverExtension" Namespace="Udooz" TagPrefix="udooz" %>
Before consuming the control, the actual styles should be required.
<style type="text/css">
.Hover
{
background-color:Red;
border-color:Yellow;
}
.Normal
{
background-color:Aqua;
border-color:Blue;
}
</style>
ASP.NET AJAX ScriptManager is required for runtime behaviors.
<pre> <asp:ScriptManager ID="ScriptManager1" runat="server" />
The actual button control definition and extender control usage would be
<pre> <asp:Button ID="button" Text="Extended Button" runat="server" /> <udooz:HoverExtension ID="extender1" HoverCssClass="Hover" NormalCssClass="Normal" TargetControlID="button" runat="server" />
When executing this page, ASP.NET AJAX creates the following for extension.
<span lang="EN">
<script type="text/javascript">
//<![CDATA[
Sys.Application.initialize();
Sys.Application.add_init(function() {
$create(Udooz.HoverExtension, {"hoverCssClass":"HighLight","normalCssClass":"LowLight"}, null, null, $get("button"));
});
//]]>
</script>




ASP.NET server controls componentize (or encapsulate) the UI behaviors in a manageable way so that enhancements or modification is much simpler. These are like swiss-army-knife, somebody use server side and client side features in balanced way, others may heavily stick with either server side or client side. The major reason for people stick with server side code is to avoid client side script managebility. Unlike ASP.NET controls those can be componentized in assemblies, JavaScript needs to be deployed separately in an uncontrollable way. The problem with this are:
Another problem is to decorate or extend a web control on demand basis is not standardized.
Encapsulating client script with .NET assembly is one of the feature introduced in ASP.NET AJAX. By this feature, ASP.NET 3.5 introduces “System.Web.UI.ExtenderControl” which enables you to extend or decorate one or more web controls without interrupting the actual controls.
ExtenderControl is the decorator here which in turn implements IExtenderControl interface. (See figure 1)

Figure 1
It contains two methods,
From a decorator perspective, ExtenderControl facilitate you with some additional properties. See figure 2. It does not allow you for custom rendering. (See figure 2).

Figure 2
The TargetControlID is used to assign the extended behavior to a control in the page.
In this example, you can understand how extender and its associated classes works, and how ASP.NET AJAX helps you to decorate a web controls and how to componentize client side behavior in to .NET assembly. Figure 3 depicts how it is working.

Figure 3
Part 2 of this post will explain this in detail with sample.




Though it is an uncommon attack, but it highlights the backdoor of Virtual Machine such as .NET, JVM.
Rootkit is a system which consists of programs designed to hide or obscure the fact that a system has been compromised. – Wikipedia
.NET-Sploit is a tool which is used to build MSIL rootkit that enables the user to inject malicious behavior to the framework DLLs (See the following picture). The only challenge for the hacker is to compromise the particular system with administrator rights.

What does it actually mean?
After the compromising a target system, a hacker can modify .NET framework DLL those are normally located in GAC by assembling and dessembling with regular .NET tools. This approach does not need to touch .NET applications. All the application invoke required tampered framework DLLs which will behave strangely. For example, using the rootkit, you can always print “Hacked” message in
System.Console.WriteLine(string v)
irrespective of any string value. Worst part is, if a hacker is tampered “Authenticate()” in System.Web.dll and he can capture the username and password. Ofcourse, he can send the details to someone else using SendToUrl().
What can you do with framework rootkit?
How is it possible?
Manually you can attack the framework by the following steps:
A surprising fact is GAC does not perform any additional check for verifying strong name of a DLL when coping the modified framework DLL into the actual folder path. For example, you can modify mscorlib.dll version 2.0 and place it into c:\WINDOWS\assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089.
What is .NET-Sploit?
A generic framework modification tool to inject code. You can download at http://www.applicationsecurity.co.il/english/NETFrameworkRootkits/tabid/161/Default.aspx.




When I was downloading the SP1 of .NET 3.5 months before, I did not realized that there are some CLR improvements in that release apart from some new features such as ADO.NET data services, improved WCF, etc. The improvements are expected to be in .NET 4.0 (CLR 4.0?), however .NET 3.5 SP1 has some CLR improvements:
I am more instrested in JIT optimization done in SP1. Let us see those improvements.
Inlining and Structs
Inline Method: Place a method’s body into the body of its callers and remove the method (function pointer). This is an explicit option in C++, however C# (.NET) doesn’t has, because it is in CLR’s hand.
For those, who don’t know about inline method, here the example:
int add(int a, int b)
{
return a+b;
}
int c = add(5, 6);
// CLR actually inline "add"
int c = 5+6;
The major benefit of the above inline method is the number of IL code generated for “inline” method which inherently give performance benefit. Since, inline is in CLR’s control, it does not treat a method as inline for the following:
In 3.5SP1, methods with “struct” argument are treated as “inline” if it satisfies other 4 constraints.
Improved Assertions
Null and range check, typeof check and comparisons have been improved.
Branch Straightening
JIT compiler now able to straighten the code branch based on common code path and fall-through code path justification. Based on this, fall-through codes are moved further down. Based on Surupas Biswas article, there was 10% improvement in throughput in some ASP.NET benchmarks.
Let us see more about NGen improvements and ASLR mode usage in another post.


More Options ...
Categories
Tag Cloud
Blog RSS
Comments RSS

Void « Default
Life
Earth
Wind
Water
Fire
Light 