Click here to Skip to main content
15,881,898 members
Articles / Programming Languages / C#
Article

Running a Web Site in Kiosk Mode with C#

Rate me:
Please Sign up or sign in to vote.
4.17/5 (13 votes)
27 Feb 2008CPOL5 min read 108.6K   3.3K   42   12
This article is about running a Web site in kiosk mode and disabling some normal keyboard control functionality to limit a user’s ability to depart from kiosk mode.
Image 1

Introduction

This article addresses a simple approach to supporting the display of a Web site in kiosk mode using a simple WinForms application. Kiosk mode is used to display the contents of a Web page without the browser controls visible. The notion for doing something like that is that one can use a Web site to display some specific information to a user without allowing the user to navigate away from the Web site. For example, if one needed to display a building map in the lobby of a business or allow a user to investigate a product line and place a sales order from a mall display, a kiosk might be just the ticket.

Naturally, as with anything, there are problems with keeping a user locked on to a page or set of pages on the site. Most of these are easily handled but the design of the site has to be carefully considered in advance (for example, one would not want to display advertisements that would allow the user to link off to a different Web site). Of course if the user has a keyboard, it might be a good idea to disable certain hot key combinations to prevent the user from opening a new browser window or closing the current browser window. One may even need to violate default security policy on the machine to prevent the user from opening the task manager or start menu. This example addresses disabling hot key combinations that don't violate SAS; however, if it is necessary, one can investigate making registry changes or other alternative methods for disabling CTRL+ALT+DEL and CTRL+ESC including third party controls or the MSGina.DLL (which I understand no longer works with Vista).

A better answer might be to investigate the use of a touch interface, a touch interface virtual keyboard, or a kiosk keyboard that will not permit a user to input such key combinations; the easiest way to keep a user from messing around with the operating system and other applications on the machine is of course to remove the standard keyboard from the equation.

An alternative to kiosk mode Web sites would be to use full screen WinForms applications; the same issues still apply in terms of CTRL+ALT+DEL and CTRL+ESC but they can be managed differently; for example one could use key previews to block certain key combinations from going through.

Image 2
Figure 1: The demonstration application running.

Image 3
Figure 2: Displaying a Website in Kiosk Mode.

Getting Started

In order to get started, unzip the included project and open the solution in the Visual Studio 2008 environment. In the solution explorer, you should note these files (Figure 3):

Image 4
Figure 3: Solution Explorer.

The Main Form (frmKioskStarter.cs)

The main Form is the only form contained in the application; all of the application specific code required to display the Web site in kiosk mode is contained in this Form as is all of the code used to block certain hot key combinations. The code shows how to shut down many of the browser related hot key combinations but does not do anything to violate the default security policies of the machine.

The code is pretty simple. If you'd care to open the code view up in the IDE, you will see that the code file begins as follows:

C#
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

The imports are per the default configuration for a Windows application; some unnecessary libraries were omitted, generics were dropped from the collections reference and Interop services was added to the list.

Following the imports, the namespace and class are defined:

C#
namespace KioskMode
{
    public partial class frmKioskStarter : Form
    {

Following the class declarations, a region is defined and the DLL imports needed to alter the global hot keys and to disable the status bar are included:

C#
#region Dynamic Link Library Imports

        [DllImport("user32.dll")]
        private static extern int FindWindow(string cls, string wndwText);

        [DllImport("user32.dll")]
        private static extern int ShowWindow(int hwnd, int cmd);

        [DllImport("user32.dll")]
        private static extern long SHAppBarMessage(long dword, int cmd);

        [DllImport("user32.dll")]
        private static extern int RegisterHotKey(IntPtr hwnd, int id, int 
        fsModifiers, int vk);

        [DllImport("user32.dll")]
        private static extern int UnregisterHotKey(IntPtr hwnd, int id);

#endregion

Following the DLL imports, another region is defined and used to contain the modifier key constants and to declare a hot key Id variable; each hot key combination disabled by the application is assigned an ID number (a short) which is also used to remove the hot key restrictions whenever the application is stopped.

C#
#region Modifier Constants and Variables

        // Constants for modifier keys
        private const int USE_ALT = 1;
        private const int USE_CTRL = 2;
        private const int USE_SHIFT = 4;
        private const int USE_WIN = 8;

