Posts

Showing posts from December 14, 2018

How to Create Step by Step Angular tutorial Project

1)Download Node.js File 2)Install Node.js File 3)install NPM Angular/cli Following command are used to install angular/cli 1)Npm install @angular/cli Check version of Angular/Cli 2)Npm -v Create Project 3)ng new ProjectName Run the angular project 4)ng serve

Simple Registration Form Design In ASP NET

Registration Form .aspx file <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Registration.aspx.cs" Inherits="ContractorManagement.Registration" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title>     <link href="../css/Controls.css" rel="stylesheet" />     <style type="text/css">         .buttonClass {             padding: 2px 20px;             text-decoration: none;             border: solid 1px #336699;             background-color: gainsboro;             color: black;             font-family: Calibri, sans-serif;         }     </style>     <link href="Site.cs...

Registration Form In ASP NET

Registration form aspx.cs file The Following Code is aspx.cs File using System; using System.Data; using System.Configuration; using System.Data.SqlClient; using System.Text; namespace ContractorManagement {     public partial class Registration : System.Web.UI.Page     { //This is a connection string         SqlConnection ObjCon = new SqlConnection(ConfigurationManager.ConnectionStrings["connStr"].ConnectionString);         StringBuilder sb = new StringBuilder();         protected void Page_Load(object sender, EventArgs e)         {             lblUserMsg.Text = string.Empty;             lblerrmsg.Text = string.Empty;             lblMob.Text = string.Empty;             lblEmail.Text = string.Empty;     ...

Popular posts from this blog

String Program in C#

CSV using XmlNode

Controller_Model. cs