Click here to Skip to main content
15,892,059 members
Articles / Hosted Services / Azure

GPS Runner Maps: My First Windows Azure Application

Rate me:
Please Sign up or sign in to vote.
4.90/5 (12 votes)
20 Dec 2009CPOL3 min read 55.3K   3.1K   63  
It is "cloud" Web application to display GPS tracks on Google or Bing maps
<%@ Page Language="C#" AutoEventWireup="true" Inherits="ManageRoles" Codebehind="ManageRoles.aspx.cs" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ListBox ID="AvailableRoles" runat="server" SelectionMode="Multiple" 
            Height="284px" Width="255px"></asp:ListBox>
    </div>
    <div>
        <asp:Label ID="LabelNewRole" runat="server" Text="New Role Name"></asp:Label>
        <asp:TextBox ID="TextBoxNewRole" runat="server"></asp:TextBox>
        <asp:Button ID="ButtonNewRole" runat="server" Text="Add New Role" 
            onclick="ButtonNewRole_Click" />   
        <br /> 
        <asp:Label ID="ErrorLabel" runat="server" Text=""></asp:Label>
    </div>
    
    <p><a href="Default.aspx">Return to main page</a></p>
    
    </form>
</body>
</html>

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 Code Project Open License (CPOL)


Written By
Web Developer Forthnet
Greece Greece
Software developer and Microsoft Trainer, Athens, Greece (MCT, MCSD.net, MCSE 2003, MCDBA 2000,MCTS, MCITP, MCIPD).

Comments and Discussions