I going to be study ASP.Net Web Application....
Any Can Help me with given any projects in asp.net application,,,it includes master page,2 or more sub pages,,,use java script or ajax,,use latest logics,,,,other wise a good videoclip about application,,,
I have 3 years experience in windows based applications,,,
///datetime picker jqury
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"/>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
$(function () {
$(".mydate").datepicker({ dateFormat: 'dd/MM/yy', changeMonth: true, changeYear: true });
});
Answers (1)
0
Hi, here the Master Page
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="Ajax" %>
<!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 runat="server">
<title>Untitled Page</title>
</head>
<body background="Photos/wrapper.jpeg">
<form id="form1" runat="server">
<h1><span style="color:Blue; font-size:larger">M</span>iscellenious<span style="color:Blue; font-size:larger;"> C</span>ontrols</h1>
<br />
<div style="width:447px; margin-left:100px; height:239px; ">
<br />
<br />
<asp:Button ID="Button1" runat="server" Text="//Your Page Name"
Height="53px" onclick="btnDataList_Click" BackColor="White"/>
<br />
<asp:Button ID="Button2" runat="server"
style="margin:10px 0px 20px 0px;" Text="//Your Page Name"
Height="52px" onclick="btnRepeater_Click" Width="152px" BackColor="DarkGreen" ForeColor="White" />
</div>
</form>
</body>
</html>
1)You have to create two web pages.
2) write the code in button1_Click and button2_Click Event:-
Response.Redirect("//Name of the Page you want to navigate, e.g:-"Default2.aspx");
if you want more ajax finctions, please mention.
