韓順平qq源碼
1. 韓順平java從入門到精通所有作業題,和源代碼,有的話就發一下唄!非常感謝! 122941467 q q you xiang
誰有的話也發我一個,1990426018 qq郵箱
2. 哪位高人有韓順平老師的那個滿漢樓餐飲管理系統的全部素材、或者全部完整的源代碼啊感激不盡!!!
沒有全部的,只有韓老師完成的那部分,要不要,說一聲!!!
3. 誰有韓順平老師講的ajax技術web版多人聊天的源碼有的幫忙發一下
php">***userList.php*****
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>
<title>用戶列表</title>
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage">
<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>
<scripttype="text/javascript">
<!--
window.resizeTo(200,400);
functionabc(obj){
obj.style.color="red";
obj.style.cursor="hand";
}
functionabc2(obj){
obj.style.color="";
}
//跳出一個聊天的頁面
functionabc3(obj){
varname=obj.innerText;
window.open("chatRoom.php?name="+encodeURI(name),"_blank");
}
-->
</script>
</head>
<body>
好友列表
<liid="li1"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">費爾普斯</li>
<liid="li2"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">謝忠君君</li>
<liid="li3"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">姚明</li>
</body>
</html>
***chatRoom.php****
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>
<?php
$name=$_GET['name'];
//空格.
$name=trim($name);
//從session
session_start();
$yourname=$_SESSION['username'];
?>
<title>聊天室</title>
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">
<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage"><scripttype="text/javascript">
<!--
window.resizeTo(400,400);
window.setInterval("getMsg()",10000);
//定義一個ajax引擎
varxmlHttp;
functionsendMsg(){
//根據情況建立ajax引擎
if(window.ActiveXObject){
xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
}else{
xmlHttp=newXMLHttpRequest();
}
if(xmlHttp){
varreq="MessageController.php?getter=<?phpecho$name;?>&msg="+document.all.con.value;
xmlHttp.open("get",req,true);
//指定返回的函數
xmlHttp.onreadystatechange=chuli;
//發送
xmlHttp.send(req);
varsendMsg=document.all.con.value;
document.all.mytextares.value+="你說:"+sendMsg+" ";
}
}
functionchuli(){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
//!!!
}
}
}
varxmlHttp2;
//每隔一定時間從伺服器得到屬於自己的消息
functiongetMsg(){
//根據情況建立ajax引擎
if(window.ActiveXObject){
xmlHttp2=newActiveXObject("Microsoft.XMLHTTP");
}else{
xmlHttp2=newXMLHttpRequest();
}
if(xmlHttp2){
varreq="GetMessageCl?getter=<?phpecho$yourname;?>&sender=<?phpecho$name;?>";xmlHttp2.open("get",req,true);
//指定返回的函數
xmlHttp2.onreadystatechange=chuli2;
//發送
xmlHttp2.send(req);
}
}
functionchuli2(){
if(xmlHttp2.readyState==4){
if(xmlHttp2.status==200){
//取出消息的內容
varmesCon=xmlHttp2.responseXml.getElementsByTagName("msg");
vartimes=xmlHttp2.responseXml.getElementsByTagName("msgTime");
if(mesCon[0].firstChild.data!="null"){
//將信息顯示到文本預
for(vari=0;i<mesCon.length;i++){
vargetMsg=mesCon[i].firstChild.data;
document.all.mytextares.value+="<%=name%>"+"說:"+getMsg+" ";
}
}
}
}
}-->
</script>
</head>
<body>
<center>
我的聊天室(您在和<fontcolor="red"><?phpecho$name;?></font>聊天)
<textarearows="10"id="mytextares"cols="50"></textarea>
<inputtype="text"id="con">
<inputtype="button"onclick="sendMsg();"value="發送">
</center>
</body>
</html>
4. 求php韓順平講ajax web多人離線聊天的源代碼
***userList.php*****
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>
<title>用戶列表</title>
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage">
<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>
<scripttype="text/javascript">
<!--
window.resizeTo(200,400);
functionabc(obj){
obj.style.color="red";
obj.style.cursor="hand";
}
functionabc2(obj){
obj.style.color="";
}
//跳出一個聊天的頁面
functionabc3(obj){
varname=obj.innerText;
window.open("chatRoom.php?name="+encodeURI(name),"_blank");
}
-->
</script>
</head>
<body>
好友列表<br>
<liid="li1"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">費爾普斯</li>
<liid="li2"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">謝忠君君</li>
<liid="li3"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">姚明</li>
</body>
</html>
***chatRoom.php****
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>
<?php
$name=$_GET['name'];
//空格.
$name=trim($name);
//從session
session_start();
$yourname=$_SESSION['username'];
?>
<title>聊天室</title>
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">
<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage">
<scripttype="text/javascript">
<!--
window.resizeTo(400,400);
window.setInterval("getMsg()",10000);
//定義一個ajax引擎
varxmlHttp;
functionsendMsg(){
//根據情況建立ajax引擎
if(window.ActiveXObject){
xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
}else{
xmlHttp=newXMLHttpRequest();
}
if(xmlHttp){
varreq="MessageController.php?getter=<?phpecho$name;?>&msg="+document.all.con.value;
xmlHttp.open("get",req,true);
//指定返回的函數
xmlHttp.onreadystatechange=chuli;
//發送
xmlHttp.send(req);
varsendMsg=document.all.con.value;
document.all.mytextares.value+="你說:"+sendMsg+" ";
}
}
functionchuli(){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
//!!!
}
}
}
varxmlHttp2;
//每隔一定時間從伺服器得到屬於自己的消息
functiongetMsg(){
//根據情況建立ajax引擎
if(window.ActiveXObject){
xmlHttp2=newActiveXObject("Microsoft.XMLHTTP");
}else{
xmlHttp2=newXMLHttpRequest();
}
if(xmlHttp2){
varreq="GetMessageCl?getter=<?phpecho$yourname;?>&sender=<?phpecho$name;?>";
xmlHttp2.open("get",req,true);
//指定返回的函數
xmlHttp2.onreadystatechange=chuli2;
//發送
xmlHttp2.send(req);
}
}
functionchuli2(){
if(xmlHttp2.readyState==4){
if(xmlHttp2.status==200){
//取出消息的內容
varmesCon=xmlHttp2.responseXml.getElementsByTagName("msg");
vartimes=xmlHttp2.responseXml.getElementsByTagName("msgTime");
if(mesCon[0].firstChild.data!="null"){
//將信息顯示到文本預
for(vari=0;i<mesCon.length;i++){
vargetMsg=mesCon[i].firstChild.data;
document.all.mytextares.value+="<%=name%>"+"說:"+getMsg+" ";
}
}
}
}
}
-->
</script>
</head>
<body>
<center>
我的聊天室(您在和<fontcolor="red"><?phpecho$name;?></font>聊天)<br>
<textarearows="10"id="mytextares"cols="50"></textarea><br/>
<inputtype="text"id="con">
<inputtype="button"onclick="sendMsg();"value="發送">
</center>
</body>
</html>
5. 求韓順平滿漢樓餐廳管理系統全部素材及源碼 資料庫 素材 需求文檔
我有呀
6. 跪求韓順平輕松搞定網頁設計(html+css+js)中的源代碼!謝謝!
鏈接:
提取碼:a8t7
韓順平linux視頻教程一共20講,專為想要學習linux而又沒有基礎的用戶打造,它為用戶由淺入深地講解了linux的基礎知識,包括用戶管理、目錄結構、常用命令、文件許可權、j2ee環境、linux安裝演示、shell介紹、tcp.ip基礎、進程的介紹和管理、crontab詳解、mysql安裝配置使用等內容,小編提供的是網路雲下載,保存到自己雲盤中還可以直接在線觀看。
7. 哪裡有韓順平老師的坦克大戰素材及源碼。
http://download.csdn.net/detail/wangsenling/3650348
8. 求韓順平細說servle中用戶管理系統源碼,謝謝
雲盤鏈接已私信發送給你了,下載後請按照步驟進行使用!如果還有哪位朋友想要,請點「贊」此條回答以後,在下面的評論里留下您的聯系方式!學無止境,希望回答能給你帶來幫助,如果滿意請採納,不滿意的話請繼續追問!
9. 韓順平javaee三大框架的視頻和js的視頻和講課的涉及到的源碼,注意是韓順平,希望能給一個連接。
馬士兵老師的視頻也不錯,如果樓主需要可以密我