asp.net面试题(8)
121.描述一下c#中索引器的实现过程,是否只能根据数字进行索引?
答:不是。可以用任意类型。
122.在c#中,string str = null 与 string str = " " 请尽量使用文字或图象说明其中的区别。
答:null是没有空间引用的;
" " 是空间为0的字符串;
123.分析以下代码,完成填空
string strtmp = "abcdefg某某某";
int i= system.text.encoding.default.getbytes(strtmp).length;
int j= strtmp.length;
以上代码执行完后,i= j=
答:i=13.j=10
124.sqlserver服务器中,给定表 table1 中有两个字段 id、lastupdatedate,id表示更新的事务号, lastupdatedate表示更新时的服务器时间,请使用一句sql语句获得最后更新的事务号
答:select id from table1 where lastupdatedate = (select max(lastupdatedate) from table1)
125.分析以下代码。
public static void test(string connectstring)
{
system.data.oledb.oledbconnection conn = new system.data.oledb.oledbconnection();
conn.connectionstring = connectstring;
try
{
conn.open();
…….
}
catch(exception ex)
{
messagebox.show(ex.tostring());
}
finally
相关文档:
1)创建txt文件【web.config】
--------------------------------------------------------------------
<appSettings>
<add key="EditChars" value="D:\Site\ZJPS\TextFile\EditChars.txt"/>
</appSettings>
2) 页面的CS文件中:
--------------- ......
可以使用 ISAPI 筛选器在 IIS Web 服务器级别实现 URL 重写,也可以使用 HTTP 模块或 HTTP 处理程序在
ASP.NET 级别实现 URL 重写。本文重点介绍如何使用 ASP.NET 实现 URL 重写,因此我们将不对使用 ISAPI 筛选器实现
URL 重写的细节进行深入探讨。但是,有大量的第三方 ISAPI 筛选器可用于 URL 重写,例如: ......
asp,asp.net,php,jsp下的301转向代码
使用.htaccess文件来进行301重定向。
如果空间不支持.htaccess文件,那么我们还可以通过php/asp代码来进行301重定向。
为了将搜索引擎的记录更新到现在的域名上面,做了几个301重定向的东东,给大家分享一下.
asp 301转向代码
在 index.asp 或 default.asp 的最顶部加入以 ......
asp.net 实现定时执行 一个方法
public class Time_Task
{
public event System.Timers.ElapsedEventHandler ExecuteTask;
private static readonly Time_Task _task = null;
private System.Timers.Timer _timer = null;
privat ......
21.在.net中,配件的意思是?
答:程序集。(中间语言,源数据,资源,装配清单)
22.常用的调用webservice的方法有哪些?
答:1.使用wsdl.exe命令行工具。
2.使用vs.net中的add ......