MasterPage
Example:
Adding a MasterPage to the Project
Master.MasterLabel.Text = "From WebForm";
//The above line would work only if <%@MasterType Directive is added to current page
Importance of UniqueID and ClientId
<asp:TextBox runat="server" ID="txtWebForm"/><input type="button" value="ClientButton" onclick="ShowAlert()" />
<script language="javascript" type="text/javascript"> function ShowAlert() { txt = document.<%=Page.Form.Name%>.<%=txtWebForm.UniqueID%> alert(txt.value); }
</script></asp:Content>
Session and Application in ASP.NET
RDLC Report Generation using Dataset
GREAT!!!