本周ASP.NET英文技術文章推薦[07/15 - 07/21]

來源:互聯網
上載者:User

摘要

本期共有6篇文章:

  1. Ajax自動化測試以及調試工具列表
  2. VS 2008的JavaScript調試功能
  3. Silverlight是什嗎?Silverlight資源、文章和教程
  4. LINQ到SQL——第5部分:使用LinqDataSource控制項綁定UI
  5. ASP.NET 2.0設定檔的一些技巧
  6. Orcas Beta 1中ASP.NET的智能感知——能用什嗎?不能用什嗎?

 

[1] Updated: List of AJAX Automated Testing and Debugging Tools (Ajax自動化測試以及調試工具列表)

雖然Ajax(主要是JavaScript)的開發調試一直頗受開發人員的詬病,不過市面上仍舊有一些還算可以的調試、自動化測試載入器。Dan Wahlin在這篇文章中就分門別類地將這些調試測試載入器列了出來,並加入了一些簡單的介紹。有興趣有需要的朋友不妨參考一下,從中挑出最適合的一個。

 

[2] VS 2008 JavaScript Debugging(VS 2008的JavaScript調試功能)

又是Scott的一篇文章,其中介紹了VS 2008對JavaScript調試功能支援的改進。其實可以說改進並不是很多,VS 2005的JavaScript調試功能已經足夠強大了(清參考:http://blogs.msdn.com/webdevtools/archive/2007/03/08/jscript-debugging-in-visual-studio-2005.aspx)。我覺得VS 2008在JavaScript方面提高最大的就是它提供了智能感知功能(請參考:VS 2008 JavaScript intellisense support)。對於調試方面的改進包括:

在ASP.NET頁面中也可以添加斷點(其實這是個Bug fix……):

解決方案管理器中也可以瀏覽指令檔(這個不錯,從此Script Explorer可以下課了):

增強Debug Watch/Locals視窗(或許有點用,起碼類型資訊能夠顯示出來了):

 

[3] What is Microsoft Silverlight? Silverlight Resources, Articles and Tutorials (Silverlight是什嗎?Silverlight資源、文章和教程)

這又是一篇“大收集”文章,其中給出了大量全面的Silverlight資源,包括如下幾個大的分類:

  1. Silverlight Introductions and Overviews
  2. Silverlight Sites
  3. Silverlight Blogs
  4. Silverlight Articles
  5. Silverlight Videos
  6. Silverlight Applications
  7. Silverlight Downloads
  8. Silverlight Resources

可以說基本上當前英文的Silverlight資源在這個文章中已經被一網打盡了。如果你正在學習使用Silverlight,那麼趕快把這個總結添加到收藏夾吧!

 

[4] LINQ to SQL (Part 5 - Binding UI using the ASP:LinqDataSource Control) (LINQ到SQL——第5部分:使用LinqDataSource控制項綁定UI)

這是Scott的《LINQ到SQL》系列文章的第5篇。同樣是一步一步、循循善誘、深入淺出、圖文並茂地介紹了在ASP.NET中使用.NET 3.5中LinqDataSource資料來源擷取資料並綁定到UI元素的方法。文章淺顯易懂,想必Scott為了傳道也花費了不少的心思。

同一個系列的還有若干篇文章,之所以沒有在以前的推薦系列中推薦,是因為這些LINQ文章似乎與ASP.NET沒有什麼關係(是不是有些狹隘了?呵呵):

  1. Part 1: Introduction to LINQ to SQL
  2. Part 2: Defining our Data Model Classes
  3. Part 3: Querying our Database
  4. Part 4: Updating our Database

 

[5] Some ASP.NET 2.0 Configuration Tips (ASP.NET 2.0設定檔的一些技巧)

這篇文章討論了一些我們平時很少很少用到的一些ASP.NET 2.0設定檔技巧,外人看來似乎是一些“奇淫技巧”。但是如果掌握的話,某些時候或許還真的有些協助。看看ASP.NET 2.0設定檔的巧妙設計,不得不發自內心地讚歎。

比如:

<connectionStrings configSource="externConnectionStrings.config" />
 
//(externConnectionStrings.config file:)
<connectionStrings>
 <add name="conn1" connectionString="Note that the localSqlServer shows up because it is defined in web.config (machine.config) and we did not use the clear or remove directives" providerName="SqlClient" />
</connectionStrings>

 

[6] Intellisense in ASP.NET Orcas Beta 1 - what works what doesn't (Orcas Beta 1中ASP.NET的智能感知——能用什嗎?不能用什嗎?)

大牛Rick Strahl顯然不太相信微軟說的Orcas中對JavaScript完全的智能感知支援。於是他做了個實驗測試一下,下面就是測試結果:

// this works fine
function HelloWorld(name)
{
    alert("Hello " + name);
    
    return false;
}
 
// Class as closure -  doesn't work
function MyClass1()
{
    this.myProperty = "Test";
    this.myProperty2 = 0;
    
    this.myMethod = function(input)
    {
        return 0;
    }
}
 
// JSON static Class syntax - works
var MyStaticClass2 =
{
    myProperty: "Test",
    myProperty2: 0,
    myMethod: function()
    {
        return 0;
    }       
}
 
// Prototype syntax - works
function MyClass3()
{
}
MyClass3.prototype = 
{
    myProperty: "Test",
    myProperty2: 2,
    myMethod: function(num)
    {
        // <value type="number" ></value>
        return 0;
    }           
}
 
// *** Additional Prototype assignments - works
MyClass3.prototype.myProperty3 = 3;
 
// *** Direct property assignment - doesn't work
MyClass3.myProperty4 = 4;

同時,Rick Strahl發現若是JavaScript中存在語法錯誤,那麼整個智能感知就完全不好用了……真令人遺憾。

不過Aptana中對JavaScript的支援卻非常的好,看看這個圖(Aptana在本期推薦的第一篇文章中也有列出):

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.