ASP.NET Source Codes Code Be..
Category : ASP.NET Projects
Stock Management System (SMS) Description : SMS Project mostly deals with Material(product) management, it includes entire procurement cycle. For their need to maintain inventory for maintenances of all products, they are unable to track the inventory and how much material expenses done for each transaction, To overcome this problem client want to have an ERP ..
This is an Online Social Networking website application developed using Asp.Net and SQL Server. Here I have created basic functionalities of an online social networking web site. In this user can make his profile, post messages, search and manage friends etc. You will find database script in Database folder, just execute this script in you ..
Complete ASPX HTML Source Codes:- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default8.aspx.cs" Inherits="Default8" %> <!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 id="Head1" runat="server"> <title></title> <script src="//code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script> <script type="text/javascript"> function ShowHideDiv() { //Get dropdown selected value var SelectedValue = $('#<%= ddlPaymentMode.ClientID %> option:selected').val(); // check selected value. if (SelectedValue == 0) { alert('Please ..
Complete ASPX HTML Codes:- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default6.aspx.cs" Inherits="Default6" %> <!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 id="Head1" runat="server"> <title></title> <script src="//code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $('#<%=rblPaymentMode.ClientID %>').click(function () { var SelectedValue = $('#<%=rblPaymentMode.ClientID %> input[type=radio]:checked').val(); if (SelectedValue == 1) { //If cash is selected then hide the ..
Complete ASPX HTML Codes:- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default5.aspx.cs" Inherits="Default5" %> <!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 id="Head1" runat="server"> <title></title> <script src="http://code.jquery.com/jquery-1.11.1.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { //Check all/UncheckAll skills if Select All is Checked/UnChecked $("#<%=chkSelectAll.ClientID %>").click(function () { $("[id*=chkSkills] input:checkbox").prop('checked', this.checked); }); $("[id*=chkSkills] input:checkbox").click(function () { //If Select ..
Complete ASPX HTML Code:- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default4.aspx.cs" Inherits="Default4" %> <!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 id="Head1" runat="server"> <title></title> <style type="text/css"> .error { border: 1px solid red; } .errorstyle { font-size: 16px; line-height: 22px; } .errorstyle ul li { margin-left: 5px; color: #ff0000; } </style> </head> <body> <form id="form1" ..
Complete ASPX Code:- %@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!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 id="Head1" runat="server"> <title></title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script> <script src="Scripts/jquery.Jcrop.js" type="text/javascript"></script> <link href="CSS/jquery.Jcrop.css" rel="stylesheet" /> <script language="javascript" type="text/javascript"> $(document).ready(function () { $('#<%=imgToCrop.ClientID%>').Jcrop({ onSelect: getAreaToCrop }); }); function getAreaToCrop(c) { $('#XCoordinate').val(parseInt(c.x)); $('#YCoordinate').val(parseInt(c.y)); $('#Width').val(parseInt(c.w)); $('#Height').val(parseInt(c.h)); } </script> </head> ..
First Method:- <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Disable right click on web page using jQuery</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script type="text/javascript"> $(function () { $(this).on("contextmenu", function () { return false; }); }); </script> </head> <body> <form id="form1" runat="server"> <div> This is dummy text<br /> This is dummy text<br /> This is dummy text<br /> This is dummy text<br ..