Lesson Exemplar Programming 12 Quarter 4 Week 3 and 4
Lesson Exemplar Programming 12 Quarter 4 Week 3 and 4
I. OBJECTIVES
The learners demonstrate an understanding of
principles and concepts in developing
A. Content Standards ASP.NET MVC 5 Web applications
The learners independently develop ASP.NET MVC
B. Performance Standards 5 Web applications
Create custom URLs and apply style
C. Most Essential Learning Competencies to ASP.NET MVC Web applications.
(MELC) (If available, write the indicated TLE_ICTP.NET 11-12DAMWAIIIb-f-39
MELC)
Web Forms
Web Services
II. CONTENT Enumerating ASP.NET features
III. LEARNING RESOURCES
A. References
Programming in .Net Programming Curriculum
a. Teacher's Guide Pages Guide page23
Warm-up
1. Attendance using google forms/messenger
or poll
What’s New?
A form is a section of an HTML document where
you put input controls (text boxes, check boxes,
radio buttons, and pull-down lists).
<!DOCTYPE html>
<html>
<body>
@{
if (IsPost)
{
string companyname =
Request["CompanyName"];
string contactname =
Request["ContactName"];
<p>You entered: <br>
Company Name: @companyname <br>
Contact Name: @contactname </p>
}
else
{
<form method="post" action="">
Company Name:<br>
<input type="text" name="CompanyName"
value=""><br>
Contact Name:<br><br>
<input type="text" name="ContactName"
value=""><br><br>
<input type="submit" value="Submit"
class="submit">
</form>
}
}
</body>
</html>
Razor Example - Displaying Images
Activity 4:
Create your own example of a webpage form.
Rubric:
3 points - Completeness of answer
5 points - Clarity
2 points - Neatness