http://archive.msdn.microsoft.com/ULSViewer/
http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx
In .ascx file(UserControl1)
<script type="text/javascript">
$(function () {
$('.address-radio').change(
function () {
$('#<%=AddressHidden.ClientID %>').val($(this).val())
}
)
})
</script>
<asp:HiddenField ID="AddressHidden" runat="server" />
In aspx page
HiddenField hidden = (HiddenField)UserControl1.FindControl("HiddenField1");
if (hidden != null)
{
string value = hidden.Value.ToString();
}
path C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN
stsadm -o retractsolution -name InformationCenter.wsp -immediate -url http://sharepointSiteUrl
stsadm -o execadmsvcjobs
path C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN
stsadm -o deletesolution -name InformationCenter.wsp
path C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN
stsadm -o addsolution -filename "c:\InformationCenter.wsp"
stsadm -o deploysolution -name InformationCenter.wsp -url http://sharepointSiteUrl -immediate -allowgacdeployment
stsadm -o execadmsvcjobs
$(document).ready(function() {
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandle);
Sys.WebForms.PageRequestManager.getInstance().add_initializeRequest(initializeRequest);
var postBackElement = "";
function initializeRequest(sender, eventArgs) {
postBackElement = eventArgs.get_postBackElement().id;
}
function endRequestHandle(sender, args) {
if (!Sys.WebForms.PageRequestManager.getInstance().get_isInAsyncPostBack())
// Do something…
}
});