2025-03-27 15:05:14 +08:00

68 lines
2.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PropertySearch.aspx.cs" Inherits="SuperMap.RealEstate.PropertyManage.WebPage.PropertySearch" %>
<!DOCTYPE html>
<html>
<head runat="server">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="renderer" content="webkit">
<meta name="description" content="">
<meta name="author" content="">
<meta name="format-detection" content="telephone=no,email=no"><!-- 去除iPhone会自动把你的数字加链接样式 -->
<meta name="apple-mobile-web-app-capable" content="no"><!-- 删除默认的苹果工具栏和菜单栏 -->
<meta name="apple-mobile-web-app-status-bar-style" content="black"><!-- 控制状态栏显示样式 content有三个值default/black/black-translucent -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>维修资金查询</title>
<link href="res/dist/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="res/style/css.css" rel="stylesheet" type="text/css" />
<!--[if IE]>
<script src="res/js/html5.js"></script>
<![endif]-->
<!--[if lte IE 6]>
<script src="res/js/ie6_png.js" type="text/javascript"></script>
<script type="text/javascript">
DD_belatedPNG.fix('*');
</script>
<![endif]-->
<script src="res/js/jquery-1.11.1.min.js"></script>
<script src="res/dist/js/bootstrap.min.js"></script>
</head>
<body>
<div class="login"><img src="res/images/login.png" class="img-responsive" alt="维修资金查询" /></div>
<div class="container-fluid border-top">
<form class="form-horizontal" role="form" id="form1" runat="server">
<div class="form-group">
<label for="username" class="col-xs-3 control-label">证件号码:</label>
<div class="col-xs-4">
<input type="text" class="form-control" id="usercertificate" placeholder="请输入您的证件号码" runat="server">
例如:身份证号等
</div>
</div>
<div class="form-group">
<label for="pwd" class="col-xs-3 control-label">产权证号码:</label>
<div class="col-xs-4">
<input type="text" class="form-control" id="userrealtycert" placeholder="请输入您的产权证" runat="server">
例如舟房权证定字第XXXXXXXXX号
</div>
</div>
<div class="form-group">
<div class="col-xs-offset-3 col-xs-8">
<asp:Button ID="Button1" runat="server" Text="查询" class="btn btn-info" OnClick="Button1_Click" />
</div>
</div>
<div class="form-group">
<label for="pwd" class="col-xs-3 control-label"></label>
<div class="col-xs-4">
<div id="content" runat="server" style="color:red;"></div>
</div>
</div>
</form>
</div>
</body>
</html>