日期:2014-05-16 浏览次数:20525 次
<input class="input" id="titlename" type="text" maxLength="50" size="40" name="titlename" runat="server">
function AddRecord()
{
xmlHttp=GetXmlHttpObject();
xmlHttp.onreadystatechange=state3Changed;
var url="../Ajax/GetMaxId.aspx?sta=3";
xmlHttp.open("POST",url,false);
xmlHttp.send(null);
if(trim(document.Form1.titlename.value)=="")
{
alert("获奖主题不能为空!");
Form1.titlename.focus();
return false;
}
}