You are on page 1of 4

BHAVANS COLLEGE AUTONOMOUS, ANDHERI WEST

PRACTICAL JOURNAL
Class: _SYBSCIT_ Sem: 4 Roll No. :SYIT 67

Course Name: Advance Web Programming Course Number:


BH.USITS402

INDEX

SR. Practical Name Date Page No. Signature


NO
1 A) Design a web application for find a Factorial
of Given Number
1 B) Design a Web application for find a sum of
digit of Number .
1 C) Design a Web Application for find a Reverse
of Number
1 D) Design a Web Application for find a
Fibonacci series Number.
1 E) Design a web application for checking the
number is prime or not
2) Demonstrate the use of Calander Control To
perform Following operation
i) Display message in a Calander
Control
ii) Display Vacation in Calander
Control
iii) Select day in a calendar control
using style
iv) Difference between two
calendar dates
3) Create a web form to demonstrate use of
AdRotator Control
4 A) Create a Web Form To demonstrate use of
site Navigation Control & site Map
4 B) Create a web From to demonstrate use of
site map & Tress view Control
5) Create a web application to demonstrate
use of Master Page With applying Styles and
Themes for Page Beautification
6) Working with Grid View & Form view
Control
7) Create a web application to demonstrate
various uses and properties of
SqlDataSource
8) Create a Web Application to demonstrate
use of various Ajax Control

Teacher’s Signature
BHAVANS COLLEGE AUTONOMOUS, ANDHERI WEST
PRACTICAL JOURNAL
Class: _SYBSCIT_ Sem: 4 Roll No. :SYIT 67

Course Name: Advance Web Programming Course Number:


BH.USITS402

9) Creating a Web application to demonstrate


the use of user Control

Teacher’s Signature
BHAVANS COLLEGE AUTONOMOUS, ANDHERI WEST
PRACTICAL JOURNAL
Class: _SYBSCIT_ Sem: 4 Roll No. :SYIT 67

Course Name: Advance Web Programming Course Number:


BH.USITS402

Practical 9

Creating a Web application to demonstrate the use of user Control

Design :-

Footer.ascx:-
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Footer.ascx.cs"
Inherits="Footer" %>
<table>
<tr>
<td> User Control Tutorials</td>
</tr>

<tr>
<td> This Tutorial is for UI in AWP </td>
</tr>
</table>

Default.ascx:-

Teacher’s Signature
BHAVANS COLLEGE AUTONOMOUS, ANDHERI WEST
PRACTICAL JOURNAL
Class: _SYBSCIT_ Sem: 4 Roll No. :SYIT 67

Course Name: Advance Web Programming Course Number:


BH.USITS402

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master"


AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Src="~/Footer.ascx" TagName="WebControl" TagPrefix="TWebControl"%>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
Head Section of A Web Page

<table style="width: 100%; background-color: #C7254E; height: 203px;">


<tr>
<td> Body Section of a Web Page &nbsp;</td>
</tr>
</table>
Footer section Of Web Page using User Control
<TWebControl:WebControl ID="Header" runat="server" />

</asp:Content>

OUTPUT:-

Teacher’s Signature

You might also like