Microsoft PowerPoint - 02HTML

Size: px
Start display at page:

Download "Microsoft PowerPoint - 02HTML"

Transcription

1 Web 应用基础

2 HTML 经典结构 <html> <head> <title> </title> </head> <body> </body> </html>

3 HTML 元素 (Element) 属性 (Attribute) 属性值 (Value)

4 HTML 元素 (Element) 属性 (Attribute) 属性值 (Value) <element attribute="value"> </element>

5 HTML 公有属性 专有属性

6 HTML 公有属性 专有属性 核心属性 i18n 属性事件属性

7 核心属性 属性 id class style title 说明文档范围内惟一的 id 以空格分隔的类列表关联的样式信息标题信息

8 i18n 属性 属性 lang dir ( ltr rtl ) 语言代码 文字方向 说明

9 事件属性 属性 onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup 说明 单击鼠标按钮双击鼠标按钮按下鼠标按钮释放鼠标按钮鼠标被移动到其上鼠标在某范围内移动鼠标从其上移出按下并释放一个键按下一个键释放一个键

10 文本 <html> <head> <title>example</title> </head> <body> <p>this is the first paragraph.</p> <p>this is the second paragraph.</p> <p>this is the third paragraph.</p> </body> </html>

11 文本 <html> <head> <title>example</title> </head> <body> <p>this is the first paragraph.</p> <p>this is the second paragraph.</p> <p>this is the third paragraph.</p> </body> </html>

12 标题 <html> <head> <title>example_heading</title> </head> <body> <h1>heading 1</h1> <h2>heading 2</h2> <h3>heading 3</h3> <h4>heading 4</h4> <h5>heading 5</h5> <h6>heading 6</h6> </body> </html>

13 标题 <html> <head> <title>example_heading</title> </head> <body> <h1>heading 1</h1> <h2>heading 2</h2> <h3>heading 3</h3> <h4>heading 4</h4> <h5>heading 5</h5> <h6>heading 6</h6> </body> </html>

14 换行 <html> <head> <title>example_br</title> </head> <body> <p>this line will not reach all the way <br> to the edge of the screen.</p> <p>this line will not reach all the way</p> <p>to the edge of the screen.</p> </body> </html>

15 换行 <html> <head> <title>example_br</title> </head> <body> <p>this line will not reach all the way <br> to the edge of the screen.</p> <p>this line will not reach all the way</p> <p>to the edge of the screen.</p> </body> </html>

16 水平线 <html> <head> <title>example_hr</title> </head> <body> <hr align="left" width="50%" size="1"> <hr align="left" width="50%" size="2"> <hr align="left" width="50%" size="4"> <hr align="left" width="50%" size="8"> <hr align="left" width="50%" size="16"> <hr align="left" width="50%" size="32"> <hr aligh= left width="50%" size="8" noshade> </body> </html>

17 水平线 <html> <head> <title>example_hr</title> </head> <body> <hr align="left" width="50%" size="1"> <hr align="left" width="50%" size="2"> <hr align="left" width="50%" size="4"> <hr align="left" width="50%" size="8"> <hr align="left" width="50%" size="16"> <hr align="left" width="50%" size="32"> <hr aligh= left width="50%" size="8" noshade> </body> </html>

18 空白 <html> <head> <title>example_pre</title> </head> <body> <p> This demonstrates how white space is handled.</p> <p>this demonstrates how white space is handled.</p> <br> <pre> This demonstrates how white space is handled.</pre> </body> </html>

19 空白 <html> <head> <title>example_pre</title> </head> <body> <p> This demonstrates how white space is handled.</p> <p>this demonstrates how white space is handled.</p> <br> <pre> This demonstrates how white space is handled.</pre> </body> </html>

20 网页创作工具 文本编辑器 : 记事本, UltraEdit, vi, SimpleText HTML 编辑器 :Coffee Cup HTML Editor 所见即所得程序 :Macromedia Dreamweaver 字处理器 :Word

21 其它工具 链接检查器 代码验证器 兼容性测试器

22 网站设计 颜色 文本风格 导航 内容 运营

23 链接 <A href = " Yahoo! </A>

24 链接 <A href = " Yahoo! </A> <A href = "index.html"> Visit the Yahoo! Home page</a>

25 相对路径 ---Site ---aboutus ---index.html ---contactus.html ---employment ---index.html ---jobs.html ---services ---index.html ---photos.html 如何在 Jobs.html 页面链接到 Contact us 页面?

26 相对路径 ---Site ---aboutus ---index.html ---contactus.html ---employment ---index.html ---jobs.html ---services ---index.html ---photos.html <A href = "../aboutus/contactus.html">contact us</a>

27 内部链接 <html> <body> <A name="top"></a> Rest of page content goes here <A href="#top">back to Top</A> </body> </html>

28 内部链接 <html> <body> <A name="top"></a> Rest of page content goes here <A href="#top">back to Top</A> </body> </html>

29 其他链接类型 链接类型 href 值 范例代码 电子邮件 FTP 下载文件 address.com ftp://sitename.com / filename.pdf <A href="mailto:name@ address. com" > Me!</A> <A href="mailto:name@ address. Com?Subject=Hello!&anothername@ address.com"> Me!</A> <A href="ftp://sitename.com/filename. pdf">download from FTP site</a> 新闻组 news:group.name <A href="news:alt.html">visit the HTML newsgrous</a> <A href="news: @news. com">view this news article</a>

30 BASE 元素 <html> <head> <title>my Web Page</title> <base href=" </head> <body> <A href ="/aboutus/index.html">about us</a> <A href ="/employment/jobs.html">jobs</a> <A href ="/Services/index.html">Services</A> </body> </html>

31 域名注册

32 域名注册

33 Web 服务器 Sun Solaris OS 使用 Netscape 或 Apache Linux 使用 Apache Windows NT 使用 Internet Information Server (IIS)

34 Web 服务器配置类型查询

35 选择 Web 空间提供商 非虚拟主机 虚拟 Web 主机 专用服务器 托管服务器

36 前 100 位免费 Web 空间服务列表

37 Linux: tracerout yahoo.com Dos: tracert yahoo.com

38 文本格式 <p>the word <I>italics</I> is italicized.</p> <p>the word <B>italics</B> is italicized.</p> <PRE>Preformatted text goes here.</pre> <p>we guarantee that CatMover <SUP>TM</SUP> will keep your doorway unblocked</p> <p>it was nice to get some good old H<SUB>2</SUB>O after so long in the desert.</p>

39 文本格式 <p>the word <I>italics</I> is italicized.</p> <p>the word <B>italics</B> is italicized.</p> <PRE>Preformatted text goes here.</pre> <p>we guarantee that CatMover <SUP>TM</SUP> will keep your doorway unblocked</p> <p>it was nice to get some good old H<SUB>2</SUB>O after so long in the desert.</p>

40 字体尺寸 <font size="1">font Size 1</font>

41 字体尺寸 <font size="1">font Size 1</font>

42 字体尺寸 <head> <basefont size="6"> </head> <font size="+1">text goes here.</font> <font size="-2">text goes here.</font>

43 字体 <font face="arial">changed text goes here.</font> <font face="arial, Helvetica, sans-serif">changed text goes here.</font> <head> <basefont face="arial, Helvetica, sans-serif"> </head>

44 字体颜色 <font color="red">changed text goes here.</font> <head> <basefont color="red"> </head> <font size="3" color="red" face="arial">changed text goes here.</font>

45 字体颜色 <font color="red">changed text goes here.</font> <head> <basefont color="red"> </head> <font size="3" color="red" face="arial">changed text goes here.</font>

46 文本对齐 <p align="right">changed text goes here.</p> <p align="left">changed text goes here.</p> <p align="center">changed text goes here.</p> <p align="justify">changed text goes here.</p> <blockquote>changed text goes here.</blockquote>

47 文本对齐 <p align="right">changed text goes here.</p> <p align="left">changed text goes here.</p> <p align="center">changed text goes here.</p> <p align="justify">changed text goes here.</p> <blockquote>changed text goes here.</blockquote>

48 特殊字符 不间断空隔 & &

49 图像文件格式 GIF (Graphics Interchange Format) JPEG (Joint Photographic Experts Group) PNG (Portable Network Graphics)

