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

Notes: An MSDN Websites Style Custom Notes Control in ASP.NET and C#

Rate me:
Please Sign up or sign in to vote.
4.76/5 (22 votes)
25 Jan 2008CPOL2 min read 47.7K   214   35  
A Microsoft website style notes control using a web usercontrol in ASP.NET and C#.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<%@ Register Src="Notes.ascx" TagName="Notes" TagPrefix="uc1" %>

<!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>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <uc1:Notes ID="Notes1" runat="server" />
        <asp:Panel ID="Panel1" runat="server" Height="50px" Style="z-index: 100; left: 64px;
            position: absolute; top: 160px" Width="125px">
            <uc1:Notes ID="Notes2" runat="server" />
        </asp:Panel>
        <asp:Panel ID="Panel2" runat="server" Height="50px" Style="z-index: 101; left: 112px;
            position: absolute; top: 376px" Width="125px">
            <uc1:Notes ID="Notes3" runat="server" />
        </asp:Panel>
        <asp:Panel ID="Panel3" runat="server" Height="64px" Style="z-index: 103; left: 88px;
            position: absolute; top: 272px" Width="125px">
            <uc1:Notes ID="Notes4" runat="server" />
        </asp:Panel>
    
    </div>
    </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
Technical Lead
India India
.NET Consultant | Former Microsoft MVP - ASP.NET | CodeProject MVP, Mentor, Insiders| Technology Evangelist | Author | Speaker | Geek | Blogger | Husband

Blog : http://abhijitjana.net
Web Site : http://dailydotnettips.com
Twitter : @AbhijitJana
My Kinect Book : Kinect for Windows SDK Programming Guide

Comments and Discussions