web开发练习题
用 WSDL 文件进行说明,并通过 UDDI 进行注册。
22 Web Service 是一种应用程序,使用标准__HTTP__________协议在网上提供函数接口,用户可以从任何地方调用Web Service。
23 Web Service 驻留于_______Web Sever_______中,使用__UDDI__机制查找符合要求的Web Service,网络中的机器通过_______soap_______协议进行通讯.
24 The term "web server" also refers to the piece of ___software___________ that runs on those computers, accepting HTTP connections from ___web browsers___________ and delivering web pages and other files to them, as well as processing form submissions.
三、读程序题
2.读下列程序,写出程序的运行结果
<%@page language="C#"%>
<script language="C#" runat="server">
void page_load(object serder, EventArgs e) { int[] myArray1=new int[5] {1,2,3,4,5};
int[,] myArray2=new int[2,3] {{1,2,3},{4,5,6}}; labContent1.Text=myArray1[1].ToString(); labContent2.Text=myArray2[1,2].ToString(); }
</script>
<html><body>
<asp:label runat=server id=labContent1/><br> <asp:label runat=server id=labContent2/><br> </body>
</html> 2 6
3. 写出下列C# 程序的运行结果。
using System; class Test {
public static void Main() { int x = 5; int y = x++;
Console.WriteLine(y);