Please paste the code and form designer code onto here so that I can create the
ID: 3681954 • Letter: P
Question
Please paste the code and form designer code onto here so that I can create the program, or provide a link to the complete Windows Application. Thank you! The database needed is linked here below. Please use this file when creating the code.
Database link: https://drive.google.com/file/d/0B3IhzMJeGusJZUJlcFluQVRyMWxNbmJuYnpqdGVsUVdBeG0w/view?usp=sharing
PROJECT #4 CPT 341 Visual BASIC.NET Database Management, ADO .NET The database MEGACITIES.MDB (attached in the email and Moodle) is maintained by the NJIT records department and consists of 2 tables. As shown below, tables 1 and 2 shows the current records in the database. The table 'Cities' identifies each city by a country and provides a population history in both 1995 and 2015. The table Countries identifies the currency used in each country. Table 1. Records of the Cities Table country China India India USA Mexico USA Brazil China USA China apan pop1995 pop2015 Cl eiiing Bombay Calcutta Los Angeles Mexico City New York Sao Paulo Shanghai Tampa Tianjin Tokyo 12.4 15.1 11.7 12.4 15.6 16.3 16.4 15.1 34 10.7 26.8 19.4 27.4 17.6 14.3 18.8 17.6 20.8 23.4 12.6 17 28.7 Table 2. Records of the Countries Table country pop1995 currency 155.8 real razi China India 1185.2 vuan 846.3 rupee 195.3 rupiah 125 yen 85.6 peso 95.4 naira 148.2 ruble 263.4 dollar Indonesia Japan +Mexico Nigeria Russia USA Note: MEGACITIES.MDB was created using Microsoft Access however you do need MS Access. Using the file provided, a Visual Basic Form and Active Data Objects will be used to connect to the database and provide queries Project 4 Submit Date: 0321/2016 Class Due Date: 04/04/2016 Note: Send all completed VB Project files to: wxt1955@njit.edu (or via DropBox, Google, etc.)Explanation / Answer
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Login Form</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td>
Username:
</td>
<td>
<asp:TextBox ID="txtUserName" runat="server"/>
<asp:RequiredFieldValidator ID="rfvUser" ErrorMessage="Please enter Username"ControlToValidate="txtUserName" runat="server" />
</td>
</tr>
<tr>
<td>
Password:
</td>
<td>
<asp:TextBox ID="txtPWD" runat="server" TextMode="Password"/>
<asp:RequiredFieldValidator ID="rfvPWD" runat="server" ControlToValidate="txtPWD"ErrorMessage="Please enter Password"/>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="btnSubmit" runat="server" Text="Submit" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>