ASP 3.0高级编程
發表於|更新於|开发
|總字數:99|閱讀時間:1分鐘|瀏覽量:
今天偶然发现自己的本子里还有ASP3.0高级编程的教程,现在就提供下载给需要的朋友们,呵呵,下完后留个名呗,好吧?
http://www.live-share.com/files/57386/ASP_3_____1-10_.rar.html
http://www.live-share.com/files/57394/ASP_3_____11-20_.rar.html
http://www.live-share.com/files/57404/ASP_3_____21-36_.rar.html
文章作者: zhou
版權聲明: 本部落格所有文章除特別聲明外,均採用CC BY-NC-SA 4.0 授權協議。轉載請註明來源 米斯特周!
相關推薦
2006-06-28
数据库开发总结(ADO.NET小结)
一 用SqlConnection连接SQL Server 1.加入命名空间 using System.Data.SqlClient; 2.连接数据库 SqlConnection myConnection = new SqlConnection(); myConnection.ConnectionString = "user id=sa;password=sinofindb;initial catalog=test;data source=127.0.0.1;Connect Timeout=30"; myConnection.Open(); 改进(更通用)的方法: string MySqlConnection="user id=sa;password=sinofindb;Database =test;data source=127.0.0.1;Connect Timeout=30"; SqlConnection myConnection = new SqlConnection(MySqlConnection); myConnection....
2006-05-30
how to get Text property of Label in DataList?
Normally when you want to do that you are doing it from within an event raised by the DataList. I will assume that is where you are doing this from. Here is a line of code that will get the Text property of the current Item: CType(e.Item.FindControl(“lblMyLabel”), Label).Text If you needed to access this data from a method/function other than one of the events raised by the DataList, you will need to know the index of the item the desired Label is in. In this case, use the following: CTy...
2006-04-21
学习了ASP和ASP.NET的一点心得
今天从网络上主要看了一下ASP的教程,看的不是很深,仅仅介绍了ASP的几个对象和方法,还有简单的几个例子。不过从网络看的10天学会ASP.net非常不错,很适合速成。 也对新手容易出现的问题,文章中都一一列举出来了,尤其是用C#开发ASP.NET的时候,特别明显.因为很容易忘记大小写和分号,以及传递参数的时候使用圆括号。但是文章中谈到的验证控件,似乎没有,因为当我执行代码的时候报错,好像在System.Web.UI.WebControls里面没有validater这样的控件。下面贴出错误消息: Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not loa...
2006-07-25
web开发电子书下载地址集合
Microsoft Windows脚本技术 语种:中文 大小:1.38M 凝集了微软所有web developer的心血积累,包含了Jscript,VBscript,正则表达式,FSO,WSH,htc等,绝对值得一看,没事的时候我就常拿出来翻翻 下载:http://vip.5d.cn/friday/upload/SCRIPT56.chm dhtml,html&css 语种:英文 大小:2.43M 其实就是MSDN站点上的部分资料的翻版 下载:http://vip.5d.cn/friday/upload/dhtml%20html&css.chm css2 语种:中文 大小:0.25M 小雨的CSS2手册,不需我多说了吧,嘿嘿~~ 下载:http://vip.5d.cn/friday/upload/css2.chm Microsoft ActiveX Data Objects (ADO)参考 语种:中文 大小:806K 针对的是ASP的开发者,初学者可以当成本字典来翻,高手也可以从里面了解到你所不知的知识:) 下载:http://vip.5d.cn/friday/up...
2006-10-14
如何从web.config中取得ConnectionString
通过使用ConfigurationManager,你可以从Web.Config中取得ConnectionString。 Web.Config connectionStrings 配置部分: <connectionStrings> <add name="MyConnectionString" connectionString="Data Source=myDBServer;database=myDB;Integrated Security=True;" providerName="System.Data.SqlClient"/> </connectionStrings> aspx 文件: <asp:SqlDataSource ID="DS" runat="server" ConnectionString="<%$ ConnectionStrings:MyConnectionString %> 代码中: C#代码: s...
2006-09-22
VS2005视频教程-WEB开发
花了一个早上的时间,终于把朋友们期待的这个视频教程传上去了,不过这是WEB开发教程,我已经看过了,哦,对了,这是英文讲解,没有中文的,英文不好的朋友得努力点了。 另外,鄙视一下那些下了东西就走的朋友!怎么说也花了时间上传贡献出来了,没有功劳,也有苦劳啊,下了就跑,一点公德心都没有! 连接应该在7天内无人下载就失效了,需要的朋友就赶紧下。 公布地址:http://www.sendspace.com/file/4mt1k8
評論
