<%@ Page Language="C#" MasterPageFile="~/ParentMaster.master" AutoEventWireup="true" CodeFile="HideMe.aspx.cs" Inherits="JQuery_HideMe" Title="Untitled Page" %><asp:Content ID="Content1" ContentPlaceHolderID="contentMain" Runat="Server"><%--<script type="text/javascript" src="../Script/jquery-1.6.2.js"></script>--%><
<
script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.6.2.min.js"></script>script type="text/javascript">$(document).ready(

$(
$(
$(function() {"p").click(function() { $(this).hide(); });"#test").click(function() { $(this).hide(); });"#tbCell1").click(function() { $("#tbCell1").hide(); }); //Or this type$(
".Test").click(function() { $(".Test").hide(); });// $("P#PidClick").Click(function() { $("P#PidClick").hide(); });$(
});
"p.Test").click(function() { $(this).hide(); });//Functions --> ready,click,dblclick,focus and mouseover</
<
script>style type="text/css">.Test
{
font-size:x-large;
}</
<
<
<
<
<
style>p>If you click on me, I will disappear.</p>p class = "Test" >If you click on me, I will disappear.</p>p id="PidClick">First P Element with Class</p>p id="PidClick">Second P Element with Class</p>div id="test">Test</
<
<
<
div>table id="tb" cellpadding="0" cellspacing="0">tr>td id="tbCell1">Table Cell1</
<
td>td id="tbCell2">Table Cell2</
</
<
<
</
</
</
td>tr>tr>td colspan="2" class="Test">Test CSS Class hide </td>tr>table>asp:Content>
<%@ Page Language="C#" MasterPageFile="~/ParentMaster.master" AutoEventWireup="true" CodeFile="Toggle.aspx.cs" Inherits="JQuery_Toggle" Title="Untitled Page" %><
<
<
asp:Content ID="Content1" ContentPlaceHolderID="contentMain" Runat="Server">script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.6.2.min.js"></script>script type="text/javascript">$(document).ready(

$(

$(
});
$(

$(
});
$(
$(
});
$(
$(
function() {".ClickMe").click(function() {".Test").slideToggle("slow");"#HideSlow #btnHide").click(function() {this).parents("#HideSlow").hide("slow");"#btnShow").click(function() {"#HideSlow").show();"#divAnimate").click(function() {this).animate({ height: "350", opacity: 0.4, marginLeft: "0.6in", fontSize: "3em" }, "slow"); //opacity:0.4,marginLeft:"0.6in",fontSize:"3em"});$(
$(
$(
});
$(
$(
$(
});
$(
$(
});
});
this).animate({ width: "150", opacity: 0.2, marginLeft: "0.2in", fontSize: "1em" }, "slow");this).animate({ height: "150", opacity: 0.1, marginLeft: "0.4in", fontSize: "6em" }, "slow");this).animate({ width: "350", opacity: 0.4, marginLeft: "0.6in", fontSize: "2em" }, "slow");"#SlideUp").click(function() {this).parents("#SlideUpdiv").slideUp();"#SlideUpdiv").slideUp();"#SlideDown").click(function() {"#SlideUpdiv").slideDown();</
<
script>style type="text/css">.Test,p.ClickMe
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
.Test
{
height:120px;
display:none;
}
</
<
<
<
<
</
<
<
<
</
</
<
style>table id="testToggle" cellpadding="0" cellspacing="0" class="Test">tr>td>Row1 - Cell1<br /><br /><br /><br /></td>td>Row1 - Cell2<br /><br /><br /><br /></td>tr>tr>td>Row2 - Cell1</td>td>Row2 - Cell2</td>tr>table>div class ="Test">Toggle the Lines<br /> Line 2 <br /> Line 3 <br /> Line 4</
<
<
<
<
</
<
<
div>p class ="ClickMe">Click to Toggle</p>div id="HideSlow">button id ="btnHide">Hide</button>p id="pHideSlow">Hide Me Slowly<br /><br /><br /><br /><br /><br /></p>div>button id ="btnShow">Show</button>div id="divAnimate" style="background-color:Navy;color:White">This is a Test Animation</
<
<
</
<
<
</
div>div id="SlideUpdiv">p>This is a slide down Example.<br /><br /><br /><br /><br /></p>div>button id="SlideUp">Slide Up</button>button id="SlideDown">Slide Down</button>asp:Content>
Request.UrlReferrer - It will return the previous page Url. It will return 'NULL' means that page not redirected by server. Chance is like to type the Url in Addressbar.
--EXEC sp_Myforeach_Date @SatrtDate='01/03/2010',@EndDate='03 Mar 2010',@DatePart='dd',@OutPutFormat=101

CREATE PROCEDURE [dbo].[sp_Myforeach_Date] 
   
-- Add the parameters for the stored procedure here 
    @SatrtDate
as DateTime, 
    @EndDate
as dateTime, 
    @DatePart
as varchar(2), 
    @OutPutFormat
as int  
AS 
BEGIN 
   
-- SET NOCOUNT ON added to prevent extra result sets from 
   
-- interfering with SELECT statements. 
   
@DateList Table 
    (Date varchar(
50)) 
 
   
WHILE @SatrtDate<= @EndDate 
   
BEGIN 
   
INSERT @DateList (Date) values(Convert(varchar,@SatrtDate,@OutPutFormat)) 
   
IF Upper(@DatePart)='DD' 
   
SET @SatrtDate= DateAdd(dd,1,@SatrtDate) 
   
IF Upper(@DatePart)='MM' 
   
SET @SatrtDate= DateAdd(mm,1,@SatrtDate) 
   
IF Upper(@DatePart)='YY' 
   
SET @SatrtDate= DateAdd(yy,1,@SatrtDate) 
   
END  
   
SELECT * FROM @DateList 
END