Click here to Skip to main content
15,881,812 members
Articles / Web Development / CSS

15 Steps to Develop a Product Management System in Only a Day

Rate me:
Please Sign up or sign in to vote.
4.83/5 (51 votes)
23 Mar 2010GPL34 min read 247.7K   4.8K   163  
The article introduces how to easily develop business solutions in RapidWebDev through developing a product management system with the special requirement step by step.
<%@ Page Language="C#" MasterPageFile="~/LayoutCenter.master" AutoEventWireup="true" CodeBehind="ChangePassword.aspx.cs" Inherits="RapidWebDev.Web.ChangePassword" Title="<%$ Resources:Membership, ChangePassword%>" %>
<asp:Content ID="ContentMain" ContentPlaceHolderID="Main" runat="server">
	<My:JSScript Type="File" Value="~/resources/javascript/ext-jquery-adapter.js" runat="server" />
	<My:JSScript Type="File" Value="~/resources/javascript/ext-all.js" runat="server" />
	<My:JSScript Type="File" Value="~/resources/javascript/MessageBox.js" runat="server" />
	
	<asp:ScriptManager ID="ScriptManagerObj" EnablePartialRendering="true" EnableScriptGlobalization="true" runat="server" />
	
	<asp:UpdatePanel ID="UpdatePanelChangePassword" runat="server">
        <ContentTemplate>
			<My:Container ID="PasswordContainer" Frame="true" Width="360px" HeaderText="<%$ Resources:Membership, ChangePassword%>" runat="server">
                <table cellpadding="0" cellspacing="0" class="table2col">
                    <tr>
                        <td class="c1"><%= Resources.Membership.ChangePassword_OriginalPassword%>: </td>
                        <td class="c2">
                            <My:TextBox ID="TextBoxOldPassword" TextMode="Password" CssClass="textbo150" runat="server" />
                        </td>
                    </tr>
                    <tr>
                        <td class="c1"><%= Resources.Membership.ChangePassword_NewPassword%>: </td>
                        <td class="c2">
                            <My:TextBox ID="TextBoxNewPassword" TextMode="Password" CssClass="textbo150" runat="server" />
                        </td>
                    </tr>
                    <tr>
                        <td class="c1"><%= Resources.Membership.ChangePassword_ConfirmPassword%>: </td>
                        <td class="c2">
                            <My:TextBox ID="TextBoxConfirmPassword" TextMode="Password"  CssClass="textbo150" runat="server" />
                        </td>
                    </tr>
                    <tr>
						<td colspan="2" class="span" style="text-align:center"><My:Button ID="ButtonSave" Text="<%$ Resources:Membership, Confirm%>" runat="server" /></td>
                    </tr>
                </table>
			</My:Container>
            
            <My:MessagePanel ID="MessagePanelChangePassword" runat="server" />
		</ContentTemplate>
	</asp:UpdatePanel>
</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 GNU General Public License (GPLv3)


Written By
President TCWH
China China
I've worked as a software architect and developer based on Microsoft .NET framework and web technology since 2002, having rich experience on SaaS, multiple-tier web system and website development. I've devoted into open source project development since 2003, and have created 3 main projects including DataQuicker (ORM), ExcelQuicker (Excel Report Generator), and RapidWebDev (Enterprise-level CMS)

I worked in BenQ (8 mo), Bleum (4 mo), Newegg (1 mo), Microsoft (3 yr) and Autodesk (5 yr) before 2012. Now I own a startup company in Shanghai China to deliver the exceptional results to global internet users by leveraging the power of Internet and the local excellence.

Comments and Discussions