您的位置:首页 > 编程语言 > ASP

asp.net利用json填充下拉框及js动态添加表格行、删除表格行的示例

2007-09-19 11:26 956 查看
我就不多说了,还是自己看代码吧,其中json.js就是我前面写的一个小的json填充select的框架。具体参照:
http://blog.csdn.net/aspgreener/archive/2007/09/13/1783834.aspxgoogle_ad_client = "pub-2048279401139630";google_ad_slot = "8856771542";google_ad_width = 728;google_ad_height = 90;document.write("");




<%...@ Page Language="C#" AutoEventWireup="true" Theme="MH2007" CodeFile="ApplyNewMM.aspx.cs"


Inherits="MM_ApplyNewMM" %>






<%...@ Register Src="../Control/LineControl.ascx" TagName="LineControl" TagPrefix="uc1" %>




<%...@ Register Src="../LDAP/SingleAp_Direct.ascx" TagName="SingleAp_Direct" TagPrefix="uc1" %>


<html xmlns="http://www.w3.org/1999/xhtml">


<head runat="server">


<title>样机申请</title>




<style>....but-nor-left {...}{ BACKGROUND-IMAGE: url(/mh-2003/Modules/Web/Images/below_l_22.gif); WIDTH: 4px; BACKGROUND-REPEAT: no-repeat; HEIGHT: 22px }




.but-nor-right {...}{ BACKGROUND-IMAGE: url(/mh-2003/Modules/Web/Images/below_r_22.gif); WIDTH: 4px; BACKGROUND-REPEAT: no-repeat; HEIGHT: 22px }




