Click here to Skip to main content
15,883,901 members
Articles / Web Development / ASP.NET
Article

A Client Script Helper Utility Class

Rate me:
Please Sign up or sign in to vote.
3.62/5 (35 votes)
19 Mar 20061 min read 41.4K   688   31   3
The "ClientScriptHelper" utility class will help you by not requiring you to remember the client side codes.

Sample Image - clnt_Side_src.png

Introduction

Using the "Add" method of "Attributes" property of ASP.NET web controls you ca add client side functionalities (like showing message, print dialog, close browser, browser back, pop-up window etc) to your code. However, invoking the client side behaviors to the web controls, you have to remember the corresponding client script codes as well as each time you want to use that by adding the corresponding attribute. The "ClientScriptHelper" utility class will help you by not requiring you to remember the client side codes in this case.

<o:p> 

Using the class

<o:p> 

As the "Add" method of "Attributes" property of ASP.NET web controls requires to be invoked in the "Page Load" event of the ASP.NET, you need to call the helper static methods, in the corresponding event handler.

 

protected System.Web.UI.WebControls.LinkButton lbtPrint;
protected System.Web.UI.WebControls.LinkButton lbtClose;
protected System.Web.UI.WebControls.LinkButton lbtShowPopup;
protected System.Web.UI.WebControls.LinkButton lbtShowMessage;
 
private void Page_Load(object sender, System.EventArgs e)
{
    if ( !IsPostBack)
    {
    Ashraf.ClientScriptHelper.AddPrint(lbtPrint);
    Ashraf.ClientScriptHelper.AddCloseWindow(lbtClose);
    Ashraf.ClientScriptHelper.AddOpenPopupWindow(lbtShowPopup, "<A href="http://www.codeproject.com/">http://www.codeproject.com/</A>");
    Ashraf.ClientScriptHelper.AddMessage(lbtShowMessage, "Hello World");
    }
}

 

 

In the provided sample page we have four ASP.NET LinkButton control, for each of them we have assigned different functionalities. Since, to add client side functionalities to the web controls only once is enough, we call the methods in the "!IsPostBack" code block.

<o:p> 

The code below adds the 'Show Message box' functionality to a web control:

<o:p> 

Ashraf.ClientScriptHelper.AddMessage(lbtShowMessage, "Hello World"); 

 

The code below adds the 'Pop-up' functionality to a web control:

<o:p> 

Ashraf.ClientScriptHelper.AddOpenPopupWindow(lbtShowPopup, "<A href="http://www.codeproject.com/">http://www.codeproject.com/</A>");

 

The code below adds the 'Print Dialog' functionality to a web control:

<o:p> 

Ashraf.ClientScriptHelper.AddPrint(lbtPrint);

 

The code below adds the 'Browser Close' functionality to a web control:

<o:p> 

Ashraf.ClientScriptHelper.AddCloseWindow(lbtClose);

 

Conclusion:

<o:p> 

Any advice or correction for this class will be highly appreciated.

<o:p> 

<o:p> 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Chief Technology Officer
Bangladesh Bangladesh
Mohammad Ashraful Alam is a Software Engineer, who is dedicated to Microsoft .NET based development. This Bangladeshi national is involved with project management and development of several US based software projects from his country. Already he has managed and developed 15 software projects, which are being used by several users of different countries, such as USA, Canada, Australia, and Bangladesh. While developing and managing a team, he contains and maintains a set of well defined engineering practices developed by him and other online developer community. Beside software development, he has also written several technical articles and research papers published by IEEE Computer Society and many other worlds recognized publishers.

Before becoming engaged with software development, he was involved with Bengali literature and several Bengali news papers as freelance journalist and published around 150 articles, essays and short stories.

Due to his willingness to give effort to improve and share better software development practices, Ashraf has awarded as “Most Valuable Professional” (MVP) in ASP.NET category by Microsoft for multiple times, since 2007.

When not engaged with technical stuffs, he likes to pass time with his friends, and family members, listens music or watches TV.

Check his portfolio at: http://www.ashraful.net/.

Check his blog: http://blog.ashraful.net/.

Catch him thru mail: admin [attt] ashraful [dotttt] net (anti-spam text).

Comments and Discussions

 
Generalthere's an unwanted postback. Pin
S-Online21-Mar-06 10:28
S-Online21-Mar-06 10:28 
GeneralBuggy Pin
DeKale19-Mar-06 7:42
DeKale19-Mar-06 7:42 
GeneralRe: Buggy Pin
Mohammad Ashraful Alam19-Mar-06 7:46
Mohammad Ashraful Alam19-Mar-06 7:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.