资源描述
学 部: 信息科学与技术
专 业: 软件工程
实习名称: 生产实习
实习日期:2015年6月30日~2015年7月9日
目录
1企业概述
2 实习过程
3 收获与体会
一. 公司简介
亿房全称武汉亿房信息科技有限责任公司,成立于1999年,是一家以房地产、家居建材、生活、信息资讯发布与专业咨询、网络营销推广、中介信息服务为主营业务的高科技网络公司。
旗下知名网站——亿房网以高新技术和互联网为基础,定位于“以房为核心的城市生活网”,由诸多IT、地产、经济等各领域专业人士,倾十年之力精心打造,在华中地区家喻户晓。
随着行业规模的不断扩大,亿房网的企业实力、业务规模与盈利能力年年以超常规、跨越式的速度增长,始终走在行业内前列,现今已经成为武汉最有影响力的门户网站,拥有超过50万人的注册用户,首页150万次的日点击率,日均访问量达到20万独立IP,以及8,000人的论坛最高同时在线人数与61,370帖的论坛日最高发帖数。
2007年,亿房网全面升级,继成功推出房产网后,又陆续打造装家居网、生活网等,将其发展成既相对独立又互相关联的城市生活网站群,引领了专业垂直网站向综合类门户转型的新潮流,在业内引起广泛关注。
公司同时还拥有遍布武汉的30多家线下中介门店,成功推进二手房交易案例数万宗,在武汉市二手房中介行业形成了极好的口碑和影响力。
另外,亿房公司还先后成功进入宜昌、重庆等城市,并将有步骤地入驻其他各大省市,旨将公司业务从省内向全国范围进行延伸,将公司品牌推向全国。
1999年武汉亿房信息科技有限责任公司成立,由此开始了亿房网的发展壮大之路
2003年成立了房地产咨询公司,目前在武汉市已发展二手房中介门店80余家;
2004年设立装饰建材网,目前已发展成为武汉市最大的建材与家居网;
2006年设立生活网,确立建设“以房为核心的城市生活网”的战略目标;
2009年亿房公司成功进入宜昌、等城市,先后设立宜昌站、黄冈站、黄石站、鄂州站、咸宁站并将有步骤地入驻其他各大省市,旨将公司业务从省内向全国范围进行延伸,将公司品牌推向全国。;
2010年成立了装饰监理公司;
2010年注册团购业务商标“亿合团”,旨在整合亿房互联网资源提供给社区居民最实惠团购产品价格及优质的便利服务;
2011年,置佳会成立。亿房置佳会是集亿房房产网、亿房家居网、亿房生活网多方资源整合,为网友提供最大范围生活信息和便捷的VIP网友俱乐部。
二. 开发背景
我所实习的公司是一家与房地产有关的互联网公司,所以会进行一些房子的展示网站以及客户的管理网站。而我参与的正是一个后台管理网站。
开发过程
context.Response.ContentType = "text/html";
user_login user=new user_login();
user.Use_Id = context.Request.Form["Username"];
string pwd = context.Request.Form["Password"];
if (user.Use_Id != "" && user.Pwd!="")
{
Check_Login cl = new Check_Login();
user = cl.Get_Login(user);
if (pwd==user.Pwd )
{
HttpCookie cookie = new HttpCookie("name");
cookie.Value = user.Name;
context.Response.AppendCookie(cookie);
HttpCookie cookie2 = new HttpCookie("Yfb_UserId");
cookie2.Value = user.Use_Id;
context.Response.AppendCookie(cookie2);
context.Response.Redirect("index.aspx");
}
else
{
context.Response.Write("<script>alert('账户或密码错误!');window.location.href='login.html';</script>");
}
}
else
{
context.Response.Write("<script>alert('账号或密码不能为空');</script>");
}
context.Response.ContentType = "text/html";
user_login user=new user_login();
user.Use_Id = context.Request.Form["Username"];
string pwd = context.Request.Form["Password"];
if (user.Use_Id != "" && user.Pwd!="")
{
Check_Login cl = new Check_Login();
user = cl.Get_Login(user);
if (pwd==user.Pwd )
{
HttpCookie cookie = new HttpCookie("name");
cookie.Value = user.Name;
context.Response.AppendCookie(cookie);
HttpCookie cookie2 = new HttpCookie("Yfb_UserId");
cookie2.Value = user.Use_Id;
context.Response.AppendCookie(cookie2);
context.Response.Redirect("index.aspx");
}
else
{
context.Response.Write("<script>alert('账户或密码错误!');window.location.href='login.html';</script>");
}
}
else
{
context.Response.Write("<script>alert('账号或密码不能为空');</script>");
}
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
#BMap {
width: 98%;
height: 450px;
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
border: 5px solid white;
}
img {
max-width: none;
}
</style>
<script>
$(function () {
$("#tabs1 a").click(function (e) {
$(this).tab('show');
$('html,body').animate({ scrollTop: 0 }, 1000);//滚动条回到顶端
return false;
});
});
function ShowMap() {
var x_zb = document.getElementById("zb_x").value;
var y_zb = document.getElementById("zb_y").value;
if (x_zb == "" || y_zb == "") {
alert("无法定位,请填写正确的坐标");
$(tabs2).tab('show');
return false;
}
var Quarters_Name = document.getElementById("Quarters_Name").value;
var Area = document.getElementById("Area").value;
var Street = document.getElementById("Street").value;
var map = new BMap.Map("BMap"); // 创建地图实例
var point = new BMap.Point(x_zb, y_zb); // 创建点坐标
map.centerAndZoom(point, 16); // 初始化地图,设置中心点坐标和地图级别
map.addControl(new BMap.NavigationControl())
map.addControl(new BMap.OverviewMapControl())
map.addControl(new BMap.ScaleControl());
map.addControl(new BMap.MapTypeControl());
map.enableScrollWheelZoom(); //启用滚轮放大缩小,默认禁用
map.enableContinuousZoom(); //启用地图惯性拖拽,默认禁用
var marker = new BMap.Marker(point)
map.addOverlay(marker); //创建标注,将标注添加到地图中
var content = '<div style="margin:0;line-height:20px;padding:2px;">' + '地址:' + Area + '' + Street + '</div>';
//创建检索信息窗口对象
var searchInfoWindow = new BMapLib.SearchInfoWindow(map, content, {
title: Quarters_Name, //标题
width: 350, //宽度
enableAutoPan: true, //自动平移
searchTypes: [
BMAPLIB_TAB_SEARCH, //周边检索
BMAPLIB_TAB_TO_HERE, //到这里去
BMAPLIB_TAB_FROM_HERE //从这里出发
]
});
marker.addEventListener("click", function (e) {
searchInfoWindow.open(marker);
})
searchInfoWindow.open(marker);
$('html,body').animate({ scrollTop: 0 }, 1000);//滚动条回到顶端
return false;
}
</script>
</head>
<body>
<div class="container">
<div class="row">
<div class="span12">
<ul class="nav-tabs nav" id="tabs1">
<li class="active"><a href="#tabs-1" id="tabs1">基本信息</a></li>
<li><a href="#tabs-2" id="tabs2">物业信息</a></li>
<li><a href="#tabs-3" id="tabs3">周边环境</a></li>
<li><a href="#tabs-4" id="tabs4">小区图片</a></li>
<li onclick="ShowMap()"><a href="#tabs-5" id="tabs5">周边交通</a></li>
<li><a href="#tabs-6" id="tabs6">推广房源</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tabs-1">
<script type="text/javascript">
function addinformation() {
var Area = document.getElementById('Area').value;
var Quarters_Id = document.getElementById('Quarters_Id').value;
var Street = document.getElementById('Street').value;
var Average_Prize = document.getElementById("Average_Prize").value;
var Type1 = document.getElementById('Type1').value;
var Type2 = document.getElementById('Type2').value;
var Type3 = document.getElementById('Type3').value;
var Quarters_Name = document.getElementById('Quarters_Name').value;
var Property_Address = document.getElementById('Property_Address').value;
var Quarters_Name_PY = document.getElementById('Quarters_Name_PY').value;
var Rose = document.getElementById('Rose').value;
var Second_Hand_Housing = document.getElementById('Second_Hand_Housing').value;
var Rental_Housing = document.getElementById('Rental_Housing').value;
var Sales_Status = document.getElementById('Sales_Status').value;
var Facilities1;
if (document.getElementById('Facilities1').checked) {
Facilities1 = document.getElementById('Facilities1').value;
} else {
Facilities1 = "";
}
var Facilities2;
if (document.getElementById('Facilities2').checked) {
Facilities2 = document.getElementById('Facilities2').value;
} else {
Facilities2 = "";
}
var Facilities3;
if (document.getElementById('Facilities3').checked) {
Facilities3 = document.getElementById('Facilities3').value;
} else {
Facilities3 = "";
}
var Facilities4;
if (document.getElementById('Facilities4').checked) {
Facilities4 = document.getElementById('Facilities4').value;
} else {
Facilities4 = "";
}
var Facilities5;
if (document.getElementById('Facilities5').checked) {
Facilities5 = document.getElementById('Facilities5').value;
} else {
Facilities5 = "";
}
var Facilities6;
if (document.getElementById('Facilities6').checked) {
Facilities6 = document.getElementById('Facilities6').value;
} else {
Facilities6 = "";
}
var Facilities7;
if (document.getElementById('Facilities7').checked) {
Facilities7 = document.getElementById('Facilities7').value;
} else {
Facilities7 = "";
}
var Ischecked;
if (document.getElementById('Ischecked').checked) {
Ischecked = document.getElementById('Ischecked').value;
} else {
Ischecked = false;
}
var submit = document.getElementById('submit').value;
$.post("Basic_information.ashx", {
"Quarters_Id": Quarters_Id,
"Area": Area,
"Street": Street,
"Type1": Type1,
"Type2": Type2,
"Type3": Type3,
"Quarters_Name": Quarters_Name,
"Property_Address": Property_Address,
"Quarters_Name_PY": Quarters_Name_PY,
"Rose": Rose,
"Second_Hand_Housing": Second_Hand_Housing,
"Rental_Housing": Rental_Housing,
"Sales_Status": Sales_Status,
"Average_Prize": Average_Prize,
"Facilities1": Facilities1,
"Facilities2": Facilities2,
"Facilities3": Facilities3,
"Facilities4": Facilities4,
"Facilities5": Facilities5,
"Facilities6": Facilities6,
"Facilities7": Facilities7,
"Ischecked": Ischecked,
'submit': submit
}, function (resTxt) {
var bool = JSON.parse(resTxt);
if (bool) {
alert('填写成功!');
}
else {
alert('填写失败');
}
});
$('html,body').animate({ scrollTop: 0 }, 1000);//滚动条回到顶端
return false;
}
function checkuser() {
var Quarters_Id = document.getElementById("Quarters_Id").value;
$.post("Check_User.ashx", { "Quarters_Id": Quarters_Id }, function (resTxt) {
var quarters_info = JSON.parse(resTxt);
for (var i = 0; i < quarters_info.length; i++) {
if (Quarters_Id == "") {
document.getElementById("Quarters_Id_check").innerText = '小区编号不能为空';
return;
}
if (Quarters_Id == quarters_info[i].Quarters_Id) {
document.getElementById("Quarters_Id_check").innerText = '对不起,该用户已存在';
return;
}
else {
document.getElementById("Quarters_Id_check").innerText = '';
}
展开阅读全文