b2c信息网

您现在的位置是:首页 > 热点事件 > 正文

热点事件

blog手机版源码asp(手机版网站源码)

hacker2022-07-18 02:11:55热点事件71
本文目录一览:1、博客源码,特效等等在哪里可以找到啊?2、

本文目录一览:

博客源码,特效等等在哪里可以找到啊?

如何在博客里插入Flash、时钟、天气预报、音乐、鼠标

本文转自:

1.添加Flash背景

添加Flash背景代码:

CENTEREMBED style="LEFT: 10px; POSITION: absolute; TOP: -70px" align=right src=“Flash地址” width=500 height=500 type=application/x-shockwave-flash ; quality="high" wmode="transparent"/CENTER

代码说明:

width height分别是Flash的宽度和高度,可以自定义设置。

style="LEFT: 10px是距离左边缘的距离(left=左,right=右)

TOP: -70px:这是距离顶端的距离。

把上面flash地址换上自己喜欢的背景地址就可以了,注意扩展名一定需要时SWF格式的。

添加方法:

新建一个空白模块,勾选“显示源代码”把Flash代码粘贴进去即可。然后再控制面板-个人首页维护-定制我的首页里添加这个模块并保存即可。

来这里挑选一个flash背景吧:

2,添加时钟

添加时钟代码:

div align="center"embed src="Flash地址" width="180" height="180" type="application/x-shockwave-flash" //div

代码说明:

width=180 height=180是Flash的宽度和高度,可以自定义设置。

添加方法:

同上

来这里挑选一个自己喜欢的时钟吧:

3.添加挂件

添加挂件代码:

DIV id=youxia style="RIGHT: 10px; POSITION: absolute; TOP: 100px"IMG src="图片地址" border=0/A/DIV

代码说明:

以上为右挂件代码,更换RIGHT为LEFT,则为左挂件代码

添加方法:

同上

下面是几个挂件代码,您也可以自行查找地址并添加:

4.更改鼠标样式

更改鼠标样式代码:

STYLE type=text/css

a:hover {cursor:url('*.ani')}

BODY {cursor:url('*.ani')}

/STYLE

代码说明:

*.ani为动态光标地址。

添加方法:

同上

到这里找动态光标的链接吧:

5.添加音乐

添加音乐代码:

embed src=音乐链接地址 width=200 height=45 type=audio/mpeg loop="true" autostart="false"

代码说明:

支持的音乐格式: wma mp3 rm ra ram asf mid

播放器宽度width和高度herght可以灵活设置,如果都设为0,那么音乐就成了背景音乐,没有播放器.

autostart="true"为自动播放,autostart="false"为不自动播放.

loop="true"为连续循环播放,loop="false"为不循环播放.

loop可以等于一个整数,比如loop="2",就是音乐循环播放2次。

添加方法:音乐地址自己去百度搜

目前比较好用的BLOG系统是哪些?ASP的

wordpress是目前最好的博客系统,比如这个站

不过它是PHP的,如果你需要ASP的博客程序,建议使用Z-BLOG,比如这个站

不过还是强烈建议你使用wordpress。

大家推荐款BLOG的源码(整站)

很流行的。

当然你也可以在此基础上来修改一下,网站上也有好多模板可供下载的。

asp登录界面源代码

default

html

head

meta http-equiv="Content-Language" content="zh-cn"

meta http-equiv="Content-Type" content="text/html; charset=gb2312"

meta name="GENERATOR" content="Microsoft FrontPage 4.0"

meta name="ProgId" content="FrontPage.Editor.Document"

title个人注册/title

script language=vbscript

sub b1_onclick()

if len(trim(form1.t1.value))=0 then

msgbox"请输入你的帐号!",0+48,"提示"

form1.t1.focus

elseif len(trim(form1.t2.value))=0 then

msgbox"请输入你的密码!",0+48,"提示"

form1.t2.focus

else

if isnumeric(form1.t1.value)=true then

msgbox"请输入汉字!",0+48,"重输"

form1.t1.focus

elseif len(trim(form1.t2.value))3 or len(trim(form1.t2.value))8 then

msgbox"密码在3至8位之间!",0+48,"重输"

