技術者派遣の技術日誌ブログ

March 28, 2008

Building ASP.NET AJAX Controls Index Post – Mike Ormond's Blog …

Filed under: Javascript/Xhtml/Css — Tags: , — strmozo @ 5:26 pm

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 …

Michael Sync » Blog Archive » Uploading with Silveright 2 Beta 1 …

,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 …

March 26, 2008

Ajax Wiki – InsideRIA

Filed under: Ajax, Javascript/Xhtml/Css — Tags: , , , , , — Shotalow @ 1:00 pm

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

March 25, 2008

Building ASP.NET AJAX Controls (Pt 1) – Mike Ormond's Blog – Site …

Filed under: Ajax, Javascript/Xhtml/Css — Tags: , — Shotalow @ 5:28 pm

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 …

[Tips]AjaxControlToolkit CalendarExtender を使用する

Filed under: ALL — Tags: , , , — citiszo @ 4:54 am


March 24, 2008

[How To]StringBuilder で高速に文字列を処理する

Filed under: .NET Framework, C# — Tags: , , — Sayuri @ 10:13 pm


なるべく高速に文字列を処理するには、StringBuilder クラスを使用します。
頻繁に文字列に対して処理が発生する場合に使用すると効果的です。

ある程度、使用するサイズが決まっている場合は Capacity プロパティに値をセットしておきます。
Capacity プロパティは現在の Length より低い値に設定すると ArgumentOutOfRangeException が発生します。

その他、StringBuilder クラスのメンバには、String クラスと同じようなものが多数存在します。
詳しくは、String クラスの Tips をご覧ください。

C#

March 21, 2008

先頭からいくつかの文字を検索する

Filed under: C# — Tags: , , — AspAnn @ 5:00 am

System.String クラスの IndexOf メソッドを使用すると、先頭から文字を検索することができます。
これとは別で IndexOfAny メソッドというメソッドがあります。

IndexOfAny メソッドは Char 型の配列を指定し、その配列内に存在する文字のいずれかがヒットした最初のインデックス値を返します。

C#

March 19, 2008

Django snippets: Simple Exception Response for AJAX debugging

Filed under: Ajax — Tags: , , , , , , — Shotalow @ 8:02 am

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

March 18, 2008

[C#,VB,JAVA]Excel を起動または終了する

Filed under: C# — Tags: , , — AspAnn @ 1:08 am

C#

[How To]RenderContents を使用する

Filed under: C# — Tags: , , — doku @ 12:11 am

// App_Code

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;

public class MyHyperLink : HyperLink
{

Older Posts »

このページの上部に戻る

Powered by WordPress