Click here to Skip to main content
15,886,799 members
Articles / Web Development / ASP.NET

WebSlideProjector - Using supersized! jQuery and IZWebFileManager

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
21 Feb 2012GPL35 min read 30.7K   1.3K   10  
WebSlideProjector is a ASP.NET 3.5 Web Application that manages a fullscreen background slideshow (presented by supersized! jQuery library) with handling of anonymous user Projector Setup and login-administered Slide Carousel loading (using IZWebFileManager ASP.NET File Manager library).
/// Author: Petr Pechovic
/// Contact: http://www.pechovic.eu
///
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.UI;

namespace DotNetSources.Web.UI.Buttons {

    /// <summary>
    /// Collection of static methods used widely in project. 
    /// </summary>
    public static class Helper {

        /// <summary>
        /// Provide ButtonSupportPage. The Exception can be thrown if page is not derived from ButtonSupportPage.
        /// </summary>
        /// <param name="page"></param>
        /// <returns></returns>
        public static BoxContextPage RetypeToBoxContextPage(Page page) {
            BoxContextPage ret = page as BoxContextPage;
            if (ret == null)
                throw new Exception("The page must be derived from BoxContextPage.");
            return ret;
        }

        /// <summary>
        /// This method exists as a back door when some of the control has a special way to generate ClientID.
        /// Could be for example AccordionExtender from ACT.
        /// </summary>
        /// <param name="c"></param>
        /// <returns></returns>
        public static string GetJSId(Control c) {
            return c.ClientID;
        }

    }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
United States United States
I enjoy and take seriously the craft of programming, and I improve upon my skills daily. Start day: coffee is always a good idea!

Comments and Discussions