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. 使用QueryString变量
QueryString是一种非常简单的传值方式,他可以将传送的值显示在浏览器的地址栏中。如果是传递一个或多个安全性要求不高或是结构简单的数值时,可以使用这个方法。但是对于传递数组或对象的话,就不能用这个方法了。下面是一个例子:
a.aspx的C#代码
private vo ......
ASP.NET URL Rewrite. URL重写
转自:http://www.cnblogs.com/rickel/archive/2007/02/04/639616.html
URL 重写是截取传入 Web 请求并自动将请求重定向到其他 URL 的过程。
比如浏览器发来请求hostname/101.aspx ,服务器自动将这个请求中定向为http://hostname/list.aspx?id=101。
url重写的优点在 ......
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 ......