2012年10月13日
摘要: 1.简述private、protected、public、internal修饰符的访问权限。答. private :私有成员,在类的内部才可以访问。protected :保护成员,该类内部和继承类中可以访问。public :公共成员,完全公开,没有访问限制。internal:在同一命名空间内可以访问。2 .列举ASP.NET页面之间传递值的几种方式。答. 1.使用QueryString,如....?id=1; response. Redirect()....2.使用Session变量3.使用Server.Transfer4.使用Application5.使用Cache6使用HttpContex 阅读全文
posted @ 2012-10-13 00:00 Thinking... 阅读(238) 评论(0) 推荐(0) 编辑