📄 checkemr.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="CheckEMR.aspx.cs" Inherits="IndividualOperation_Doctor_CheckEMR" Title="EMR-电子病历系统->医生->查看病历信息" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script language="javascript" type="text/javascript">
// <!CDATA[
function ButtonReset_onclick() {
document.getElementById('ctl00$ContentPlaceHolder1$TextBoxPatientName').value="";
document.getElementById('ctl00$ContentPlaceHolder1$TextBoxPatientIDCardNum').value="";
document.getElementById('ctl00$ContentPlaceHolder1$TextBoxPatientRecordNum').value="";
}
// ]]>
</script>
<div style="z-index: 101; left: 7px; width: 500px; position: relative; top: 8px;
text-align: center">
<table border="0" cellpadding="0" cellspacing="0" style="text-align: left;" class="tableb">
<tr><td colspan="2" style="height: 30px; text-align:center" class="doctortitle">
<span>查看信息</span></td></tr>
<tr><td style="width: 141px; text-align:left; height: 24px;" class="text">
姓名:</td>
<td style="width: 319px; text-align: left; height: 24px;">
<asp:TextBox ID="TextBoxPatientName" runat="server" Width="175px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="TextBoxPatientName"
ErrorMessage="*"></asp:RequiredFieldValidator></td>
</tr>
<tr><td style="width: 141px; text-align:left" class="text">
身份证号:</td>
<td style="width: 319px; text-align: left">
<asp:TextBox ID="TextBoxPatientIDCardNum" runat="server" Width="175px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="TextBoxPatientIDCardNum"
ErrorMessage="*"></asp:RequiredFieldValidator></td>
</tr>
<tr><td style="width: 141px; text-align:left" class="text">
记录号:</td>
<td style="width: 319px; text-align: left">
<asp:TextBox ID="TextBoxPatientRecordNum" runat="server" Width="175px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="TextBoxPatientRecordNum"
ErrorMessage="*"></asp:RequiredFieldValidator></td>
</tr>
<tr><td style="width: 141px; text-align:left; height: 22px;" class="text">
查看内容:</td>
<td style="width: 319px; text-align: left; height: 22px;">
<asp:DropDownList ID="DropDownListCheckContent" runat="server" Width="120px">
<asp:ListItem Value="0">病人基本信息</asp:ListItem>
<asp:ListItem Value="1">病人治疗结果</asp:ListItem>
<asp:ListItem Value="2">病人入院记录</asp:ListItem>
<asp:ListItem Value="3">病人诊断记录</asp:ListItem>
<asp:ListItem Value="4">病人病程记录</asp:ListItem>
<asp:ListItem Value="5">病历详细纪录</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td colspan="2">
<asp:Button ID="ButtonCheck" runat="server" OnClick="ButtonCheck_Click" Text="查看" CssClass="button" Width="53px" />
<input id="ButtonReset" type="button" value="重填" class="button" onclick="return ButtonReset_onclick()"/></td>
</tr>
</table>
</div>
<br />
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -