Hi all,
I am using anchor tag's list in master page for navigating from one child page to another child page
how to specify trgier for that and from where should i declare update panel and content template,
I m trying this way but it's giving me error .
-----------------------------------------------------------
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePAnel" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:PostBackTrigger ControlID="homepost" />
<asp:PostBackTrigger ControlID="PhotoPost" />
</Triggers>
<ContentTemplate>
<div id="bg" z-index="2">
<div id="main">
<div id="maintop"></div>
<!-- header begins -->
<div id="header">
<div id="buttons">
<ul>
<li><a id="homepost" href="Default.aspx">Home</a></li>
<li><a id="PhotoPost" href="Photogallery.aspx">Photo Gallery</a></li>
<li><a href="Gallery.aspx">Amenities</a></li>
<li><a href="Attraction.aspx">Area Information</a></li>
<li><a href="http://www.daysinn.com/DaysInn/control/Booking/modify_dates?brandCode=DI&searchWithinMiles=25&areaType=1&destination=Auburn&stateName=New%20York&state=NY&countryName=United%20States&country=US&checkInDate=&numberAdults=1&numberRooms=1&checkOutDate=&numberChildren=0&rateName=Best%20Avail&rate=000&id=07577&propBrandId=DI&" target="_blank">Reservation</a></li>
<li><a href="ContactUs.aspx">Contact</a></li>
</ul>
</div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</ContentTemplate>
</asp:UpdatePanel>
-Neer