日期:2014-05-17 浏览次数:20879 次
function CompareInfo(InfoId) {
jQuery.ajax(
{
url: 'CompareInfo.aspx?InfoId=' + InfoId,
dataType: 'text',
success: function (data, textStatus) {
$("#Compare").html(data);
}
});
}
public void Com()
{
ScriptManager.RegisterStartupScript(this, this.GetType(), "JSFunction", "CompareInfo('1');", true);
//调用其它函数()
ScriptManager.RegisterStartupScript(this, this.GetType(), "JSFunction", "CompareInfo('2');", true);
//调用其它函数()...
}
private void Info(int InfoId)
{
if (InfoId == 1)
{
Response.Write("<div><span class='STYLE10'>比对开始...比对进行过程中请勿关闭本页面!</span></div>");
}
if (InfoId == 2)
{
Response.Write("<span class='STYLE10'>正在检测当前模板启用状态...</span>");
}
}