.NET ------ 介面顯示優化(新增,查詢視窗)
阿新 • • 發佈:2020-08-19
1、對作判定的選項加上標識
院校名稱(<span style="color:red">*</span>)
2、對一些重要的加上判斷
判斷是否為空
if (this.ddlDeptCode.SelectedValue == string.Empty) { WebMessageBox1.MessageBox_tishi(700, 300, 200, 300, "請正確院校名稱"); return; } if (this.tbZhuanYeName.Text.Trim() == string.Empty) { WebMessageBox1.MessageBox_tishi(700, 300, 200, 300, "請輸入專業名稱!"); return; } bzhuanye.ZhuanYeName = this.tbZhuanYeName.Text.Trim();//專業名稱
3、根據當前登陸的使用者,取其所在部門,點選新增時,自動賦值
{//所屬單位 List<ITEM.Model.qdCnt4.FourAdminDept> mList = _bllDept.get_Ex_List_FourAdminDept_DeptCode_Down("DeptName,DeptCode", base.EnterpriseGuid, _XUserLogin.UserLoginOrganizationCode, true); ; _bllDept.Set_Ex_Tree_Name_Code_ddlLoad(this.ddlDeptCode, mList); ; this.ddlDeptCode.Items.Insert(0, new ListItem()); try { this.ddlDeptCode.SelectedValue = _XUserLogin.UserLoginOrganizationCode; } catch { }
4、查詢對齊,如下有的下拉框內容過多,藉助圖片連結一個彈窗進行選擇,導致同一列的沒有對齊
使用與其相同大小空白圖片填充。
<td style="white-space: nowrap" align="right"> 登入賬戶:<asp:DropDownList ID="ddlsqlTeacher_loginGuid" runat="server" width="121px"></asp:DropDownList> <a id="linkTeacher_loginGuid" href="javascript:return false;" onclick="javascript:WebDialogLoad('選擇', 700, 500, '../../qdAdmin/qdmanage/admin_order_win.aspx?pwidth=670&pheight=370&c1=<%=ddlsqlTeacher_loginGuid.ClientID %>&dept=<%=_XUserLogin.UserLoginOrganizationCode %>')" ><img src="../../qdadmin/qdimages/where.png" align="top"></a> </td> <td style="white-space: nowrap" align="right"> 性別: <%-- <asp:TextBox ID="tbsqlTeacherSex" runat="server" style="width:121px"></asp:TextBox>--%> <asp:DropDownList ID="ddlTeacherSex" runat="server" Width="121px"> <asp:ListItem Text="" Value=""></asp:ListItem> <asp:ListItem Text="男" Value="男"></asp:ListItem> <asp:ListItem Text="女" Value="女"></asp:ListItem> </asp:DropDownList><img src="../../qdadmin/qdimages/wherenot.png" align="top"></td>
<img src="../../qdadmin/qdimages/wherenot.png" align="top">
調整後如圖:
4、