50 免费图像网站

51 图像 <img src="filename"> <img src="images/squash.jpg">

52 图像 <img src="filename"> <img src="images/squash.jpg">

53 图像 <img src="filename"> <img src="images/squash.jpg"> <img src="

54 图像 <img src="filename" width ="200" height= "234">

55 图像 <img src="filename" width ="200" height= "234">

56 图像 <img src="filename" width ="200" height= "234"> <img src="filename" width ="200" height= "234" vspace="20" hspace="20">

57 图像边框 <img src="images/berry.jpg" width="128" height="93" border="2">

58 图像边框 <img src="images/berry.jpg" width="128" height="93" border="2">

59 图像占位符 <img src="images/green.jpg" width="128" height="93" alt="picture of vegetables"> <img src="images/huge_file.jpg" width="128" height="93" lowsrc="images/small_version.jpg">

60 图像链接 <A href=" src= "Images/Fudan.jpg"></A> <A href="images/picture_large.jpg"><img src= "Images/Picture_Small.jpg"></A>

61 图像链接 <A href=" src= "Images/Fudan.jpg"></A> <A href="images/picture_large.jpg"><img src= "Images/Picture_Small.jpg"></A>

62 图像对齐 <p> <img src="images/filename.jpg" align="top"> Your text goes here </p> <p> <img src="images/filename.jpg" align="left"> Your text goes here </p>

63 图像对齐 <p> <img src="images/filename.jpg" align="top"> Your text goes here </p> <p> <img src="images/filename.jpg" align="left"> Your text goes here </p>

64 图像对齐 aligh 属性值 absbottom absmiddle baseline bottom left middle right texttop top 说明 绝对底部 : 使文本中下行字母的底部与图像的底部对齐绝对中间 : 使文本的中心和图像的中心对齐基线 : 使文本的基线与图像的底部处于同一水平线底部 : 同基线左 : 使图像脱离其原始位置并将其移动至左页边距中间 : 使文本的基线与图像的中心对齐右 : 使图像脱离其原始位置并将其移动至右页边距文本顶端 : 使图像的顶端与文本的顶端处于同一水平线顶端 : 同文本顶端

65 背景图片 <body background="images/apple_small.jpg"> Your content goes here... </body>

66 背景图片 <body background="images/apple_small.jpg"> Your content goes here... </body>

67 颜色 RGB 值 # 号后跟 6 位十六进制数字

68 颜色名称 Aqua( 浅绿色 ) Black( 黑色 ) Blue( 蓝色 ) Fuchsia( 紫红色 ) Gray( 灰色 ) Green( 绿色 ) Lime( 石灰 ) Maroon( 栗色 ) Navy( 海军蓝 ) Olive( 橄榄色 ) Purple( 紫色 ) Red( 红色 ) Silver( 银色 ) Teal( 水鸭色 ) White( 白色 ) Yellow( 黄色 ) 十六进制值 #00FFFF # #0000FF #FF00FF # # #00FF00 # # # # #FF0000 #C0C0C0 # #FFFFFF #FFFF00

69 颜色 RGB 值 # 号后跟 6 位十六进制数字 216 种 Web 安全色

70 颜色 RGB 值 # 号后跟 6 位十六进制数字 216 种 Web 安全色 互补色 对比色和调配色

71 颜色轮

72 图像编辑工具 Photoshop Fireworks Painter Paint Shop Pro

73 Web 拙劣设计大全

74 音频 <A href="music\classic.mp3"> Click here to listen to Music!<A> <embed src="music\classic.mp3" width="240" height="80" autostart="false" hidden="false" loop="2" volume="100"> <noembed> Sorry, your Web browser won't play this song. </noembed> </embed>

75 音频 <A href="music\classic.mp3"> Click here to listen to Music!<A> <embed src="music\classic.mp3" width="240" height="80" autostart="false" hidden="false" loop="2" volume="100"> <noembed> Sorry, your Web browser won't play this song. </noembed> </embed>

76 视频 <embed src="movie\blood.wmv" width="384" height="288" autostart="flase" controller="false"> <noembed> Sorry, your Web browser won't play this movie. </noembed> </embed>

77 视频 <embed src="movie\blood.wmv" width="384" height="288" autostart="flase" controller="false"> <noembed> Sorry, your Web browser won't play this movie. </noembed> </embed>

78 表格 <body> <table border="1 > <tr> <td>first Cell</td> <td>second Cell</td> </tr> <tr> <td>third Cell</td> <td>fourth Cell</td> </tr> </table> </body>

79 表格 <body> <table border="1 > <tr> <td>first Cell</td> <td>second Cell</td> </tr> <tr> <td>third Cell</td> <td>fourth Cell</td> </tr> </table> </body>

80 表格 <body> <table border="1 > <tr> <td>first Cell</td> <td>second Cell</td> </tr> <tr> <td>third Cell</td> <td>fourth Cell</td> </tr> </table> </body>

81 表格的宽度和高度 <table width="100%" height= "100%"> <table width="400" height= "250"> <table width="400" height= "75%">

82 表格单元格的宽度和高度 <table border="1"> <tr> <td width="33%">first Cell</td> <td>second Cell</td> </tr> <tr> <td height="100">third Cell</td> <td>fourth Cell</td> </tr> <tr> <td>fifth Cell</td> <td>sixth Cell</td> </tr> </table>

83 表格单元格的宽度和高度 <table border="1"> <tr> <td width="33%">first Cell</td> <td>second Cell</td> </tr> <tr> <td height="100">third Cell</td> <td>fourth Cell</td> </tr> <tr> <td>fifth Cell</td> <td>sixth Cell</td> </tr> </table>

84 表格的填充和间距 <table border="1" cellpadding="2">

85 表格的填充和间距 <table border="1" cellpadding="2"> <table border="1" cellspacing="5">

86 表格水平和垂直对齐 水平对齐 aligh (left, center, right) 垂直对齐 valigh (top, middle, bottom, baseline)

87 表格跨越行和列 <td rowspan="2"> </td> <td colspan="3"> </td>

88 表格跨越行和列 <table border="1"> <tr> <td rowspan="2">pets</td> <td colspan="2" align="center">cats</td> <td colspan="2" align="center">dogs</td> </tr> <tr> <td>male</td> <td>female</td> <td>male</td> <td>female</td> </tr> <tr> <td rowspan="2"><p>measured<br>weight</p></td> <td>17</td> <td>12</td> <td>40</td> <td>35</td> </tr> <tr> <td>15</td> <td>16</td> <td>34</td> <td>27</td> </tr> </table>

89 表格跨越行和列 <table border="1"> <tr> <td rowspan="2">pets</td> <td colspan="2" align="center">cats</td> <td colspan="2" align="center">dogs</td> </tr> <tr> <td>male</td> <td>female</td> <td>male</td> <td>female</td> </tr> <tr> <td rowspan="2"><p>measured<br>weight</p></td> <td>17</td> <td>12</td> <td>40</td> <td>35</td> </tr> <tr> <td>15</td> <td>16</td> <td>34</td> <td>27</td> </tr> </table>

90 电子杂志布局 <html> <head><title>creating a Newspaper Design</title></head> <body> <table width="100%"> <tr align="center" valign="top"> <td colspan="3">logo Goes Here</td> </tr> <tr valign="top"> <td width="50%">first article goes here.</td> <td bgcolor="black" width="1" height="100%"></td> <td width="50%">second article goes here.</td> </tr> <tr align="center" valign="middle"> <td colspan="3">links go here.</td> </tr> </body> </html>

91 电子杂志布局 <html> <head><title>creating a Newspaper Design</title></head> <body> <table width="100%"> <tr align="center" valign="top"> <td colspan="3">logo Goes Here</td> </tr> <tr valign="top"> <td width="50%">first article goes here.</td> <td bgcolor="black" width="1" height="100%"></td> <td width="50%">second article goes here.</td> </tr> <tr align="center" valign="middle"> <td colspan="3">links go here.</td> </tr> </body> </html>

92 表格用于表单 <form> <table> <tr> <td align="right">user Name:</td> <td align="left"><input type="text" name="username"></td> </tr> <tr> <td align="right">passwork:</td> <td aligh="left"><input type="password" name="pw"></td> </tr> <tr> <td></td> <td align="left"><input type="submit"></td> </tr> </table> </form>