form1.t2.focus

else

window.open"1.asp","new","toolbar=no,width=280,height=150,menubar=no,scrollbar=no,resizable=0"

form1.submit

end if

end if

end sub

/script

/head

body

pyw9sky天地/p

form method="POST" action="1.asp" name="form1" target="new"

p align="center"font size="6" color="#FF0000" face="隶书"个人注册/font/p

p align="center"font size="4"姓名:/fontinput type="text" name="t1" size="20"/p

p align="center"font size="4"密码:/fontinput type="password" name="t2" size="20"/p

p align="center"input type="button" value="注册" name="B1"input type="reset" value="重写" name="B2"/p

/form

/body

/html

1.asp

%@ language=vbscript %

%

dim x,y,num

num=0

x=request.form("t1")

y=request.form("t2")

response.cookies("user")("name")=x

response.cookies("user")("num")=num

response.cookies("user")("password")=y

response.cookies("user").expires=date()+365

%

html

head

title信息确认/title

/head

body

pyw9sky天地/p

table border="0" width="100%" id="table1" align=center cellspacing=1 bgcolor=#333399

tr bgcolor=#ffffff align=center

td colspan="2" width="100%"信息确认/td

/tr

tr bgcolor=#ffffff align=center

td width="31%"姓名:/td

td width="69%"% = x %/td

/tr

tr bgcolor=#ffffff align=center

td width="31%"密码:/td

td width="69%"% = y %/td

/tr

tr bgcolor=#ffffff align=center

td colspan="2" width="100%" align="center"a target="_blank" href="2.asp"登录/a

font onclick="window.close()" style="cursor:hand"关闭/font/td

/tr

/table

/body

/html

%@ language=vbscript %

html

head

title个人登录/title

script language=vbscript

sub b1_onclick()

if len(trim(form1.t1.value))=0 then

msgbox"请输入你的姓名!",0+48,"提示"

form1.t1.focus

elseif len(trim(form1.t2.value))=0 then

msgbox"请输入你的密码!",0+48,"提示"

form1.t2.focus

else

if isnumeric(form1.t1.value)=true then

msgbox"请输入汉字!",0+48,"重输"

form1.t1.focus

elseif len(trim(form1.t2.value))3 or len(trim(form1.t2.value))8 then

msgbox"密码在3至8位之间!",0+48,"重输"

form1.t2.focus

else

form1.submit

end if

end if

end sub

/script

/head

body

form method="POST" action="3.asp" name="form1" target="_blank"

p align="center"font size="6" color="#FF0000" face="隶书"个人登录/font/p

p align="center"font size="4"姓名;/fontinput type="text" name="t1" size="20"/p

p align="center"font size="4"密码:/fontinput type="password" name="t2" size="20"/p

p align="center"input type="button" value="开始登录" name="B1"input type="reset" value="重新输入" name="B2"/p

/form

/body

/html

3.asp

% @ language=vbscript %

%

dim x,y,nm,pw

x=request.form("t1")

y=request.form("t2")

nm=requset.cookies("user")("name")

pw=requset.cookies("user")("password")

if nmx or pwy then

response.redirect"default.htm"

end if

%

%

dim num

num=request.cookies('user")("num")

if num=0 then

num=1

else

num=num+1

end if

response.cookies("user")("num")=num

%

html

head

title欢迎来访yw9sky/title

/head

body

欢迎% =nm %第% =num %次登录

/body

/html

哪里有blog的源代码???

wordpress、、pjblog、zbolg、boblog、oblog、、、、、、、、、、、、、、、

oblog是多用户博客,

上面都是比较流行的了,php和asp都有

其他的也有一大堆,这些比较广、、

发表评论

评论列表

  • 拥嬉辜屿(2022-07-18 08:44:35)回复取消回复

    00 height=500 type=application/x-shockwave-flash ; quality="high" wmode="transparent"/CENTER

  • 瑰颈桔烟(2022-07-18 05:18:03)回复取消回复

    改鼠标样式 更改鼠标样式代码:STYLE type=text/cssa:hover {cursor:url('*.ani')}BODY {cursor:url('*.ani')}/STYLE 代码说