當前位置:首頁 » 操作系統 » 82源碼網

82源碼網

發布時間: 2024-08-08 21:33:10

① 誰有新浪圖片新聞的源碼

這個我有研究,我搞的網站上也搞這個東西。很好用的,是FLASH+自定義的圖片和對應的文字的鏈接。最多可定義6組,用|隔開,將下面的代碼插入網頁中即可。

你只需改PICs links texts三個變數

也可以改
focus_width=flash寬度
focus_height=FLASH高度
text_height=文字高度,不想文字出現就設為0

<!-- flash滾動焦點圖 begin -->

<!--焦點圖開始-->
<script type="text/javascript">
<!--

var focus_width=260
var focus_height=164
var text_height=25
var swf_height = focus_height+text_height

var pics='http://image2.sina.com.cn/ty/.jpg|http://image2.sina.com.cn/ty/.jpg|http://image2.sina.com.cn/ty/.jpg|http://image2.sina.com.cn/ty/.jpg|http://image2.sina.com.cn/ty/.jpg|http://ad4.sina.com.cn/200510/31/35395_260x164.jpg'
var links='http://sports.sina.com.cn/z/06wceuroqua/|http://sports.sina.com.cn/z/06wceuroqua/|http://sports.sina.com.cn/z/06wceuroqua/|http://sports.sina.com.cn/z/saihei/|/z/05vbchampions/|http://casting11.allyes.com/main/adfclick?db=casting11^bid=103,1892,1898^cid=0,0,0^sid=2080^advid=51^camid=117^show=ignore^url=http://ad.sina.com.cn/minisite/nian_ci_an/index.html'
var texts='悲情土耳其慘遭淘汰|澳大利亞32年後重進世界盃|捷克順利沖進世界盃|友誼賽國足0-0戰平保加利亞|中國女排0-3完敗於美國|念慈庵枇杷糖與孫楠提醒您注意!'

document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="http://image2.sina.com.cn/bj/zonghe/pixviewer.swf"><param name="quality" value="high"><param name="bgcolor" value="#DADADA">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
document.write('<embed src="http://image2.sina.com.cn/bj/zonghe/pixviewer.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#DADADA" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); document.write('</object>');

//-->
</script>
<!--焦點圖結束-->

<!-- flash滾動焦點圖 end -->

② 我的源碼上傳到空間後,用瀏覽器打開,查看源碼,在每個網址處出現這個

後台看看圖片存放路徑設置是否正確,然後重新生成一下前台,後台更新一下緩存試試。
如果不行,查看一下模板標簽調用是否有問題。

③ 用戶登錄 asp+sql源碼

資料庫建立一個表admin 3個列:Username Passwd oskey(用戶級別)
ODBC數據源創建一個sql的數據源與你建立的資料庫連上。
conn.asp
<%
set conn=server.createobject("adodb.connection")
conn.connectionstring="DSN=ccsw;uid=sa;pwd=1234"
conn.open
%>
index.asp
<html>

<head>
<title>管理登錄</title>
<link rel="stylesheet" href="style.CSS">
<style type="text/css">
<!--
.style1 {color: #9966FF}
.style2 {
font-size: 12pt;
font-weight: bold;
color: #9966FF;
}
.style3 {
font-size: 12pt;
color: #0033CC;
}
.style4 {color: #0000CC}
-->
</style>
</head>

<body>
<div align="center"><center>

<table border="0" cellspacing="1" width="90%">
<tr>
<td> <form method="post" action="chklogin.asp">
<table width="300" border="0" cellspacing="1" cellpadding="0" align="center" bgcolor="#000000">
<tr bgcolor="#FFFFFF">
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td height="30" colspan="2" align="right"><div align="center" class="style1 style3"><strong>管理登錄</strong></div></td>
</tr>
<tr>
<td width="33%" align="right" height="30"><span class="style4">用戶名:</span></td>
<td width="67%">
<input name="UserName" maxlength="20" class="smallInput" size="20">
</td>
</tr>
<tr>
<td width="33%" align="right" height="30"><span class="style4">密 碼:</span></td>
<td width="67%">
<input type="password" name="Passwd" maxlength="16" class="smallInput"
size="20">
</td>
</tr>
<tr>
<td colspan="2" height="15"></td>
</tr>
</table>
</td>
</tr>
<tr align="center" bgcolor="#FFFFFF">
<td height="31" bgcolor="#9999FF">
<input type="submit" name="Submit" value="確定" class="buttonface">

<input type="reset" name="Submit2" value="重寫" class="buttonface"></td>
</tr>
</table>
</form>
<p align="center">後台登錄</td>
</tr>
</table>
</center></div>
</body>
</html>
檢查用戶界面:
<!--#include file=articleconn.asp-->
<%
dim rs
UserName1=request.form("UserName")'獲得登錄界面輸入的用戶名
Passwd1=request.form("PassWd")''獲得登錄界面輸入的密碼
set rs=server.CreateObject("ADODB.RecordSet")'建立資料庫連接
rs.open "select * from admin where UserName='" & UserName1 & "' and passwd='"&passwd1&"'",conn,1 '查詢該用戶名和密碼是否存在
if rs.eof or rs.bof then '當沒有符合篩選結果時,則執行下面的句子
response.write "<script language=javascript>"
response.write "alert('用戶或密碼不對!');"
response.write "javascript:history.go(-1);"
response.write "</script>" '用javascript腳本提示用戶
else '如果符合條件的時候
session("UserName")=RS("Username") '新建session,值等於表單傳來的用戶名
session("KEY")=rs("OSKEY")
response.write"<SCRIPT language=JavaScript>alert('登錄成功');"
response.write"this.location.href='admin.asp';</SCRIPT>"
end if '結束if語句
%>

熱點內容
視頻壓縮安卓 發布:2024-11-25 13:02:18 瀏覽:341
當貝上傳應用 發布:2024-11-25 13:01:23 瀏覽:272
中國聯通湖北伺服器地址 發布:2024-11-25 13:00:38 瀏覽:747
訪問內網計算機 發布:2024-11-25 12:37:53 瀏覽:969
蘋果文件夾名字大全 發布:2024-11-25 12:28:03 瀏覽:590
ipad上b站緩存分屏 發布:2024-11-25 12:27:59 瀏覽:981
資料庫日誌文件查看 發布:2024-11-25 12:17:28 瀏覽:48
騰訊視頻明明緩存了看不了 發布:2024-11-25 12:08:01 瀏覽:182
存儲區域網路分布 發布:2024-11-25 12:07:12 瀏覽:389
安卓怎麼用湯不熱 發布:2024-11-25 11:49:06 瀏覽:844