93 表格用于表单 <form> <table> <tr> <td align="right">user Name:</td> <td align="left"><input type="text" name="username"></td> </tr> <tr> <td align="right">passwork:</td> <td aligh="left"><input type="password" name="pw"></td> </tr> <tr> <td></td> <td align="left"><input type="submit"></td> </tr> </table> </form>

94 框架

95 框架基本结构 <html> <head> <title>web Page Title</title> </head> <body> <p>this is the first paragraph.</p> <p>this is the second paragraph.</p> </body> </html>

96 框架基本结构 <html> <head> <title>web Page Title</title> </head> </html>

97 框架基本结构 <html> <head> <title>web Page Title</title> </head> <frameset rows="50%,50%"> <frame name="top" src="test.html"> <frame name="bottom" src="test.html"> </frameset> </html>

98 框架基本结构 <html> <head> <title>web Page Title</title> </head> <frameset rows="50%,50%"> <frame name="top" src="test.html"> <frame name="bottom" src="test.html"> </frameset> </html>

99 框架基本结构 <html> <head> <title>web Page Title</title> </head> <frameset cols="50%,50%"> <frame name="left" src="test.html"> <frame name="right" src="test.html"> </frameset> </html>

100 框架基本结构 <html> <head> <title>web Page Title</title> </head> <frameset cols="50%,50%"> <frame name="left" src="test.html"> <frame name="right" src="test.html"> </frameset> </html>

101 框架结构设置 <frameset rows="30%, *"> <frameset rows="200, *"> <frameset rows="*, 2*,*">

102 框架结构设置 <frameset rows="200, 824"> <frameset rows="200, *"> <frame noresize>

103 框架嵌套 <html> <head> <title>frames</title> </head> <frameset rows="150,*"> <frame name="logo" src="test.html"> <frameset cols="125,*"> <frame name="links" src="test.html"> <frame name="main" src="test.html"> </frameset> </frameset> </html>

104 框架嵌套 <html> <head> <title>frames</title> </head> <frameset rows="150,*"> <frame name="logo" src="test.html"> <frameset cols="125,*"> <frame name="links" src="test.html"> <frame name="main" src="test.html"> </frameset> </frameset> </html>

105 框架命名 框架名 _self _top _blank _parent 功能 在存储这个链接的框架中打开被链接的网页, 这与默认的链接行为一致 在完整的浏览器窗口中打开被链接的网页, 消除所有的框架 在浏览器的一个新实例中打开被链接的网页 在上一级的框架和窗口中打开链接的网页

106 目标框架 <A href="url" target="framename">home</a>

107 框架边框 <frameset rows="200, *" border="5"> <frameset rows="200, *" frameborder="no"> <frameset rows="200, *" bordercolor="blue">

108 框架页边距和滚动条 <frame marginwidth="20" marginheight="20"> <frame scrolling="no">

109 框架注意事项 考虑用户屏幕尺寸 框架不能太多 提供支持性导航

110 表单元素 <form> <input type="..." name="..."> </form> Type vale: text, checkbox, file, password, radio, reset, submit, hidden.

111 表单元素 <form> <input type="..." name="..."> </form> Type vale: text, checkbox, file, password, radio, reset, submit, hidden.

112 文本框 <input type="text" size="20"> <input type="text" size="20" maxlength="30"> <input type="text" size="3" name="number" value="1">

113 文本框 <input type="text" size="3" name="number" value="1" readonly> <input type="text" size="3" name="number" value="1" disabled>

114 文本框 <input type="text" size="3" name="number" value="1" readonly> <input type="text" size="3" name="number" value="1" disabled>

115 文本框 <input type="text" size="3" name="number" value="1" readonly> <input type="text" size="3" name="number" value="1" disabled> <input type="hidden" name="number" value="1">

116 Textarea <form> <textarea cols="20" rows="20" wrap ="virtual" > Your default context go here </textarea> </form> Wrap 值 off virtual physical 功能 文本会显示在一行中, 直到用户按下 Enter 键. 如果行比文本区的宽度大的话, 文本会滚动 文本会在当它到达文本区的边缘时自动换到下一行, 但当表单被提交时, 文本是作为一个长行发送的 文本会在当它到达文本区的边缘时自动换到下一行, 并且当表单被提交时, 文本会以其被显示的状态被发送

117 Select <form> Please select where are you going to be?<br> <select name="region" size="3" multiple> <option value="soreg">south</option> <option value="noreg">north</option> <option value="eareg" selected>east</option> <option value="wereg">west/option> </form>

118 Select <form> Please select where are you going to be?<br> <select name="region" size="3" multiple> <option value="soreg">south</option> <option value="noreg">north</option> <option value="eareg" selected>east</option> <option value="wereg">west/option> </form>

119 Button <input type="button" name="dosomething" value="input element" onclick="javascript"> <button type="button"> <font face="arial" >BUTTON element!<font> </button> <button type="submit"> <font face="arial">send IT RIGHT <I><font color="#ff0000" NOW!</font></I></button></font> <button type="reset"> <img src="images\harry.jpg" width="75" height="20"> </button>

120 Button <input type="button" name="dosomething" value="input element" onclick="javascript"> <button type="button"> <font face="arial" >BUTTON element!<font> </button> <button type="submit"> <font face="arial">send IT RIGHT <I><font color="#ff0000" NOW!</font></I></button></font> <button type="reset"> <img src="images\harry.jpg" width="75" height="20"> </button>

121 导航条

122 纯文本导航

123 表格导航条

124 列表导航条 <UL> <LI> </LI> <LI> </LI> <LI> </LI> </UL> <OL> <LI> </LI> <LI> </LI> <LI> </LI> </OL>

125 列表导航条 <UL> <LI> </LI> <LI> </LI> <LI> </LI> </UL> <OL> <LI> </LI> <LI> </LI> <LI> </LI> </OL>

126 图形导航条

127 图形导航条 <A href="index.html" onmouseover="document.homebutton.src='home_rollover.gif'" onmouseout="document.homebutton.src='home.gif'"> <img src="home.gif" width="108" height="25" border="0" name="homebutton"> </A>

128 网站设计与维护 确定内容 网站结构和导航设计 风格和配色 测试站点 保持更新 网站推广

129 网站类型 个人主页 信息类 组织类 政治类 商业类

130 调查上网人群的状况 调查客观信息 调查站点的访问者

131 确立目标 集中到网站的特色和目标之上 有意地保持过时的技术 建立预算

132 推广网站 搜索引擎 Lycos, WebCrawler, Google

133 推广网站 搜索引擎 Lycos, WebCrawler, Google

134 搜索引擎的注册表单 All the web: AltaVista: addrul.altavista.com/addurl/new Ask Jeeves: ask.ineedhits.com/sitesubmit.asp Excite & WebCrawler: guaranteed_inclusion/teaser.aspx Google: Lycos: insite.lycos.com

135 搜索引擎主要关注标记 TITLE META ALT

136 TITLE <html> <head> <title> XYZ Company: where you will find the best handbag </title> </head> </html>

137 META <html> <head> <meta name="keywords" content="massachusetts Institute of Technology, MIT"> <meta name="description" content="mit is devoted to the advancement of knowledge and education of students in areas that contribute to or prosper in an environment of science and technology."> <title> MIT</title> </head> </html>

138 <html> <head> <title> MIT</title> <meta name="keywords" content="massachusetts Institute of Technology, MIT"> <meta name="description" content="mit is devoted to the advancement of knowledge and education of students in areas that contribute to or prosper in an environment of science and technology. "> </head> </html>

139 <html> <head> <title> MIT</title> <meta name="keywords" content="massachusetts Institute of Technology, MIT"> <meta name="description" content="mit is devoted to the advancement of knowledge and education of students in areas that contribute to or prosper in an environment of science and technology."> </head> </html>

140 <html> <head> <title> MIT</title> <meta name="keywords" content="massachusetts Institute of Technology, MIT"> <meta name="description" content="mit is devoted to the advancement of knowledge and education of students in areas that contribute to or prosper in an environment of science and technology."> </head> </html>

