Blog about software development, technology, .NET, web development and Silverlight.
Blog about software development, technology, .NET, web development and Silverlight.
View original post here:
Building ASP.NET AJAX Controls Index Post – Mike Ormond's Blog …
,ASP.NET,JAVASCRIPT,JQUERY
This method allows the upload of any file type to a WCF Service which then stores it on the server. While researching uploading I came across the following Silverlight 2 Beta 1 limitations that led to my solution: BassicHttpBinding. …
This method allows the upload of any file type to a WCF Service which then stores it on the server. While researching uploading I came across the following Silverlight 2 Beta 1 limitations that led to my solution: BassicHttpBinding. … Create the Service function that consumes an uploaded file and stores it to the file system [sourcecode language="csharp"] public void StoreFile(FileUpload UploadedFile) { FileStream FileStream = new FileStream(HttpContext.Current.Server. …
View original post here:
Michael Sync » Blog Archive » Uploading with Silveright 2 Beta 1 …
Wiki_wide.png The AJAX UI Toolkits wiki at http:// ajax .wikia.com identifies a list of UI components most commonly used in business software applications to develop a rich Internet application user experience.
Wiki_wide.png The AJAX UI Toolkits wiki at http://ajax.wikia.com identifies a list of UI components most commonly used in business software applications to develop a rich Internet application user experience.
Continue reading here:
Ajax Wiki – InsideRIA
Blog about software development, technology, .NET, web development and Silverlight.
Blog about software development, technology, .NET, web development and Silverlight.
Originally posted here:
Building ASP.NET AJAX Controls (Pt 1) – Mike Ormond's Blog – Site …
なるべく高速に文字列を処理するには、StringBuilder クラスを使用します。
頻繁に文字列に対して処理が発生する場合に使用すると効果的です。
ある程度、使用するサイズが決まっている場合は Capacity プロパティに値をセットしておきます。
Capacity プロパティは現在の Length より低い値に設定すると ArgumentOutOfRangeException が発生します。
その他、StringBuilder クラスのメンバには、String クラスと同じようなものが多数存在します。
詳しくは、String クラスの Tips をご覧ください。
C#
System.String クラスの IndexOf メソッドを使用すると、先頭から文字を検索することができます。
これとは別で IndexOfAny メソッドというメソッドがあります。
IndexOfAny メソッドは Char 型の配列を指定し、その配列内に存在する文字のいずれかがヒットした最初のインデックス値を返します。
C#
When debugging AJAX with Firebug, if a response is 500, it is a pain to have to view the entire source of the pretty exception page. This is a simple middleware that just returns the exception without any markup. …
When debugging AJAX with Firebug, if a response is 500, it is a pain to have to view the entire source of the pretty exception page. This is a simple middleware that just returns the exception without any markup. …
Read more from the original source:
Django snippets: Simple Exception Response for AJAX debugging