Overview:
This article explains how to create a role master form page design. we have started a new project for learning asp.net. The project name is IT Management System and given Youtube link IT Management System (IMS Session-3) The following steps here.ππ₯
Download Code: π ProjectCodeZipfile
Step 1:
✍ Open Already Created IT Management System Project Folder Location
✍ It's open in visual studio
Figure-1 π
Step -2:
✍ Open RoleMaster page and delete existing code, then copy and paste source
code in Role Master.aspx page following Step-3
Figure-2 π
Step-3: Source Code for Role Master Form Design π
<%@ Page Title="" Language="C#" MasterPageFile="~/MainMasterPage.Master" AutoEventWireup="true" CodeBehind="RoleMaster.aspx.cs" Inherits="ITManagementSystem.RoleMaster" %>
<%--<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>--%>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="content-wrapper">
<div class="row">
<div class="col-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
<h4 class="card-title">Role Master</h4>
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-2">
<label for="exampleInputName1">Role</label>
</div>
<div class="col-lg-5">
<asp:TextBox ID="txtboxrole" class="form-control" runat="server"></asp:TextBox>
</div>
</div>
<div class="row mt-2">
<div class="col-lg-1"></div>
<div class="col-lg-2">
<label for="exampleInputEmail3">Description</label>
</div>
<div class="col-lg-5">
<asp:TextBox ID="txtboxDescription" class="form-control" runat="server"></asp:TextBox>
</div>
</div>
<div class="form-group mt-2">
<div class="col-lg-4"></div>
<div class="col-lg-8 text-center">
<asp:Button ID="btnSave" runat="server" class="btn btn-primary mr-2" Text="Save" />
<asp:Button ID="btnClear" runat="server" class="btn btn-light" Text="Clear" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</asp:Content>
More Details:
Video Link: π
https://www.youtube.com/watch?v=awVhCqZSuOo
Thank you for reading my articles any comments post below. ππππ Thank you..!!πππππ


No comments:
Post a Comment