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

YaBlogEngine - A Tiny Blog Engine written in ASP.NET/C#

Rate me:
Please Sign up or sign in to vote.
4.94/5 (20 votes)
9 Feb 2012CPOL4 min read 107.1K   6.5K   47  
YaBlogEngine is a Tiny Blog Engine written in ASP.NET/C#
<%@ Page Language="C#" MasterPageFile="~/Admin/MasterPage.master" AutoEventWireup="true" CodeFile="Login.aspx.cs" Inherits="Admin_Login" Title="Administrator - Login" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <div align="left">
    Please Login to Access Administrator Area<br />
        <br />
        <table style="width: 252px">
            <tr>
                <td colspan="2">
                    User Name</td>
                <td>
                    <asp:TextBox ID="TextBox1" runat="server" MaxLength="20"></asp:TextBox></td>
            </tr>
            <tr>
                <td colspan="2">
                    Password</td>
                <td>
                    <asp:TextBox ID="TextBox2" runat="server" TextMode="Password" Width="149px" MaxLength="20"></asp:TextBox></td>
            </tr>
            <tr>
                <td colspan="2">
                </td>
                <td>
                    <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Login" />&nbsp;
                    <asp:Button ID="Button2" runat="server" Text="Cancel" /></td>
            </tr>
        </table>
        <br />
        <asp:Label ID="Label1" runat="server"></asp:Label></div>
    <br />
</asp:Content>

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
Architect
India India

I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.

My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems. IMO, C# is the best programming language and I love working with C# and other Microsoft Technologies.

  • Microsoft Certified Technology Specialist (MCTS): Web Applications Development with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Accessing Data with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Windows Communication Foundation Development with Microsoft .NET Framework 4

If you like my articles, please visit my website for more: www.rahulrajatsingh.com[^]

  • Microsoft MVP 2015

Comments and Discussions