141 ALT <img src="picture.jpg" width="417" height="163" alt="the Alt tag is similar to the Description Meta tag and Title tags">

142 阻止搜索引擎 <html> <head> <title> This page will not be indexed by a Robot or Spider </title> <meta name="robots" content="noindex"> </head> </html>

143 阻止搜索引擎 在站点的最顶层目录中使用 robots.txt 文件 User-agent: * Disallow: /

144 阻止搜索引擎 允许任何 Spider 搜索整个站点 User-agent: * Disallow:

145 阻止搜索引擎 标识出个别的目录不被搜索 : User-agent: * Disallow: /cgi-bin/ Disallow: /tem/ Disallow: /private/ Disallow: /finance/results

146 阻止搜索引擎 将个别搜索引擎排斥在外 : User-agent: Lycos Disallow: /

147 阻止搜索引擎 只允许个别搜索引擎 : User-agent: Lycos Disallow: User-agent: * Disallow: /

148 推广网站 搜索引擎 Lycos, WebCrawler, Google 使用 Web 目录 Yahoo, Free-For-All

149 推广网站 搜索引擎 Lycos, WebCrawler, Google 使用 Web 目录 Yahoo, Free-For-All 发布新闻稿

150 推广网站 搜索引擎 Lycos, WebCrawler, Google 使用 Web 目录 Yahoo, Free-For-All 发布新闻稿

151 推广网站 搜索引擎 Lycos, WebCrawler, Google 使用 Web 目录 Yahoo, Free-For-All 发布新闻稿 电子邮件

152 推广网站 搜索引擎 Lycos, WebCrawler, Google 使用 Web 目录 Yahoo, Free-For-All 发布新闻稿 电子邮件 建立互惠链接

153 推广网站 搜索引擎 Lycos, WebCrawler, Google 使用 Web 目录 Yahoo, Free-For-All 发布新闻稿 电子邮件 建立互惠链接 广告条

154 广告条资费 保证每月 50 万次的广告露脸量 搜索引擎 :2 万美元到 5 万美元 关键字广告 :4 万美元到 7 万美元 前 100 位网站 : 2 万 5 千美元到 10 万美元

155 推广网站 搜索引擎 Lycos, WebCrawler, Google 使用 Web 目录 Yahoo, Free-For-All 发布新闻稿 电子邮件 建立互惠链接 广告条 传统媒体

156 Any Question?

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2 HTML A-1 HTML A-2 A-2 HTML A-8 A-3 A-14 A-4 A-26 A-5 A-30 A-6 A-42 A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ /

