Introduction
This article is for the developer who has no experience with web custom controls and who wants to develop a custom control and wants to use
it in ASP.NET web pages by drag drop from the Toolbar like a simple ASP.NET button control. This custom control is not only a simple custom control it also works to check the user
ID like v-Id of the user in a domain whether the user exists in the domain or not.
Background
In my experience with user controls we can do the work but it is not very flexible. You cannot get the flavor of Toolbox drag and drop control easily and
what I feel after using this custom control the performance is faster with respect to any other process and in
a custom control you can give your own design own concept and make whatever you want of your choice. Here also you do not have to register the control like:
<%@ Register Assembly="CustomEMailControl" NameSpace="YourCustomNameSpace" TagPrefix="MyControl"%>
You just add the DLL and the custom control will get added to your tool box and just drag and drop the custom control. Like other controls it will be auto registered to that page and you can use it now.
Note: The main work while creating a custom control is you you have to add references of
System
, like System.Web
etc... and you have to inherit
from CompositeControl
in your class to get the properties of predefined controls like
TextBox
and ImageButton
if you want to add these flavours into your control easily.
Using the code
For using: Just download dll.zip and add to your ASP.NET Tool Box by browsing from the toolbar,
right click in the Tool Box then Choose Items. After that add this DLL by browsing and after that it will be added to the ToolBox then you can drag and drop into your
.aspx page and you can work on it.
For creating from scratch: Download the
CustomControl.zip and you will get a class. Just copy the class and you create a
Class Library and create your own class, or use this class by adding an existing item and check the Namespace and Assembly name. Then build the class library. Now you will get a
DLL in the bin folder in your project where you have created a class library.
Now just do the same in the above mentioned para.
Class Code
I have added comments so you can understand each line by its comments and you can do any changes
to the name, property name, ID according to your wish.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.UI.WebControls;
using System.Web.UI;
using System.Web;
using System.Security.Permissions;
using System.ComponentModel;
using System.DirectoryServices.AccountManagement;
using System.Configuration;
namespace CustomEMailControl
{
[
ToolboxData("<{0}:EMailChecker ID='AliasID' runat="\""server\"> </{0}:EMailChecker>")
]
public partial class EMailChecker : CompositeControl
{
TextBox _txtBoxAlias;
ImageButton _imgButton;
string _domainNames;
string _adConnection;
[Category("Appreance")]
[Description("Set The Check Name Icon")]
public string ImageButtonURL
{
get
{
EnsureChildControls();
return _imgButton.ImageUrl != null ? _imgButton.ImageUrl : string.Empty;
}
set
{
EnsureChildControls();
_imgButton.ImageUrl = value;
}
}
public Unit ImageButtonHeight
{
get
{
EnsureChildControls();
return _imgButton.Height != null ? _imgButton.Height : Unit.Empty;
}
set
{
EnsureChildControls();
_imgButton.Height = value;
}
}
public Unit ImageButtonWidth
{
get
{
EnsureChildControls();
return _imgButton.Width != null ? _imgButton.Width : Unit.Empty;
}
set
{
EnsureChildControls();
_imgButton.Width = value;
}
}
public Unit TextBoxWidth
{
get
{
EnsureChildControls();
return _txtBoxAlias.Width != null ? _txtBoxAlias.Width : Unit.Empty;
}
set
{
EnsureChildControls();
_txtBoxAlias.Width = value;
}
}
public string TextBoxText
{
get
{
EnsureChildControls();
return _txtBoxAlias.Text != null ? _txtBoxAlias.Text : string.Empty;
}
set
{
EnsureChildControls();
_txtBoxAlias.Text = value;
}
}
public string TextBoxCssClass
{
get
{
EnsureChildControls();
return _txtBoxAlias.CssClass != null ? _txtBoxAlias.CssClass : string.Empty;
}
set
{
EnsureChildControls();
_txtBoxAlias.CssClass = value;
}
}
public string DomainNames
{
get
{
EnsureChildControls();
return _domainNames != null ? _domainNames : string.Empty;
}
set
{
EnsureChildControls();
_domainNames = value;
}
}
public string ADCONNECTION
{
get
{
EnsureChildControls();
return _adConnection != null ? _adConnection : string.Empty;
}
set
{
EnsureChildControls();
_adConnection = value;
}
}
protected override void CreateChildControls()
{
Controls.Clear();
_txtBoxAlias = new TextBox();
_txtBoxAlias.ID = "txtAlias";
_txtBoxAlias.Width = TextBoxWidth;
_txtBoxAlias.CssClass = TextBoxCssClass;
_txtBoxAlias.Text = TextBoxText;
_imgButton = new ImageButton();
_imgButton.ID = "imgBtnCheckAlias";
_imgButton.Height = ImageButtonHeight;
_imgButton.Width = ImageButtonWidth;
_imgButton.ImageAlign = ImageAlign.AbsMiddle;
_imgButton.ImageUrl=ImageButtonURL;
_imgButton.Click += new ImageClickEventHandler(_imgButton_Click);
this.Controls.Add(_txtBoxAlias);
this.Controls.Add(_imgButton);
}
void _imgButton_Click(object sender, ImageClickEventArgs e)
{
if (_txtBoxAlias.Text.Trim().Length > 0)
{
string[] domains;
string[] allFullDomains;
string strDomainNames = DomainNames;
string userAlais;
try
{
if (strDomainNames != string.Empty)
{
domains = DomainNames.Split(',');
allFullDomains = new string[domains.Count()];
string userAlaisTrimed = _txtBoxAlias.Text.Trim();
if (userAlaisTrimed.Contains('@'))
{
userAlais = userAlaisTrimed.Substring(0, userAlaisTrimed.IndexOf('@'));
}
else
{
userAlais = userAlaisTrimed;
}
bool isFoundUser = false;
if (domains.ToString() != null)
{
for (int i = 0; i < domains.Count(); i++)
{
string domainName = domains[i] + "." + ADCONNECTION;
using (var domainContext = new PrincipalContext(ContextType.Domain, domainName))
{
using (var foundUser = UserPrincipal.FindByIdentity(
domainContext, IdentityType.SamAccountName, userAlais))
{
if (foundUser != null)
{
_txtBoxAlias.Text = string.Empty;
_txtBoxAlias.Text = foundUser.EmailAddress;
_txtBoxAlias.Font.Underline = true;
isFoundUser = true;
break;
}
}
}
}
if (isFoundUser == false)
{
_txtBoxAlias.Text = string.Empty;
_txtBoxAlias.Text = ".................";
_txtBoxAlias.ForeColor = System.Drawing.Color.Red;
}
}
}
else
{
_txtBoxAlias.Text = "No Domain Exist";
}
}
catch (Exception)
{
_txtBoxAlias.Text = "Wrong Domain Name";
}
}
}
protected override void RecreateChildControls()
{
EnsureChildControls();
}
protected override void Render(HtmlTextWriter writer)
{
AddAttributesToRender(writer);
writer.AddAttribute(HtmlTextWriterAttribute.Cellpadding, "1");
writer.RenderBeginTag(HtmlTextWriterTag.Table);
writer.RenderBeginTag(HtmlTextWriterTag.Tr);
writer.RenderBeginTag(HtmlTextWriterTag.Td);
_txtBoxAlias.RenderControl(writer);
writer.RenderEndTag();
writer.RenderBeginTag(HtmlTextWriterTag.Td);
_imgButton.RenderControl(writer);
writer.RenderEndTag();
writer.RenderEndTag();
writer.RenderEndTag();
}
}
}
After creating a DLL you can use it. But those who want to a create a custom control can remove the
below part from the main code. This part deals with checking the user in the Active
Directory when the system is in the domain
and does the work of user validation.
Remove the whole method of the image click:
void_imgButton_click(Object sender,ImageClickEventArgs e)
{
}
Points of Interest
If you see the comments for each line you can definitely understand how to create
a custom control and how it works and how to render the control
on the browser using HTML rendering and you can do any mix of controls using this way.