.but-nor-bg {...}{ PADDING-RIGHT: 2px; PADDING-LEFT: 2px; FONT-SIZE: 9pt; BACKGROUND-IMAGE: url(/mh-2003/Modules/Web/Images/below_bg_22.gif); PADDING-BOTTOM: 0px; CURSOR: hand; COLOR: #333333; PADDING-TOP: 2px; BACKGROUND-REPEAT: repeat-x; TEXT-ALIGN: center }


</style>




<script language="javascript" src="/mh/Js/Calendar.js"></script>




<script language="javascript" src="/mh/Js/CalPopUp.js"></script>




<script language="javascript" src="/mh/Js/jsutil.js"></script>




<script language="javascript" src="/mh/Js/json.js"></script>






<script language="javascript">...




function addfile()




...{


var iNum;


iNum=parseInt(Form1.ImageNumber.value);


strAdd = "";


if (iNum!="NaN"&&iNum>0)




...{


for (i=0;i<iNum;i++)




...{


j=i+1;


strAdd += "<table width='100%' border=0 cellpadding=2 cellspacing=1>";


strAdd += "<tr><td><div align='center'>文件" + j + ":</td><td><input name='uploadfile" + i + "' type='file' id='uploadfile" + i + "' size='30'></td></tr>";


strAdd += "</table>";


}


window.document.getElementById("UploadImages").innerHTML=strAdd;


}


else




...{


alert("请输入图片数!");


Form1.ImageNumber.value="";


Form1.ImageNumber.focus();


}


//alert(Form1.ImageNumber.value);


}


</script>




</head>






<script language="javascript" defer>...


//<!CDATA[


window.onerror=function()




...{


window.status="";


return true;


}


window.onload=function()




...{


json.addOptions("NewProdArea0","PARENT_ID",7);


var no = $("proNo");


no.value="1";


}


function ResetDDL(obj)




...{


if(obj.selectedIndex==0)




...{


window.alert("请选择您需要的操作!");


this.focus();


return;


}




bool=confirm('您确定执行此操作吗?');


if(!bool)




...{


obj.selectedIndex=0;


}


}




var json = new _json.Tree();




json.root = "<%=ROOT%>";


json.JSON = <%=JSON%>


json.optionText = "CATALOG_NAME";


json.optionValue = "ID";




var i = 1;


function AddNewLine()




...{


var row, cell;


var cur,newrow;


var insertHTML;


var o = document.getElementById("tableNew");


var no = $("proNo");


cur = o.rows.length;




if(no.value=="")


no.value = "1";




if(i==49) return;




newrow = o.insertRow(cur);


cell = newrow.insertCell(0);


cell.align = "center";


insertHtml = "<select name='NewProdArea"+ i +"' onchange="javascript:if(this.selectedIndex==0){removeOptions('NewProdType"+ i +"');}else{json.optionValue = 'CATALOG_NAME';json.addOptions('NewProdType"+ i +"','PARENT_ID',this.value);}" id='NewProdArea"+ i +"'>";


insertHtml += "<option selected='selected' value='区域选择'>区域选择</option>";


insertHtml += "</select>";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(1);


cell.align = "center";


insertHtml = "<select name='NewProdType"+ i +"' id='NewProdType"+ i +"'>";


insertHtml += "<option selected='selected' value='产品类型'>产品类型</option>";


insertHtml += "</select>";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(2);


cell.align = "center";


insertHtml = "<input name='MMApplyProdModel"+ i +"' type='text' id='MMApplyProdModel"+ i +"' style='width:40px;' />";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(3);


cell.align = "center";


insertHtml = "<input name='MMApplyORPProductNum"+ i +"' type='text' id='MMApplyORPProductNum"+ i +"' style='width:40px;' />";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(4);


cell.align = "center";


insertHtml = "<select name='MMType"+ i +"' id='MMType"+ i +"'>";


insertHtml += "<option selected='selected' value='真机'>真机</option>";


insertHtml += "<option value='模型'>模型</option>";


insertHtml += "</select>";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(5);


insertHtml = "<input name='MMApplyProviderName"+ i +"' type='text' value='<%=USER_NM%>' id='MMApplyProviderName"+ i +"' style='width:40px;' />";


cell.align = "center";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(6);


cell.align = "center";


insertHtml = "<input name='MMApplyProvierPhoneNumber"+ i +"' type='text' value='<%=USER_COMPTEL%>' id='MMApplyProvierPhoneNumber"+ i +"' style='width:66px;' />";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(7);


cell.align = "center";


insertHtml = "<input name='MMApplyProviderDept"+ i +"' type='text' value='<%=USER_DEPT%>' id='MMApplyProviderDept"+ i +"' style='width:50px;' />";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(8);


cell.align = "center";


insertHtml = "<input name='MMApplyProviderDate"+ i +"' type='text' id='MMApplyProviderDate"+ i +"' onFocus='javascript:calendar();' style='width:80px;' />";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(9);


cell.align = "center";


insertHtml = "<input name='MMApplySabPrincipal"+ i +"' type='text' id='MMApplySabPrincipal"+ i +"' style='width:40px;' />";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(10);


cell.align = "center";


insertHtml = "<input name='MMApplySecPrincipal"+ i +"' type='text' id='MMApplySecPrincipal"+ i +"' style='width:40px;' />";


cell.innerHTML = insertHtml;




cell = newrow.insertCell(11);


insertHtml = "<input name='delRow"+ i +"' type='button' id='delRow"+ i +"' value='删除' style='width:40px;' onclick="javascript:if(confirm('确定要删除吗?')){delRow("+i+");}" />";


cell.innerHTML = insertHtml;




json.optionValue = "ID";


json.addOptions("NewProdArea"+ i,"PARENT_ID",7);




i++;


no.value = i;


}


function get_Element(the_ele,the_tag)




...{


the_tag = the_tag.toLowerCase();




if(the_ele.tagName.toLowerCase()==the_tag)


return the_ele;




while(the_ele=the_ele.offsetParent)




...{


if(the_ele.tagName.toLowerCase()==the_tag)


return the_ele;


}


return(null);


}




function delRow(rowIndex)




...{


var o = document.getElementById("tableNew");


var no = $("proNo");




var the_cell;


the_cell = get_Element(event.srcElement,"td");


var index=the_cell.parentElement.rowIndex;




if(the_cell==null)


return;




if(o.rows.length==1)


return;




o.deleteRow(index);


i++;


}


function chkNew()




...{


var row, cell;


var rowscount,cellscount;


var cur;


var flag = true;


var o = document.getElementById("tableNew");


rowscount = o.rows.length;


cellscount=11;




for(var i=0;i<rowscount;i++)




...{




if($("NewProdArea"+ i).selectedIndex==0)




...{


alert("请选择展区!");


flag = false;


$("NewProdType"+ i).focus();


removeOptions("NewProdType"+ i);


break;


}




if($("NewProdType"+ i).selectedIndex==0)




...{


alert("请选择展区!");


flag = false;


$("NewProdType"+ i).focus();


break;


}




if($("MMApplyProdModel"+ i).value=="")




...{


alert("产品型号不能为空!");


flag = false;


$("MMApplyProdModel"+ i).focus();


break;


}


if($("MMApplyProdModel"+ i).value=="")




...{


alert("产品型号不能为空!");


flag = false;


$("MMApplyProdModel"+ i).focus();


break;


}


if($("MMApplyORPProductNum"+ i).value=="")




...{


alert("数量不能为空!");


flag = false;


$("MMApplyORPProductNum"+ i).focus();


break;


}


else




...{


if(isNaN($("MMApplyORPProductNum"+ i).value))




...{


alert("请输入数字!");


$("MMApplyORPProductNum"+ i).value = "";


flag = false;


$("MMApplyORPProductNum"+ i).focus();


break;


}


}


if($("MMApplyProviderName"+ i).value=="")




...{


alert("提供人姓名不能为空!");


flag = false;


$("MMApplyProviderName"+ i).focus();


break;


}


if($("MMApplyProvierPhoneNumber"+ i).value=="")




...{


alert("联系电话不能为空!");


flag = false;


$("MMApplyProvierPhoneNumber"+ i).focus();


break;


}


if($("MMApplyProviderDept"+ i).value=="")




...{


alert("所属部门不能为空!");


flag = false;


$("MMApplyProviderDept"+ i).focus();


break;


}


if($("MMApplySabPrincipal"+ i).value=="")




...{


alert("SAB负责人不能为空!");


flag = false;


$("MMApplySabPrincipal"+ i).focus();


break;


}


if($("MMApplySecPrincipal"+ i).value=="")




...{


alert("SEC负责人不能为空!");


flag = false;


$("MMApplySecPrincipal"+ i).focus();


break;


}


}




return flag;


}


function removeOptions(obj)




...{


var o = $(obj);


var ln = o.length;




while(ln--)




...{


o.options[ln] = null;


}




o.options.add(new Option("产品类型","产品类型"));


}


function $(strObj)




...{


if(strObj=="")


return;


return document.getElementById(strObj);


}


//]]>


</script>




<body>


<form id="Form1" runat="server">


<input id="proNo" name="proNo" type="hidden" />


<div>


<asp:Wizard ID="MMApply" runat="server" ActiveStepIndex="0" Height="297px" Width="900px"


DisplayCancelButton="True" DisplaySideBar="False" CancelButtonImageUrl="/MH/images/tem_cancle.gif"


CancelButtonType="Image" StartNextButtonImageUrl="/MH/images/next.gif" StartNextButtonType="Image"


StepNextButtonImageUrl="/MH/images/next.gif" StepNextButtonType="Image" StepPreviousButtonImageUrl="/MH/images/prev.gif"


StepPreviousButtonType="Image" OnNextButtonClick="MMApply_NextButtonClick" OnActiveStepChanged="MMApply_ActiveStepChanged"


OnPreviousButtonClick="MMApply_PreviousButtonClick">


<WizardSteps>


<asp:WizardStep runat="server" Title="applynew" StepType="Start">


<!--中间内容开始--->


<table width="100%" border="0" cellspacing="0" cellpadding="0">


<tr>


<td class="td001" style="width: 804px">


<img src="/MH/images/tem_bt21.gif" /></td>


</tr>


</table>


<uc1:LineControl ID="Line01" runat="server" />


<table width="900" border="0" cellspacing="0" cellpadding="0" class="table02">


<tr>


<td width="8" valign="top">


<img src="/MH/images/con_pic01.gif" /></td>


<td style="width: 836px">


</td>


<td width="8" valign="top">


<img src="/MH/images/con_pic02.gif" /></td>


</tr>


<tr>


<td height="140" valign="bottom" class="con_back02">


<img src="/MH/images/con_pic03.gif" /></td>


<td class="con_back023" valign="top" style="width: 836px">


<!--中间表格内容开始-->


<table width="99%" align="center" border="0" cellspacing="0" cellpadding="0" class="xuxian">


<tr>


<td width="1%" class="title01">


<img src="/MH/images/con_small01.gif" /></td>


<td width="99%" class="title02">


样机查询</td>


</tr>


</table>


<table width="50%" align="center" border="0" cellspacing="0" cellpadding="0">


<tr>


<td height="20">


</td>


</tr>


</table>


<table border="0" cellpadding="0" cellspacing="0">


<tr>


<td class="td002" style="height: 43px">


<img src="/MH/images/con_small02.gif" /></td>


<td class="td0021" width="114" style="height: 43px">


条件搜索:</td>


<td colspan="4" style="height: 43px" valign="middle">


<table border="0" cellspacing="0" width="100%" cellpadding="0">


<tr>


<td style="padding-right: 8px; width: 130px;">


<asp:DropDownList ID="ddlProdArea" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlProdArea_SelectedIndexChanged">


</asp:DropDownList>


<asp:RequiredFieldValidator ID="rfvProdArea" runat="server" ControlToValidate="ddlProdArea"


ErrorMessage="*" InitialValue="区域选择"></asp:RequiredFieldValidator>


</td>


<td style="padding-right: 8px; width: 120px;">


<asp:DropDownList ID="ddlProdType" runat="server">


<asp:ListItem Value="0">产品类别</asp:ListItem>


</asp:DropDownList>


</td>


<td>


 </td>


</tr>


</table>


</td>


</tr>


<tr>


<td class="td002">


<img src="/MH/images/con_small02.gif" /></td>


<td class="td0021" width="114">


申请信息:</td>


<td colspan="4">


 </td>


</tr>


<tr>


<td class="td002">


<img src="/MH/images/con_small02.gif" /></td>


<td class="td0021" width="113">


申请部门:</td>


<td>


 <asp:Label ID="lblProviderDept" runat="server" SkinID="labelinput01Skin"></asp:Label>


</td>


<td class="td0022">


</td>


<td width="113" class="td0021">


</td>


<td>


</td>


</tr>


<tr>


<td class="td002">


<img src="/MH/images/con_small02.gif" /></td>


<td class="td0021" width="113">


申请人:</td>


<td>


 <asp:Label ID="lblProviderName" runat="server" SkinID="labelinput01Skin"></asp:Label>


</td>


<td class="td0022">


</td>


<td class="td0021">


</td>


<td>


</td>


</tr>


<tr>


<td class="td002">


<img src="/MH/images/con_small02.gif" /></td>


<td class="td0021" width="113">


联系电话:</td>


<td>


 <asp:TextBox ID="txtProviderPhoneNum" runat="server" Width="232px"></asp:TextBox>


</td>


<td class="td0022">


<img src="/MH/images/con_small02.gif" /></td>


<td class="td0021">


E-mail:</td>


<td>


 <asp:Label ID="lblProviderEmail" runat="server" SkinID="labelinput01Skin"></asp:Label>


</td>


</tr>


<tr>


<td class="td002">


</td>


<td class="td0021" width="113">


</td>


<td>


</td>


<td class="td0022">


</td>


<td class="td0021">


</td>


<td>


</td>


</tr>


</table>


<!--中间表格内容结束-->


</td>


<td valign="bottom" class="con_back022">


<img src="/MH/images/con_pic04.gif" /></td>


</tr>


</table>


<!--中间内容结束-->


</asp:WizardStep>


<asp:WizardStep runat="server" Title="prodlist" StepType="Step">


<!--中间内容开始--->


<table width="100%" border="0" cellspacing="0" cellpadding="0">


<tr>


<td class="td001" style="width: 804px">


<img src="/mh/images/tem_bt22.gif" /></td>


</tr>


</table>


<uc1:LineControl ID="line02" runat="server" />


<table width="780" border="0" cellspacing="0" cellpadding="0" class="table03">


<tr>


<td width="8" valign="top">


<img src="/mh/images/con_pic01.gif" /></td>


<td style="width: 764px">


</td>


<td width="8" valign="top">


<img src="/mh/images/con_pic02.gif" /></td>


</tr>


<tr>


<td height="150" valign="bottom" class="con_back02">


<img src="/mh/images/con_pic03.gif" /></td>


<td class="con_back023" valign="top" style="width: 764px">


<!--中间表格内容开始-->


<table width="99%" align="center" border="0" cellspacing="0" cellpadding="0" class="xuxian">


<tr>


<td width="1%" class="title01" style="height: 30px">


<img src="/mh/images/con_small01.gif" /></td>


<td width="99%" class="title02" style="height: 30px">


产品列表</td>


</tr>


</table>


<table width="50%" align="center" border="0" cellspacing="0" cellpadding="0">


<tr>


<td height="20">


</td>


</tr>


</table>


<table border="0" align="center" cellpadding="0" cellspacing="0">


<tr>


<td height="20" style="width: 764px">


<asp:GridView ID="gvProdList" runat="server" AutoGenerateColumns="False" OnRowDataBound="gvProdList_RowDataBound"


OnDataBound="gvProdList_DataBound">


<Columns>


<asp:BoundField DataField="ITEMS_ID" HeaderText="ID"></asp:BoundField>


<asp:TemplateField HeaderText="展区">


<ItemTemplate>


<asp:Label ID="lblPROD_AREA" runat="server" Text='<%# Eval("PROD_AREA") %>'></asp:Label>


</ItemTemplate>


</asp:TemplateField>


<asp:BoundField DataField="PROD_TYPE" HeaderText="类型" />


<asp:BoundField DataField="PROD_MODEL" HeaderText="型号" />


<asp:BoundField DataField="PROD_NUM" HeaderText="数量" />


<asp:BoundField DataField="MM_TYPE" HeaderText="样机类型" />


<asp:BoundField DataField="PROVIDER_NAME" HeaderText="提供人" />


<asp:BoundField DataField="PROVIDER_PHONE_NUM" HeaderText="联系电话" />


<asp:BoundField DataField="PROVIDER_DEPT" HeaderText="部门" />


<asp:TemplateField HeaderText="入库时间">


<ItemTemplate>


<asp:Label ID="lblPROVIDE_DATE" runat="server" Text='<%# Convert.ToDateTime(Eval("PROVIDE_DATE")).ToString("yyyy-MM-dd") %>'></asp:Label>


</ItemTemplate>


</asp:TemplateField>


<asp:BoundField DataField="SAB_PRINCIPAL" HeaderText="SAB负责人" />


<asp:BoundField DataField="SEC_PRINCIPAL" HeaderText="SEC负责人" />


<asp:BoundField DataField="PROD_STATUS" HeaderText="样机状态" />


<asp:TemplateField HeaderText="操作">


<HeaderStyle HorizontalAlign="Center" />


<ItemTemplate>


<asp:DropDownList ID="OP" OnSelectedIndexChanged="ddlOP_SelectedIndexChanged" runat="server">


</asp:DropDownList>


</ItemTemplate>


</asp:TemplateField>


</Columns>


</asp:GridView>


</td>


</tr>


</table>


<!--中间表格内容结束-->


</td>


<td valign="bottom" class="con_back022">


<img src="/mh/images/con_pic04.gif" /></td>


</tr>


</table>


<table width="780" border="0" cellpadding="0" cellspacing="0" style="margin-left: 20px">


<tr>


<td height="70" align="center">


</td>


</tr>


</table>


<!--中间内容结束-->


</asp:WizardStep>


<asp:WizardStep runat="server" Title="op" StepType="Step">


<!--中间内容开始--->


<table width="100%" border="0" cellspacing="0" cellpadding="0">


<tr>


<td class="td001">


<img src="/mh/images/tem_bt25.gif" /></td>


</tr>


</table>


<uc1:LineControl ID="line03" runat="server" />


<table width="360" border="0" cellspacing="0" cellpadding="0" class="table03" align="center">


<tr>


<td width="8" valign="top">


<img src="/mh/images/con_pic01.gif" /></td>


<td width="764">


</td>


<td width="8" valign="top">


<img src="/mh/images/con_pic02.gif" /></td>


</tr>


<tr>


<td height="150" valign="bottom" class="con_back02">


<img src="/mh/images/con_pic03.gif" /></td>


<td class="con_back023" valign="top">


<!--中间表格内容开始-->


<table width="99%" align="center" border="0" cellspacing="0" cellpadding="0" class="xuxian">


<tr>


<td width="1%" class="title01">


<img src="/mh/images/con_small01.gif" /></td>


<td width="99%" class="title02">


状态报告</td>


</tr>


</table>


<table width="90%" align="center" border="0" cellspacing="0" cellpadding="0">


<tr>


<td height="70" align="left" class="title02">


您好!<br>


<asp:Label ID="lblOP" runat="server" Text="请选择您需要从展厅放入库房产品数量"></asp:Label>


 


<asp:TextBox ID="txtORPProdNum" runat="server" Width="26px"></asp:TextBox>


<asp:RequiredFieldValidator ID="rfvNum" runat="server" ControlToValidate="txtORPProdNum"


ErrorMessage="*"></asp:RequiredFieldValidator>


<asp:RegularExpressionValidator ID="revNum" runat="server" ControlToValidate="txtORPProdNum"


ErrorMessage="请输入正整数" ValidationExpression="^[1-9]d{0,8}"></asp:RegularExpressionValidator>


<asp:Panel ID="panelReturnDate" runat="server" Height="50px" Width="300px" Visible="False">


<asp:Label ID="lblPreReturnDate" runat="server" Text="预计归还的日期"></asp:Label>


<asp:TextBox ID="txtPreReturnDate" onfocus="javascript:calendar();" runat="server"


Width="121px"></asp:TextBox>


<asp:RequiredFieldValidator ID="rfvReturnDate" runat="server" ErrorMessage="*" ControlToValidate="txtPreReturnDate"></asp:RequiredFieldValidator>


</asp:Panel>


<br />


  


</td>


</tr>


</table>


</td>


<td valign="bottom" class="con_back022">


<img src="/mh/images/con_pic04.gif" /></td>


</tr>


</table>


<!--中间内容结束-->


</asp:WizardStep>


<asp:WizardStep runat="server" Title="addnew" StepType="Step">


<!--中间内容开始--->


<table width="100%" border="0" cellspacing="0" cellpadding="0">


<tr>


<td class="td001" style="height: 30px">


<img src="/mh/images/tem_bt22.gif" /></td>


</tr>


</table>


<uc1:LineControl ID="line04" runat="server" />


<table width="900" border="0" cellspacing="0" cellpadding="0" class="table03">


<tr>


<td width="8" valign="top">


<img src="/mh/images/con_pic01.gif" /></td>


<td style="width: 764px">


</td>


<td width="8" valign="top">


<img src="/mh/images/con_pic02.gif" /></td>


</tr>


<tr>


<td height="150" valign="bottom" class="con_back02">


<img src="/mh/images/con_pic03.gif" /></td>


<td class="con_back023" valign="top" style="width: 764px">


<!--中间表格内容开始-->


<table width="900" align="center" border="0" cellspacing="0" cellpadding="0" class="xuxian">


<tr>


<td width="1%" class="title01">


<img src="/mh/images/con_small01.gif" /></td>


<td width="99%" class="title02">


产品列表</td>


</tr>


</table>


<table width="50%" align="center" border="0" cellspacing="0" cellpadding="0">


<tr>


<td height="20">


</td>


</tr>


</table>


<table id="tableNew" width="900" border="0" align="center" cellpadding="0" cellspacing="1"


bgcolor="#ffffff">


<tbody>


<tr class="line03">


<td align="center" class="td003">


展区</td>


<td align="center" class="td003">


产品类型</td>


<td align="center" class="td003">


产品型号</td>


<td align="center" class="td003">


数量</td>


<td align="center" class="td003">


样机类型</td>


<td align="center" class="td003">


提供人姓名</td>


<td align="center" class="td003">


联系电话</td>


<td align="center" class="td003">


所属部门</td>


<td align="center" class="td003">


入库时间</td>


<td align="center" class="td003">


SAB负责人</td>


<td align="center" class="td003">


SEC负责人</td>


<td align="center" class="td003">


操作</td>


</tr>


<!--新增样机开始-->


<tr class="line03">


<td align="center">


<select name="NewProdArea0" onchange="javascript:if(this.selectedIndex==0){removeOptions('NewProdType0');}else{json.optionValue = 'CATALOG_NAME';json.addOptions('NewProdType0','PARENT_ID',this.value);}" id='NewProdArea0'>


<option selected='selected' value='区域选择'>区域选择</option>


</select>


</td>


<td align="center">


<select name='NewProdType0' id='NewProdType0'>


<option selected='selected' value='产品类型'>产品类型</option>


</select>


</td>


<td align="center">


<input name='MMApplyProdModel0' type='text' id="MMApplyProdModel0" style="width: 40px;" />


</td>


<td align="center">


<input name='MMApplyORPProductNum0' type='text' id='MMApplyORPProductNum0' style='width: 40px;' />


</td>


<td align="center">


<select name='MMType0' id='MMType0'>


<option selected='selected' value='真机'>真机</option>


<option value='模型'>模型</option>


</select>


</td>


<td align="center">


<input name='MMApplyProviderName0' type='text' id='MMApplyProviderName0' value="<%=USER_NM%>" style='width: 40px;' />


</td>


<td align="center">


<input name='MMApplyProvierPhoneNumber0' type='text' id='MMApplyProvierPhoneNumber0' value="<%=USER_COMPTEL%>"


style='width: 66px;' />


</td>


<td align="center">


<input name='MMApplyProviderDept0' type='text' id='MMApplyProviderDept0' value="<%=USER_DEPT%>" style='width: 50px;' />


</td>


<td align="center">


<input name='MMApplyProviderDate0' type='text' id='MMApplyProviderDate0' onfocus='javascript:calendar();' style='width: 80px;' />


</td>


<td align="center">


<input name='MMApplySabPrincipal0' type='text' id='MMApplySabPrincipal0' style='width: 40px;' />


</td>


<td align="center">


<input name='MMApplySecPrincipal0' type='text' id='MMApplySecPrincipal0' style='width: 40px;' />


</td>


<td>


<input type="button" value="增加" onclick="javascript:AddNewLine();" />


</td>


</tr>


<!--新增样机结束-->


</tbody>


</table>


<table border="0" align="center" cellpadding="0" cellspacing="0">


<tr>


<td height="20">


<a href="#" onfocus="this.blur()"></a>


</td>


</tr>


</table>


<!--中间表格内容结束-->


</td>


<td valign="bottom" class="con_back022">


<img src="/mh/images/con_pic04.gif" /></td>


</tr>


</table>


<table width="900" border="0" cellpadding="0" cellspacing="0" style="margin-left: 20px">


<tr>


<td height="70" align="center">


<a href="#" onfocus="this.blur()"></a>


</td>


</tr>


</table>


<!--中间内容结束-->


</asp:WizardStep>


<asp:WizardStep runat="server" StepType="Step" Title="setpath">


<uc1:LineControl ID="line05" runat="server" />


<table width="700" align="center" border="0" cellpadding="0" cellspacing="0">


<tr>


<td height="30">


标题:


<asp:TextBox ID="txtTitle" SkinID="input01Skin" runat="server"></asp:TextBox>


<asp:Label ID="lblTitle" runat="server" SkinID="labelinput01Skin" Visible="False"></asp:Label>


</td>


</tr>


<tr>


<td height="30" valign="top">


正文:


<asp:TextBox ID="txtContent" runat="server" Height="79px" TextMode="MultiLine" Width="471px"></asp:TextBox>


<div id="divcontent" style="padding-left: 20px;">


<asp:Label ID="lblContent" runat="server" SkinID="labelinput01Skin"></asp:Label>


</div>


</td>


</tr>


<tr>


<td>


<uc1:SingleAp_Direct ID="SingleApDirect1" runat="server"></uc1:SingleAp_Direct>


<input id="hidApp_Paths" type="hidden" runat="server"></td>


</tr>


<!--


<tr>


<td>


附件上传:<input type="text" maxlength="1" size="1" name="ImageNumber" id="Text1"><input


type="button" value="SetNum" id="SetNum" onclick="addfile()"></td>


</tr>


-->


<tr>


<td>


<div id="UploadImages" />


</td>


</tr>


<tr>


<td align="center">


 </td>


</tr>


</table>


</asp:WizardStep>


<asp:WizardStep runat="server" StepType="Complete" Title="finish">


<!--中间内容开始--->


<table width="100%" border="0" cellspacing="0" cellpadding="0">


<tr>


<td class="td001">


<img src="/mh/images/tem_bt24.gif" /></td>


</tr>


</table>


<uc1:LineControl ID="line06" runat="server" />


<table width="780" border="0" cellspacing="0" cellpadding="0" class="table02">


<tr>


<td width="8" valign="top">


<img src="/mh/images/con_pic01.gif" /></td>


<td width="764">


</td>


<td width="8" valign="top">


<img src="/mh/images/con_pic02.gif" /></td>


</tr>


<tr>


<td height="150" valign="bottom" class="con_back02">


<img src="/mh/images/con_pic03.gif" /></td>


<td class="con_back023" valign="top">


<br />


<br />


<br />


<table width="50%" border="0" align="center" cellpadding="0" cellspacing="0">


<tr>


<td align="center" style="font-size: 14px; font-weight: bold">


您好!<br>


<br>


您的申请已经提交完成,谢谢!<br>


<br>


我们会用邮件通知您申请结果。</td>


</tr>


</table>


<table align="center" border="0" cellspacing="0" cellpadding="0">


<tr>


<td height="70">


<a href="/mh/mm/ApplyNewMM.aspx" onfocus="this.blur()">


<img src="/mh/images/back_02.gif" hspace="2" border="0" /></a></td>


</tr>


</table>


</td>


<td valign="bottom" class="con_back022">


<img src="/mh/images/con_pic04.gif" /></td>


</tr>


</table>


<!--中间内容结束-->


</asp:WizardStep>


</WizardSteps>


<FinishPreviousButtonStyle CssClass="hidden" />


</asp:Wizard>


</div>


</form>


</body>


</html>

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: