<!DOCTYPE html>
<
html
>
<
head
>
<
meta
charset
=
"utf-8"
/>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"IE=edge"
/>
<
meta
name
=
"viewport"
content
=
"width=device-width;initial-scale=1"
/>
<
title
>Compare data between Solr and DB</
title
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"~/BootStrap/css/bootstrap-theme.css"
/>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"~/BootStrap/css/bootstrap.css"
/>
@*@Styles.Render("~/css")*@
@Scripts.Render("~/bundles/BootStrap")
@Scripts.Render("~/bundles/Scripts")
<
style
type
=
"text/css"
>
.pre-Scrollable {
max-height: 700px;
overflow-y: scroll;
}
</
style
>
</
head
>
<
body
>
<
div
class
=
"container"
>
<
form
id
=
"formsync"
>
<
div
class
=
"row"
>
<
div
class
=
"col-md-12"
>
<
h1
style
=
"color:red"
><
b
>Compare Data Between Solr and DB</
b
></
h1
>
</
div
>
</
div
>
<
div
class
=
"row"
id
=
"divloding"
style
=
"display:none;text-align:center"
>
<
div
class
=
"col-md-6"
>
<
img
src
=
"~/Images/ajaxLoading.gif"
alt
=
"load failed"
/>
<
label
>getting,please wait......</
label
>
</
div
>
</
div
>
<
div
class
=
"row"
id
=
"divcompare"
style
=
"display:none;text-align:center"
>
<
div
class
=
"col-md-6"
>
<
img
src
=
"~/Images/ajaxLoading.gif"
alt
=
"load failed"
/>
<
label
>comparing,please wait......</
label
>
</
div
>
</
div
>
<
div
class
=
"row"
id
=
"divfix"
style
=
"display:none;text-align:center"
>
<
div
class
=
"col-md-6"
>
<
img
src
=
"~/Images/ajaxLoading.gif"
alt
=
"load failed"
/>
<
label
>fixing,please wait......</
label
>
</
div
>
</
div
>
<
div
class
=
"row"
style
=
"margin-top:10px"
>
<
div
class
=
"col-md-12 form-inline"
>
<
div
class
=
"form-group input-group"
>
<
span
class
=
"input-group-addon"
>IsMarried:</
span
>
@Html.DropDownList("ddlMarried", ViewBag.MarriedList as SelectList, null, new { id = "ddlMarried", @class = "form-control" })
</
div
>
<
div
class
=
"form-group"
style
=
"margin-left:10px"
>
<
label
class
=
"control-label"
>BirthDay:</
label
>
<
input
type
=
"date"
id
=
"txtdatestart"
class
=
"form-control"
>
<
label
class
=
"control-label"
>-</
label
>
<
input
type
=
"date"
id
=
"txtdateend"
class
=
"form-control"
>
</
div
>
<
div
class
=
"form-group input-group"
style
=
"margin-left:10px"
>
<
span
class
=
"input-group-addon"
>Name:</
span
>
<
input
id
=
"txtusername"
type
=
"text"
class
=
"form-control"
placeholder
=
"input name..."
style
=
"width:120px"
/>
</
div
>
<
div
class
=
"form-group"
style
=
"margin-left:10px"
>
<
input
id
=
"btnsearch"
type
=
"button"
class
=
"btn btn-info"
value
=
"Get"
style
=
"width:70px"
/>
</
div
>
</
div
>
</
div
>
<
div
class
=
"row"
style
=
"margin-top:10px"
>
<
div
id
=
"divresult"
class
=
"col-md-7 form-inline pre-Scrollable"
>
@{Html.RenderPartial("~/Views/Partial/UserInfoPartial.cshtml");}
</
div
>
<
div
class
=
"col-md-5"
>
@{Html.RenderPartial("~/Views/Partial/DiffAndSameWithSolrPartial.cshtml");}
</
div
>
</
div
>
</
form
>
</
div
>
</
body
>
</
html
>