<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[CS406 Assignment 1 Solution and Discussion]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1573730811778-ff82609f-b30f-4180-9573-ddf844aa906d-image.png" alt="ff82609f-b30f-4180-9573-ddf844aa906d-image.png" class=" img-fluid img-markdown" />  	Assignment No.  1<br />
Fall 2019<br />
CS406 – Web Based Database Applications	Total Marks: 20</p>
<p dir="auto">Due Date: 15-Nov-2019</p>
<p dir="auto">Assignment Submission Instructions:<br />
Please read the following instructions carefully before submitting assignment:<br />
It should be clear that your assignment will not get any credit if:</p>
<p dir="auto">o	Assignment is submitted after due date.<br />
o	Submitted assignment does not open or file is corrupt.<br />
o	Assignment is copied (from internet or from other students).<br />
o	You must submit assignment only in html web pages form, and you must keep all your web pages in a folder and zip the folder to upload .zip or .rar file on LMS.</p>
<p dir="auto">Lectures Covered:</p>
<p dir="auto">Week 1, Week 2, and Week 3 Lectures have been covered.</p>
<p dir="auto">Objectives:<br />
The purpose of this assignment is to make you familiar with following topics:</p>
<p dir="auto">•	Introduction to HTML<br />
•	HTML tags<br />
•	Table in HTML<br />
•	HTML form<br />
Assignment    	Marks: 10</p>
<p dir="auto">You are required to develop an HTML page using Microsoft Notepad named as Patient Admit Form. It will be containing basic HTML controls and form elements. The sample is as follows;</p>
<p dir="auto">Sample Output:</p>
<p dir="auto">(See next page)</p>
<p dir="auto"><img src="/assets/uploads/files/1573730833351-fdad9dbc-66fb-40e8-a537-adfb9a9dd0be-image.png" alt="fdad9dbc-66fb-40e8-a537-adfb9a9dd0be-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Deadline: Your assignment must be uploaded on or before the due date. We shall not accept your solution through email after the due date.</p>
]]></description><link>https://community.secnto.com//topic/576/cs406-assignment-1-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:59:44 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/576.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 14 Nov 2019 11:27:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CS406 Assignment 1 Solution and Discussion on Thu, 05 Dec 2019 10:41:18 GMT]]></title><description><![CDATA[<p dir="auto"><strong>Solution:</strong></p>
<pre><code>&lt;html&gt;
&lt;title&gt;&lt;/title&gt;
&lt;body&gt;
&lt;h1&gt;&lt;U&gt;Patient Admit Card&lt;/U&gt;&lt;/h1&gt;&lt;/div&gt;
&lt;form action="form.php" method="POST"&gt;
&lt;table&gt;
&lt;tr&gt; 
&lt;td width="50%"&gt;Patient Name &lt;/td&gt;
&lt;td width="50%"&gt;&lt;INPUT TYPE = "text" NAME="pName" &gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt; 
&lt;td width="50%"&gt;Patient ID&lt;/td&gt; 
&lt;td width="50%"&gt;&lt;INPUT TYPE = "text" NAME="pID"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="50%"&gt;Patient Age&lt;/td&gt; 
&lt;td width="50%"&gt;&lt;INPUT TYPE = "number" NAME="pAge"&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td width="50%"&gt; Mobile Number&lt;/td&gt; 
&lt;td width="50%"&gt; &lt;INPUT TYPE = "text" NAME="mNumber"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="50%"&gt;Gender Male&lt;/td&gt;
&lt;td width="50%"&gt;&lt;input type="radio" name="gender"&gt; Male &lt;input type="radio" name="gender"&gt; Female&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="50%"&gt;Patient Address&lt;/td&gt;
&lt;td width="50%"&gt;&lt;INPUT TYPE = "Text" NAME="pAddress"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="50%"&gt;City&lt;/td&gt;
&lt;td width="50%"&gt;&lt;INPUT TYPE = "Text" NAME="city"&gt;&lt;/td&gt;
&lt;tr&gt;
&lt;td width="50%"&gt;District&lt;/td&gt; 
&lt;td width="50%"&gt;&lt;INPUT TYPE = "Text" NAME="district"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="50%"&gt;Doctor Name&lt;/td&gt;
&lt;td width="50%"&gt;&lt;INPUT TYPE = "Text" NAME="dName"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;td width="0%"&gt;&lt;INPUT TYPE = "submit" NAME="Submit"&gt;&lt;/td&gt;
&lt;td width="0%"&gt;&lt;INPUT TYPE = "reset" NAME="Reset"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;

</code></pre>
]]></description><link>https://community.secnto.com//post/2217</link><guid isPermaLink="true">https://community.secnto.com//post/2217</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Thu, 05 Dec 2019 10:41:18 GMT</pubDate></item></channel></rss>