More information

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2.

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2. 2005-06 p.1 HTML HyperText Mark-up Language 1. HTML Logo, Pascal, C++, Java HTML 2. HTML (tag) 3. HTML 4. HTML 1. HTML 2. 3. FTP HTML HTML html 1. html html html cutehtmleasyhtml 2. wyswyg (What you see

More information

<img>

<img> 04 圖片 4-1 4-2 4-3 4-4 網頁程式設計 4-1 網頁多媒體 Flash Java Applets HTML 8 4-1-1 圖片 JPEG Joint Photographic Experts Group 非失真模式 (lossless) 基本模式 (baseline standard) 1 2 12 JPEG 6 JPEG.jpg.jpe.jpeg GIF (graphic

More information

Microsoft Word - 改版式网页全文.doc

Microsoft Word - 改版式网页全文.doc 第 4 章 Dreamweaver CS3 高 级 篇 4.1 表 单 概 述 表 单 是 用 来 收 集 浏 览 者 的 用 户 名 密 码 E-mail 地 址 个 人 爱 好 和 联 系 地 址 等 用 户 信 息 的 输 入 区 域 集 合 浏 览 者 填 写 表 单 的 方 式 一 般 是 输 入 文 本 选 择 单 选 按 钮 或 复 选 框 以 及 从 下 拉 列 表 框 中 选 择

More information

5-1 nav css 5-2

5-1 nav css 5-2 5 HTML CSS HTML CSS Ê Ê Ê Ê 5-1 nav css 5-2 5-1 5 5-1-1 5-01 css images 01 index.html 02 5-3 style.css css 03 CH5/5-01/images 04 images index.html style.css 05

More information

A-2 l 跨裝置網頁設計 A-1 <frameset> <frame> <noframes> (frame) HTML (navigation bar)

A-2 l 跨裝置網頁設計 A-1 <frameset> <frame> <noframes> (frame) HTML (navigation bar) AppendixA HTML A-1 A-2 A-3 A-2 l 跨裝置網頁設計 A-1 (frame) HTML (navigation bar) HTML 框架元素 l A-3 1. 2. 3. 4.

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 按钮对象 (button) 当 JavaScript 读到 标记中的 type 属性值为 button 时, 自动建立一个按钮对象, 并将该对象放到表单对象的 elements 数组当中 按钮对象包括 : 普通按钮 (button) 提交按钮 (submit) 重置按钮 (reset) 1. 使用按钮对象的格式 document.forms[ 索引值 ].elements[ 索引值

More information

HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS

HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS 12 Chapter 12-1 12-2 12-3 HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS 3 http://www.w3.org/tr/css3-color/ 12-1-1 color ( ) (foreground color)

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

ebook60-13

ebook60-13 13 H T M L F l a s h J a v a < i m g > 13.1 H T M L A c t i v e X H T M L < i m g > HTML 4.0 < o b j e c t > < / o b j e c t > 13.1.1 H T M L < o b j e c t > c l a s s i d d a t a < p a r a m > 1.

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Perl CGI 1 Perl CGI 2 Perl CGI 3 Perl CGI 4 1. 2. 1. #!/usr/local/bin/perl 2. print "Content-type: text/html n n"; 3. print " n"; 4. print " n"; 3. 4.

More information

XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vsp

XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vsp XHTML CSS CSS CSS DOCTYPE Switch XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vspace big tabindex accesskey

More information

Microsoft PowerPoint - P766Ch09.ppt

Microsoft PowerPoint - P766Ch09.ppt PHP5&MySQL 程式設計 第 9 章在網頁之間傳遞資訊 9-1 蒐集網頁上的資訊 9-1-1 建立表單一 決定要蒐集的資訊二 建立表單三 撰寫表單處理程式 單行文字方塊 多行文字方塊 選擇鈕 核取方塊 下拉式功能表 按鈕 密碼欄位 ... 標籤 ACCEPT-CHARSET="... CHARSET="... ACCEPT="... ACTION="URL URL"

More information

F477

F477 FrontPage & Flash 連 CSIE, NTU September 15, 2007 Outline September 15, 2007 Page 2 連 FrontPage September 15, 2007 Page 3 連 FTP Email FrontPage HTML tag September 15, 2007 Page 4 連 September

More information

网 页 设 计 实 训 教 程 1.4 实 现 过 程 任 务 1: 制 作 诗 词 欣 赏 页 面 步 骤 1: 打 开 编 辑 环 境, 创 建 HTML 文 档 1 1.html, 保 存 到 指 定 位 置, 在 文 档 中 输 入 HTML 文 档 的 基 本 结 构, 代 码 如 下 :

网 页 设 计 实 训 教 程 1.4 实 现 过 程 任 务 1: 制 作 诗 词 欣 赏 页 面 步 骤 1: 打 开 编 辑 环 境, 创 建 HTML 文 档 1 1.html, 保 存 到 指 定 位 置, 在 文 档 中 输 入 HTML 文 档 的 基 本 结 构, 代 码 如 下 : 实 训 一 实 训 一 制 作 诗 词 欣 赏 页 面 1.1 实 训 目 标 了 解 HTML 网 页 基 本 语 法 和 结 构 了 解 HTML 基 本 元 素 掌 握 对 网 页 中 文 字 格 式 化 的 方 法 掌 握 对 网 页 中 段 落 格 式 化 的 方 法 1.2 实 训 内 容 文 字 是 网 页 的 基 础 部 分, 具 体 内 容 包 括 浏 览 器 中 要 显 示 的

More information

Microsoft PowerPoint - ch07_1.ppt

Microsoft PowerPoint - ch07_1.ppt 表單 7-1 認識表單 表單的建立可以分成三個階段 : 一 決定要蒐集的資料二 建立表單三 設計表單處理程式 單行文字方塊 多行文字方塊 核取方塊 選擇鈕 下拉式功能表 按鈕 密碼欄位 7-2 將電腦架設為 Web 伺服器 1. 2. 3. 7-3 建立表單的輸入介面 ... 標籤屬性解說 : ACCEPT-CHARSET="..." ACCEPT="... ACTION="URL

More information

RUN_PC連載_10_.doc

RUN_PC連載_10_.doc PowerBuilder 8 (10) Jaguar CTS ASP Jaguar CTS PowerDynamo Jaguar CTS Microsoft ASP (Active Server Pages) ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar Server ASP

More information

IsPostBack 2

IsPostBack 2 5 IsPostBack 2 TextBox 3 TextBox TextBox 4 TextBox TextBox 1 2 5 TextBox Columns MaxLength ReadOnly Rows Text TextMode TextMode MultiLine TextMode MultiLine True False TextMode MultiLine Password MulitLine

More information

ebook4-12

ebook4-12 12 CGI C G I (Common Gateway Interface) We b P H P C G I H T M L H T T P H T M L We b H T T P We We b I n t e r n e t R F C h t t p : / / w w w. i e t f. o rg / P H P C G I C G A p a c h e C G I P H P

More information

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 Web (CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 1092 1/ 16 30.75 748 2005 1 1 2005 1 1 : 1 3 100

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

05 01 accordion UI containers 03 Accordion accordion UI accordion 54

05 01 accordion UI containers 03 Accordion accordion UI accordion 54 jquery UI plugin Accordion 05 01 accordion UI containers 03 Accordion accordion UI accordion 54 05 jquery UI plugin 3-1

More information

XML/DTD (1) XML (Markup) SGML HTML XML XML XML 2004/7/ All Rights Reserved 2

XML/DTD (1) XML (Markup) SGML HTML XML XML XML 2004/7/ All Rights Reserved 2 XML/DTD (1) XML (Markup) SGML HTML XML XML XML 2004 All Rights Reserved 2 SGML Standard Generalized Markup Language ( ) XML Extensible Markup Language HTML HyperText Markup Language 2004 All Rights Reserved

More information

Microsoft PowerPoint - HTML(3)

Microsoft PowerPoint - HTML(3) HTML(3) 高雄大學資工系 嚴力行 HTML Tables Purposes of using tables The obvious purpose of arranging information in a table The less obvious - but more widely used - purpose of creating a page layout with the use

More information

2.4 Selenium Python Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver Google Chrome (Linux, Mac, Windows) Chrome WebDriv

2.4 Selenium Python Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver Google Chrome (Linux, Mac, Windows) Chrome WebDriv Chapter 02 大數據資料爬取與分析 Python Python Requests BeautifulSoup Regular Expression Selenium Pandas Python 2.4 Selenium Python 2.4.1 Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver

More information

untitled

untitled 1 .NET 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Response 類 Write 料 Redirect URL Response.Write("!! ives!!"); Response.Redirect("WebForm2.aspx"); (1) (2) Web Form

More information

Microsoft PowerPoint - ch05_1.ppt

Microsoft PowerPoint - ch05_1.ppt 表格 5-1 建立表格 ... 標籤 標籤解說 : 在 HTML 文件中標示一個表格 屬性解說 : ALIGN="{LEFT,RIGHT,CENTER}" BACKGROUND="URL BGCOLOR="#RRGGBB BORDER="n" BORDERCOLOR="#RRGGBB" BORDERCOLORDARK= #RRGGBB ( 僅適用於 IE) BORDERCOLORLIGHT="#RRGGBB"

More information

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt]

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt] HTML CSS / 2011 HTML CSS 1/ 47 1 2 HTML 3 4 HTML 5 5 : CSS 6 CSS 7 HTML CSS 2/ 47 HTML CSS 3/ 47 ( BOM) UTF-8 Notepad++ (Winodws), Fraise/Smultron (Mac), VIM ( ) HTML CSS 4/ 47 UTF-8? UTF-8 (unicode),

More information

Microsoft Word - 28935样章.dot

Microsoft Word - 28935样章.dot 21 世 纪 高 职 高 专 规 划 教 材 系 列 何 福 贵 张 梅 编 著 机 械 工 业 出 版 社 IV 本 书 全 面 地 介 绍 了 网 页 制 作 技 术 及 其 相 关 理 论 全 书 共 分 12 章, 包 括 绪 论 网 站 的 创 建 与 管 理 网 页 基 本 元 素 实 现 网 页 页 面 布 局 实 现 表 单 的 应 用 CSS 与 模 板 使 用 Div 和 AP

More information

Microsoft Word - 2-1-1.doc

Microsoft Word - 2-1-1.doc 九 十 三 年 度 教 育 部 辦 理 技 專 校 院 提 昇 系 科 教 學 品 質 專 案 計 畫 計 畫 名 稱 : 三 維 虛 擬 互 動 結 合 前 瞻 創 作 實 務 教 學 提 昇 機 械 工 程 系 教 學 品 質 專 案 計 畫 (Elevating Faculties Teaching Quality by Using Interactive 3D Virtual Reality

More information

2 SGML, XML Document Traditional WYSIWYG Document Content Presentation Content Presentation Structure Structure? XML/SGML 3 2 SGML SGML Standard Gener

2 SGML, XML Document Traditional WYSIWYG Document Content Presentation Content Presentation Structure Structure? XML/SGML 3 2 SGML SGML Standard Gener SGML HTML XML 1 SGML XML Extensible Markup Language XML SGML Standard Generalized Markup Language, ISO 8879, SGML HTML ( Hypertext Markup Language HTML) (Markup Language) (Tag) < > Markup (ISO) 1986 SGML

More information

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5 網頁程式設計 HTML JavaScript CSS HTML JavaScript CSS HTML 5 JavaScript JavaScript HTML 5 API CSS CSS Part 1 HTML HTML 5 API HTML 5 Apple QuickTime Adobe Flash RealPlayer Ajax XMLHttpRequest HTML 4.01 HTML 5

More information

Email: tian@dr.com http://www.digiark.com/tian Web Mining " " WWW Web URL Internet WWW? (Search Engine), WWW Internet WWW Yahoo http://www.yahoo.com/ InfoSeek http://www.infoseek.com/ WWW Yahoo Search

More information

Microsoft Word - 21_HTML實力養成暨評量.doc

Microsoft Word - 21_HTML實力養成暨評量.doc 模 擬 試 卷 編 號 :HTM-0031 HTML 測 驗 試 題 專 業 級 注 意 事 項 一 本 項 測 驗 應 考 學 科 : 學 科 : 單 複 選 混 合 共 50 題, 每 題 2 分 ; 不 提 供 書 面 試 題, 題 目 直 接 出 現 於 電 腦 螢 幕, 請 依 序 作 答 本 測 驗 滿 分 100 分,70 分 為 合 格, 發 給 合 格 證 書 二 本 項 測 驗

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

ACV019000.pdf

ACV019000.pdf 7.2.5 SEO SEO 3 100 300 9,000 10 1 3 100 () 3 30 SEO (Search Engine Optimization) HTML ... (iware ) http://www.iware.com.tw http://www.ginbao.com.tw 202 7 SEO SEO SEO

More information

ebook193-1

ebook193-1 1 Domino Web 1.1 D o m i n o We b, D o m i n o N e t s c a p e O r a c l e We b D o m i n o We b Lotus Notes, D o m i n o D o m i n o We b D o m i n o N o t e s N o t e Domino We b D o m i n o D o m i

More information

引 例 3 现 实 生 活 中 的 电 子 商 务 案 例 1 王 小 姐 是 一 家 网 络 公 司 职 员, 现 在 已 经 是 有 八 个 月 身 孕 的 准 妈 妈 由 于 出 行 不 是 很 方 便, 但 是 又 要 购 置 一 些 孕 妇 与 婴 儿 出 生 后 的 物 品 于 是 来

引 例 3 现 实 生 活 中 的 电 子 商 务 案 例 1 王 小 姐 是 一 家 网 络 公 司 职 员, 现 在 已 经 是 有 八 个 月 身 孕 的 准 妈 妈 由 于 出 行 不 是 很 方 便, 但 是 又 要 购 置 一 些 孕 妇 与 婴 儿 出 生 后 的 物 品 于 是 来 第 3 章 WWW 浏 览 器 与 信 息 搜 索 知 识 要 点 WWW 的 相 关 概 念 Web 技 术 结 构 全 球 资 源 定 位 器 的 概 念 主 页 基 本 概 念 能 力 要 点 掌 握 WWW 浏 览 器 的 操 作 学 会 在 网 上 搜 索 信 息 引 例 3 现 实 生 活 中 的 电 子 商 务 案 例 1 王 小 姐 是 一 家 网 络 公 司 职 员, 现 在 已

More information

超連結 03 URI (Universal Resource Identifier) URI Web URL (Universal Resource Locator) URI URI :// [: ]/ [/ 2...]/

超連結 03 URI (Universal Resource Identifier) URI Web URL (Universal Resource Locator) URI URI :// [: ]/ [/ 2...]/ 網頁程式設計 3-1 URI 的類型... 超連結 (hyperlink) Web 1 1 2 按一下圖片超連結開啟所連結的網頁 2 3-2 超連結 03 URI (Universal Resource Identifier) URI Web URL (Universal Resource Locator) URI URI :// [: ]/ [/ 2...]/ http://www.lucky.com.tw:100/books/index.htm

More information

第 11 章 互聯網技術 11.1 互聯 網 和 萬 維 網 的 發 展 歷 史 A. 互聯網的發展 互聯網是由 ARPANET 開 始發展的 1969 年 美國國防部高級研究計劃署 (ARPA) 把部分軍事研究所和大 的電腦連接起來 建造了㆒個實驗性的電腦網絡 稱為 ARPANET 並 列 的功能

第 11 章 互聯網技術 11.1 互聯 網 和 萬 維 網 的 發 展 歷 史 A. 互聯網的發展 互聯網是由 ARPANET 開 始發展的 1969 年 美國國防部高級研究計劃署 (ARPA) 把部分軍事研究所和大 的電腦連接起來 建造了㆒個實驗性的電腦網絡 稱為 ARPANET 並 列 的功能 互 聯 網 技 術 在 完 成 這 章 後, 你 將 能 夠 描 述 互 聯 網 的 發 展 歷 史 描 述 萬 維 網 的 發 展 歷 史 了 解 連 接 互 聯 網 的 基 本 概 念 能 夠 連 接 到 互 聯 網 知 道 互 聯 網 如 何 運 作 互 聯 網 是 全 球 網 絡 的 集 合 互 聯 網 (Internet) 是 ㆒ 個 集 合 全 球 許 多 網 絡 ㆒ 起 的 大 型 網

More information

第1章 在线考试系统

第1章  在线考试系统 ASP+SQL Server http://www.dearbook.com.cn/book/101885 http://www.china-pub.com/computers/common/info.asp?id=28801 http://www.douban.com/group/19963/ ASP ASP Web 1 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.3 1.4

More information

untitled

untitled .Net ADF ArcGIS Server ESRI ( ) .NET (ADF.NET) ADF.NET Web Controls Demo .NET (ADF.NET) ADF.NET ArcGIS Web C# and VB.NET Web Server Page Layout, Map, TOC, Overview Map ArcGIS Server.NET ? GIS web ArcGIS

More information

論故宮書畫的典藏、維護與數位化

論故宮書畫的典藏、維護與數位化 13,552-1 - Metadata - 2 - 1736-1795 1949 1 2 960-1279 321-379 1 8 10 933-993 岀 - 3 - 3 2 4-4 - Digital Archives 5 Metadata 2000 Digital Museum 2001 2002 6-5 - Metadata 2001 MAAT 7 Metadata 8 3 Metadata

More information

Web

Web Email: tian@dr.com http://www.digiark.com/tian Web 1. 2. 3. 4. 5. 6. Internet Internet (Hacker) Internet web IP 1 Internet UNIX Windows VLAN Internet IP 2 Internet FTP TELNET PING IP 8 telnet FTP RLOGIN

More information

bootstrap - 2

bootstrap - 2 RITA TEACHING Bootstra p ENTER bootstrap - 2 bootstrap - 3 bootstrap 101 Template

More information

Microsoft Word - Ch06.docx

Microsoft Word - Ch06.docx Chapter 6-1 6-2 6-2 l ASP.NET 6-1 (theme) ASP.NET (skin).skin ButtonLabelHyperLink (cascading style sheet).css TreeView 1. 2. (page theme) (global theme) IIS l 6-3 6-1-1 (page theme) (global theme) App_Themes

More information

Microsoft Word - 04.doc

Microsoft Word - 04.doc 第 4 章 Dreamweaver 基 础 应 用 在 Dreamweaver 中, 创 建 网 页 非 常 简 单 用 户 只 要 熟 悉 Word 文 档 的 编 写, 就 可 以 以 所 见 即 所 得 的 方 式, 在 网 页 中 插 入 文 本 图 像 Flash 及 超 链 接 等 内 容, 从 而 制 作 出 各 式 各 样 的 网 页 本 章 将 详 细 讲 解 如 何 在 网 页

More information

软件概述

软件概述 Cobra DocGuard BEIJING E-SAFENET SCIENCE & TECHNOLOGY CO.,LTD. 2003 3 20 35 1002 010-82332490 http://www.esafenet.com Cobra DocGuard White Book 1 1....4 1.1...4 1.2 CDG...4 1.3 CDG...4 1.4 CDG...5 1.5

More information

例 度 讀 讀 不 不 來 念 來 了 讀 不 不 讀 不 讀行 利 了 說 更 了 讀

例 度 讀 讀 不 不 來 念 來 了 讀 不 不 讀 不 讀行 利 了 說 更 了 讀 讀 爛 來 都 力 讀 不 讀 了 讀 來 讀 了 更 不 都 六年 類 更 錄 不 都 便 路 不 不 了 讀 來不 讀 讀 刺 數 不 刺 讀 索 料 易 力 練 讀 易 料 了 讀 力 讀便不 讀 例 度 讀 讀 不 不 來 念 來 了 讀 不 不 讀 不 讀行 利 了 說 更 了 讀 年 來 句 易 說 說 易 說 讀 識 識 力 句 老 錄 朗讀 讀 了 易 臨 說讀 力 識 樂 參 練

More information

F477

F477 FrontPage & Flash 連 CSIE, NTU September 15, 2007 Outline September 15, 2007 Page 2 F477 September 15, 2007 Page 3 September 15, 2007 Page 4 September 15, 2007 Page 5 連 September 15, 2007 Page 6 連 September

More information

区 域 活 动 进 入 中 班 我 们 区 域 的 设 置 和 活 动 材 料 都 有 所 变 化, 同 时 也 吸 引 孩 子 们 积 极 的 参 与 学 习 操 作 区 的 新 材 料 他 们 最 喜 欢, 孩 子 们 用 立 方 块 进 行 推 理 操 作 用 扑 克 牌 进 行 接 龙 游

区 域 活 动 进 入 中 班 我 们 区 域 的 设 置 和 活 动 材 料 都 有 所 变 化, 同 时 也 吸 引 孩 子 们 积 极 的 参 与 学 习 操 作 区 的 新 材 料 他 们 最 喜 欢, 孩 子 们 用 立 方 块 进 行 推 理 操 作 用 扑 克 牌 进 行 接 龙 游 日 常 生 活 本 月 我 们 日 常 生 活 活 动 的 重 点 :1. 让 孩 子 养 成 良 好 的 生 活 习 惯, 注 重 生 活 细 节 如 : 在 换 好 鞋 子 后 能 将 鞋 子 整 齐 的 摆 放 进 鞋 架 坐 在 椅 子 上 换 鞋 正 确 的 收 放 椅 子 等 2 让 孩 子 有 自 我 照 顾 的 意 识 如, 让 孩 子 感 受 自 己 的 冷 热 并 告 知 老 师,

More information

1. Revo Uninstaller Pro Revo Uninstaller Pro Revo Uninstaller Pro Revo Uninstaller Pro Revo Uninsta ller Pro Revo Uninstaller Pro Revo Uninstaller Pro

1. Revo Uninstaller Pro Revo Uninstaller Pro Revo Uninstaller Pro Revo Uninstaller Pro Revo Uninsta ller Pro Revo Uninstaller Pro Revo Uninstaller Pro 1. 2. 3. 3.1. 3.2. 3.2.1. 3.2.2. 3.2.3. 3.3. 3.4. 3.5. 4. 5. 5.1. 5.2. 5.3. Windows 5.4. 5.5. 5.6. 5.7. 5.8. 6. 6.1. 6.2. 6.2.1. 6.2.2. 6.3. 6.3.1. 6.3.2. 6.4. 6.4.1. 6.4.2. 6.4.3. 6.5. 6.6. 7. 8. 9. Revo

More information

128 ( ) ( ) [ 1 ] [2] [3] (1) (2) (3) [1] [2] [3] 10 2 ( ) (1997.6) ( ) 64

128 ( ) ( ) [ 1 ] [2] [3] (1) (2) (3) [1] [2] [3] 10 2 ( ) (1997.6) ( ) 64 BIBLID 1026-5279 (2005) 94:2 p. 127-154 (2005.12) 127 Keywords Digital Library High School Library Library Website Open Source E-mail frank@hchs.hc.edu.tw 128 (2005.12) ( ) 6 0 68 [ 1 ] [2] [3] (1) (2)

More information

Microsoft PowerPoint - Ch00-4-XHTML.ppt [相容模式]

Microsoft PowerPoint - Ch00-4-XHTML.ppt [相容模式] Chapter 0-4 (XHTML) 陈瑞奇 (J.C. Chen) 亚洲大学资讯工程学系 多媒体网站技术应用 整合性课程 IE, Firefox, Safari, Opera, Chrome HTML/CSS DHTML/XHTML/XML JavaScript, JScript, VBScript Java Applet, ActiveX, AJAX Plug-in (eg, Flash, PDF,

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

Corel PaintShop Pro X4 User Guide

Corel PaintShop Pro X4 User Guide Corel PaintShop Pro X4.................. 1............................... 1 Corel PaintShop Pro X4....................... 2 Corel........................ 4.................................... 5 Corel.....................................

More information

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63>

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63> 第 4 单 元 搭 建 自 己 的 Web 站 点 本 单 元 通 过 学 习 架 构 Web 服 务 器, 实 现 Web 服 务, 管 理 Web 站 点, 了 解 Web 站 点 服 务 器 的 架 构 个 人 空 间 和 虚 拟 主 机 的 概 念, 掌 握 IIS 组 件 的 安 装 Web 站 点 的 创 建 管 理 站 点 属 性 选 项 卡 的 配 置 管 理 等 知 识,Web 网

More information

WordPress OSSF OSSF is Seeking Software Freedom 1 blog WordPress WordPress WordPress WordPress 2 WordPress WordPress is a state-of-the-art semantic pe

WordPress OSSF OSSF is Seeking Software Freedom 1 blog WordPress WordPress WordPress WordPress 2 WordPress WordPress is a state-of-the-art semantic pe WordPress OSSF OSSF is Seeking Software Freedom 1 blog WordPress WordPress WordPress WordPress 2 WordPress WordPress is a state-of-the-art semantic personal publishing platform aesthetics web standards

More information

ebook37-34

ebook37-34 34 Web 34.1 We b We b We We b ( 34-1 ) We b Adobe Photoshop I l l u s t r a t o r F r e e h a n d C o r e D R AW P H O TO PA I N T Paint Shop Pro A d o b e We b 34.2 FrontPage F r o n t P a g e F r o n

More information

ebook70-13

ebook70-13 1 3 I S P O p e n L i n u x Point to Point Protocol P P P I S P L i n u x 10 L i n u x World Wide We b 13.1 We b f t p ( ) f t p (File Transfer Protocol F T P ) F T P g e t p u t 13. 1. 1 F T P f t p n

More information

Microsoft Word - 第01章new.doc

Microsoft Word - 第01章new.doc 第 章 jquery 简 介 第 章 jquery 简 介 要 完 全 理 解 jquery 和 它 在 现 代 Web 开 发 领 域 中 的 应 用, 就 有 必 要 花 点 时 间 回 顾 一 下 jquery 的 历 史, 了 解 其 设 计 目 标, 以 及 在 jquery 出 现 以 前 JavaScript 编 程 的 情 况 本 章 会 向 你 介 绍 常 用 的 JavaScript

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

Microsoft Word - HSK使用手册.doc

Microsoft Word - HSK使用手册.doc HSK / New HSK Online Mock Test/Practices Student User Manual Table of contents New User... 2 1.1 Register... 2 1.2 Login... 3 1.3 Homepage... 4 Free Test... 4 2.1 Start... 5 2.2 Results... 6 Mock Test...

More information

網頁設計的原理與應用 一 認識網頁與網站 1 HTMLHyperText Markup Language ASPPHP UNIXLinux Windows 2003 / 2008 Server 2 Windows IIS Linux Apache 二 網頁設計的流程

網頁設計的原理與應用 一 認識網頁與網站 1 HTMLHyperText Markup Language ASPPHP UNIXLinux Windows 2003 / 2008 Server 2 Windows IIS Linux Apache 二 網頁設計的流程 第 7 章 簡易網頁設計 本章學習目標 1. 網頁設計的原理與應用 2. 網頁設計的趨勢 3. 網頁的語法 4. 個人網誌簡介 申請 使用 管理與應用 命題分析 本章節是 99 課程新增的章節 雖然有四小節 但其中網頁相關的設計原則及設 計趨勢並無統一的方向 故本章的命題重點可能為 HTML 的語法 網誌簡介及相關技 術 226 7 7-1 網頁設計的原理與應用 一 認識網頁與網站 1 HTMLHyperText

More information

06 C H A P T E R 6-1 WWW 6-2 WWW WWW WWW

06 C H A P T E R 6-1 WWW 6-2 WWW WWW WWW 06 C H A P T E R 6-1 WWW 6-2 WWW 6-3 6-4 WWW 6-5 6-6 WWW WWW World Wide Web Tim Berners-Lee hypertext HTTP HTML URL 6-1 WWW WWW World Wide Web Web BBS Telnet Gopher FTP UseNet W3 3W W3 3W WWW WWW WWW Hypertext

More information

SiteView技术白皮书

SiteView技术白皮书 SiteView ECC V6.2 技 术 白 皮 书 游 龙 网 络 科 技 ( 中 国 ) 有 限 公 司 DragonFlow Networks(China),Inc. 目 录 第 一 章 产 品 概 述... 3 第 二 章 系 统 结 构... 6 一 系 统 架 构... 7 1 用 户 管 理 模 块... 7 2 Web Server... 8 3 存 储 加 密 模 块... 8

More information

Learning Java

Learning Java Java Introduction to Java Programming (Third Edition) Prentice-Hall,Inc. Y.Daniel Liang 2001 Java 2002.2 Java2 2001.10 Java2 Philip Heller & Simon Roberts 1999.4 Java2 2001.3 Java2 21 2002.4 Java UML 2002.10

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

微軟認證專家.PDF

微軟認證專家.PDF MCP MCSD System Engineer MCP MCP 1 MCSE Database Administrator MCP MCDBA Developer MCP MCP SB MCSD Office MOUS Core MOUS Expert MOUS Master http://www.microsoft.com/mcp/ 3 4 Microsoft Training & Services

More information

ebook65-20

ebook65-20 2 0 H T T P C G I We b C G I We b H T M L C G I H T M L C G I 20.1 HTTP 17 We b N e t s c a p e Internet Explorer We b A p a c h e I I S C G I H T T P HTTP 1.0 HTTP 1.1 I n t e r n e t I n t e r n e t

More information

CANVIO_AEROCAST_CS_EN.indd

CANVIO_AEROCAST_CS_EN.indd 简 体 中 文...2 English...4 SC5151-A0 简 体 中 文 步 骤 2: 了 解 您 的 CANVIO AeroCast CANVIO AeroCast 无 线 移 动 硬 盘 快 速 入 门 指 南 欢 迎 并 感 谢 您 选 择 TOSHIBA 产 品 有 关 您 的 TOSHIBA 产 品 的 详 情, 请 参 阅 包 含 更 多 信 息 的 用 户 手 册 () 安

More information

投影片 1

投影片 1 Introduction to CSS Cascading Style Sheets 網頁設計 / 林金祥 Webpage Design/ by Chin-Hsiang Lin 網頁設計概念 java, asp: CSS: 特殊功能 式樣設計 HTML: 文字 圖像內容 Webpage Design/ by Chin-Hsiang Lin 2 CSS:Fly! My Webpage! CSS: Cascading

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

User’s Manual

User’s Manual V7 用 户 手 册 亿 图 为 您 专 业 图 表 设 计 提 供 最 佳 解 决 方 案 2004-2014 EdrawSoft. All right reserved. Edraw and Edraw logo are registered trademarks of EdrawSoft. 目 录 亿 图 怎 样 优 越 于 其 他 软 件... 5 亿 图 7 个 新 功 能... 6 为

More information

穨ac3-3.PDF

穨ac3-3.PDF 3-1 Access 3-1-1 Event Click OnClick Click OnClick AfterUpdate BeforeUpdate On After Before > VBA( ) 3-1 3-1 Access Open Load Sub Funtion 3-1-2 Sub Funtion Private Me Me Forms Reports Form Report VisualBasic

More information

4.5 页 面 主 体 元 素 的 样 式 属 性 页 面 主 体 元 素 的 样 式 属 性 用 来 给 页 面 内 容 定 义 级 联 样 式 表, 其 中 包 括 style 属 性 和 class 属 性 4.6 背 景 音 乐 的 使 用 页 面 中 添 加 背 景 音 乐 的 元 素 是

4.5 页 面 主 体 元 素 的 样 式 属 性 页 面 主 体 元 素 的 样 式 属 性 用 来 给 页 面 内 容 定 义 级 联 样 式 表, 其 中 包 括 style 属 性 和 class 属 性 4.6 背 景 音 乐 的 使 用 页 面 中 添 加 背 景 音 乐 的 元 素 是 精 选 HTML 属 性 麦 田 技 术 博 客 http://itmyhome.com 第 四 章 页 面 主 体 元 素 4.1 页 面 主 体 元 素 背 景 图 片 属 性 背 景 颜 色 属 性 标 题 属 性 左 边 界 属 性 上 边 界 属 性 background bgcolor title leftmargin topmargin 4.2 页 面 主 体 元 素 的

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

Preparing_Seminar

Preparing_Seminar 1 6 8 17 24 38 56 59 64 71 80 : : B90605199 : Preparing seminar. Page 1 seminar seminarium semen ( ) ( ) (Carl Gustav Jacob Jacobi) (University of Königsberg) Preparing seminar. Page 2 ( ) conference symposium

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

Microsoft Word - fm.doc

Microsoft Word - fm.doc 多 媒 体 技 术 毕 业 设 计 指 导 与 案 例 分 析 贺 雪 景 杨 平 高 幼 年 编 著 清 华 大 学 出 版 社 北 京 内 容 简 介 本 书 通 过 六 个 案 例 介 绍 了 多 媒 体 专 业 毕 业 设 计 项 目 的 开 发, 包 括 使 用 Authorware 开 发 的 模 拟 型 课 件, 使 用 FrontPage2003 和 ASP 开 发 的 网 络 类

More information

23 3 <http://news.sina.com.tw/articles/13/51/22/ html?/society/> please go to the following webstie, and search, you will get the details abou

23 3 <http://news.sina.com.tw/articles/13/51/22/ html?/society/> please go to the following webstie, and search, you will get the details abou I notice that all the three activites, including,, and are held together by school and Liberty Times. You could just go to the following website and find out all the news writing about this.

More information

MITSUBISHI

MITSUBISHI Q MITSUBISHI Web QJ71E71-100 QJ71E71-B5 QJ71E71-B2 PLC CPU!!! [ ]! PLC PLC CPU PLC PLC PLC PLC PLC CPU A - 1 A - 1 [ ]! PLC CPU PLC! 100mm 3.94in. PLC CPU RUN/STOP OPEN OPEN STOP PLC CPU RUN [ ]! PLC A

More information

<D0A1B0E02E707562>

<D0A1B0E02E707562> 小 一 班 专 题 活 动 生 日 蛋 糕 生 日 蛋 糕 是 孩 子 们 最 喜 欢 的 食 物, 他 们 期 盼 着 每 次 生 日 的 到 来 吹 蜡 烛 许 心 愿 吃 蛋 糕, 经 常 出 现 在 孩 子 们 的 区 域 游 戏 中, 因 此, 我 们 确 定 了 本 次 专 题 研 习 的 方 向 生 日 蛋 糕 结 合 专 题 探 究 的 需 要,11 月 10 日 我 们 同 孩 子

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

1. 2. Flex Adobe 3.

1. 2. Flex Adobe 3. 1. 2. Flex Adobe 3. Flex Adobe Flex Flex Web Flex Flex Flex Adobe Flash Player 9 /rich Internet applications/ria Flex 1. 2. 3. 4. 5. 6. SWF Flash Player Flex 1. Flex framework Adobe Flex 2 framework RIA

More information

Untitiled

Untitiled 目 立人1 2011 录 目 录 专家视点 权利与责任 班主任批评权的有效运用 齐学红 3 德育园地 立 沿着鲁迅爷爷的足迹 主题队活动案例 郑海娟 4 播下一颗美丽的种子 沿着鲁迅爷爷的足迹 中队活动反思 郑海娟 5 赠人玫瑰 手有余香 关于培养小学生服务意识的一些尝试和思考 孙 勤 6 人 教海纵横 2011 年第 1 期 总第 9 期 主办单位 绍兴市鲁迅小学教育集团 顾 问 编委会主任 编

More information

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK 2 l 跨裝置網頁設計 Android ios Windows 8 BlackBerry OS Android HTML 5 HTML 5 HTML 4.01 HTML 5 CSS 3 CSS 3 CSS 2.01 CSS 3 2D/3D PC JavaScript

More information

Microsoft Word - 文前页.doc

Microsoft Word - 文前页.doc IV 目 录 高 等 学 校 信 息 管 理 与 信 息 系 统 专 业 系 列 教 材 信 息 存 储 与 检 索 张 帆 等 编 著 高 等 教 育 出 版 社 HIGHER EDUCATION PRESS 目 录 III 内 容 简 介 本 书 是 高 等 学 校 信 息 管 理 与 信 息 系 统 专 业 的 系 列 教 材 之 一, 系 统 介 绍 了 现 代 信 息 资 源 存 储 与

More information

蔡 氏 族 譜 序 2

蔡 氏 族 譜 序 2 1 蔡 氏 族 譜 Highlights with characters are Uncle Mike s corrections. Missing or corrected characters are found on pages 9, 19, 28, 34, 44. 蔡 氏 族 譜 序 2 3 福 建 仙 遊 赤 湖 蔡 氏 宗 譜 序 蔡 氏 之 先 出 自 姬 姓 周 文 王 第 五 子

More information

認識visio2000

認識visio2000 Microsoft Visio 2007 第 1 頁 目 錄 內 容 目 錄... 1 認 識 VISIO2007... 1 輕 鬆 地 建 立 專 業 外 觀 的 圖 表... 2 使 用 自 動 連 接 功 能 連 接 圖 表 中 的 圖 形... 2 將 資 料 整 合 至 圖 表 中 ( 需 要 Office Visio Professional 2007)... 3 以 資 料 圖 形 展

More information

untitled

untitled PowerBuilder Tips 利 PB11 Web Service 年度 2 PB Tips PB9 EAServer 5 web service PB9 EAServer 5 了 便 web service 來說 PB9 web service 力 9 PB11 release PB11 web service 力更 令.NET web service PB NVO 論 不 PB 來說 說

More information

untitled

untitled 1 .NET sln csproj dll cs aspx 說 料 料 利 來 料 ( 來 ) 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Click 滑 料 Response 列 料 Response HttpResponse 類 Write 料 Redirect URL Response.Write("!!

More information

pdf

pdf CENTRO 花 甲 老 人 的 for 交 the over 60s 通 travel 证 passes for the over 60s travel passes for the over 60s travel 谢 谢 发 给 我 这 个 交 通 证, travel passes for the over 60s 我 travel 今 passes 年 for 66 the over 岁 60s

More information