        // Hot key ID tracker
        short mHotKeyId = 0;

#endregion

Within the constructor; a series of hot key combinations are disabled to make it a little more difficult to navigate away from the kiosk site.

C#
public frmKioskStarter()
{
    InitializeComponent();

    // Related browser window key combinations
    // -- Some things that you may want to disable --
    //CTRL+A           Select all
    //CTRL+B           Organize favorites
    //CTRL+C           Copy
    //CTRL+F           Find
    //CTRL+H           View history
    //CTRL+L           Open locate
    //CTRL+N           Open new browser window
    //CTRL+O           Open locate
    //CTRL+P           Print
    //CTRL+R           Refresh
    //CTRL+S           Save
    //CTRL+V           Paste
    //CTRL+W           Close
    //CTRL+X           Cut
    //ALT+F4           Close

    // Use CTRL+ALT+DEL to open the task manager,
    // kill Internet Explorer and then close the application window
    // to exit

    // Disable ALT+F4 - exit
    RegisterGlobalHotKey(Keys.F4, USE_ALT);
    
    // Disable CTRL+W - exit
    RegisterGlobalHotKey(Keys.W, USE_CTRL);
    
    // Disable CTRL+N - new window
    RegisterGlobalHotKey(Keys.N, USE_CTRL);

    // Disable CTRL+S - save
    RegisterGlobalHotKey(Keys.S, USE_CTRL);

    // Disable CTRL+A - select all
    RegisterGlobalHotKey(Keys.A, USE_CTRL);

    // Disable CTRL+C - copy
    RegisterGlobalHotKey(Keys.C, USE_CTRL);

    // Disable CTRL+X - cut
    RegisterGlobalHotKey(Keys.X, USE_CTRL);

    // Disable CTRL+V - paste
    RegisterGlobalHotKey(Keys.V, USE_CTRL);

    // Disable CTRL+B - organize favorites
    RegisterGlobalHotKey(Keys.B, USE_CTRL);

    // Disable CTRL+F - find
    RegisterGlobalHotKey(Keys.F, USE_CTRL);

    // Disable CTRL+H - view history
    RegisterGlobalHotKey(Keys.H, USE_CTRL);

    // Disable ALT+Tab - tab through open applications
    RegisterGlobalHotKey(Keys.Tab, USE_ALT);

    // hide the task bar - not a big deal, they can
    // still CTRL+ESC to get the start menu; for that
    // matter, CTRL+ALT+DEL also works; if you need to
    // disable that you will have to violate SAS and 
    // monkey with the security policies on the machine
    ShowWindow(FindWindow("Shell_TrayWnd", null), 0);        
}

The next button click event handler is used to launch a browser window in kiosk mode; passing the k argument to Internet Explorer is all that is required. The URL entered into the Form’s textbox is used to identify what page will be opened in Internet Explorer.

C#
/// <summary>
/// Launch the browser window in kiosk mode
/// using the URL keyed into the text box
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_Click(object sender, EventArgs e)
{
    System.Diagnostics.Process.Start("iexplore", "-k " + 
        txtUrl.Text);
}

The next bit of code is used to register a hot key combination; in this instance we are using it to override an existing hot key combination.

C#
private void RegisterGlobalHotKey(Keys hotkey, int modifiers)
{
    try
    {
        // increment the hot key value - we are just identifying
        // them with a sequential number since we have multiples
        mHotKeyId++;

        if(mHotKeyId > 0)
        {
            // register the hot key combination
            if (RegisterHotKey(this.Handle, mHotKeyId, modifiers, 
                Convert.ToInt16(hotkey)) == 0)
            {
                // tell the user which combination failed to register 
                // this is useful to you, not an end user; the user
                // should never see this application run
                MessageBox.Show("Error: " + 
                    mHotKeyId.ToString() + " - " +
                    Marshal.GetLastWin32Error().ToString(),
                    "Hot Key Registration");
            }
        }
    }
    catch 
    {
        // clean up if hotkey registration failed -
        // nothing works if it fails
        UnregisterGlobalHotKey();
    }
}

The next method is used to unregister the hot keys set up by the application; this is used to restore normal functioning after the application is closed. The combinations are identified by the hot key ID value stored for each replaced by the application; to disable all of them, this bit of code loops through each ID and disables it:

C#
private void UnregisterGlobalHotKey()
{
    // loop through each hotkey id and
    // disable it
    for (int i = 0; i < mHotKeyId; i++)
    {
        UnregisterHotKey(this.Handle, i);
    }
}

The next bit of code is used to handle the receipt of a hot key combination whenever the application is running. The code merely disregards all registered hot key combinations.

C#
protected override void WndProc(ref Message m)
{
    base.WndProc(ref m);

    // if the message matches,
    // disregard it
    const int WM_HOTKEY = 0x312;
    if (m.Msg == WM_HOTKEY)
    {
        // Ignore the request or each
        // disabled hotkey combination
    }
}

The last bit of code is called when the Form closes; this code unregisters all of the hot key combinations and shows the taskbar once again.

C#
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
    // unregister the hot keys
    UnregisterGlobalHotKey();

    // show the taskbar - does not matter really
    ShowWindow(FindWindow("Shell_TrayWnd", null), 1);
}

Summary

Even though this application shows how to display a Web site in kiosk mode and to disable the browser related hot keys; the application does not violate the security policy. In building a kiosk; it would be best if the user did not have access to a full keyboard or any keyboard at all. If alphanumeric input is required, consideration of the use of custom kiosk keyboards or a virtual keyboard should be considered.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionCan i partition the screen for windows and web? Pin
Member 111497354-Jan-15 22:31
Member 111497354-Jan-15 22:31 
QuestionIs there any way to detect that website is open in kiosk mode? Pin
mayankkarki25-Oct-12 23:56
mayankkarki25-Oct-12 23:56 
QuestionDisable WinKey and Ctrl+Esc using this code? Pin
alexis424-Nov-09 9:54
alexis424-Nov-09 9:54 
QuestionHow to disable the windows keys ? Pin
lnmca17-Nov-09 19:25
lnmca17-Nov-09 19:25 
QuestionHow to disable CTRL + ESC and CTRL + ALT + DEL? Pin
power98885-Mar-09 12:32
power98885-Mar-09 12:32 
GeneralThis coding windows key working Pin
jainraj15-Sep-08 1:48
jainraj15-Sep-08 1:48 
GeneralVery nice!!! I just have one question.. Pin
DataVAMP31-Aug-08 23:05
DataVAMP31-Aug-08 23:05 
QuestionWhy ? Pin
Paw Jershauge27-Feb-08 10:18
Paw Jershauge27-Feb-08 10:18 
GeneralRe: Why ? Pin
georani4-Mar-08 3:45
georani4-Mar-08 3:45 
GeneralRe: Why ? Pin
Paw Jershauge4-Mar-08 9:29
Paw Jershauge4-Mar-08 9:29 
Generalsorry but no need this Pin
emperon27-Feb-08 6:00
emperon27-Feb-08 6:00 
GeneralGood Pin
NormDroid27-Feb-08 4:11
professionalNormDroid27-Feb-08 4:11 

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.