NET AJAX and creating custom web parts with the toolkit and extensions will be supported at SP1. “You can now use the Microsoft AJAX 1.0 Control toolkit for Microsoft ASP.NET or the AJAX 1.0 Extensions for ASP. …
NET AJAX and creating custom web parts with the toolkit and extensions will be supported at SP1. “You can now use the Microsoft AJAX 1.0 Control toolkit for Microsoft ASP.NET or the AJAX 1.0 Extensions for ASP. …
Originally posted here:
ASP.NET AJAX Support in WSS 3.0 and MOSS 2007 SP1 – Joel Oleson's …
ViewState の情報を Session に保存する方法
HTML TABLE スクロール
で、いろいろ出ます、基本は同じで
css レイアウト属性の固めかた、Javascriptの扱い、さまざま。
Javascript controls for Silverlight 1.0. jaimer.
Javascript controls for Silverlight 1.0. jaimer.
Javascript controls for Silverlight 1.0. jaimer.
Javascript controls for Silverlight 1.0. jaimer. 26 Nov 2007 1:51 AM. Comments 2. I have been involved in a handful of Silverlight projects where we ended up reinventing buttons, sliders, etc. I have been telling myself I would …
Javascript controls for Silverlight 1.0. jaimer.
Read more here:
Javascript controls for Silverlight 1.0 – Jaime Rodriguez – Site …
,ASP.NET,JAVASCRIPT,JQUERY
NET and C# compile options. One of those features are object and collection initializers. I like it to write source code like following lines (I always have my JavaScript code in mind, which is sometimes very similar): ..
NET and C# compile options. One of those features are object and collection initializers. I like it to write source code like following lines (I always have my JavaScript code in mind, which is sometimes very similar): … UI Scheduler ASP. NET AJAX more; Exposing Custom WCF Headers through WCF Behaviors – Part 2 more; More Designer Improvements – Deleting Entities from the model and from the store schema more; VS2010 Beta 1 – It’s Better on Metal more …
Visit link:
DotNetSlackers: Object and Collection Initializers in VS.NET 2008
ASPからWebサービスを利用する方法
Microsoft SOAP Toolkit 2.0 SP2 をダウンロードし、インストールする。
あとは、コード内で SOAPClient のインスタンスを生成し、Webサービスのメソッドを呼ぶだけ。
Dim objSoapClient
Dim strResult
Set objSoapClient = CreateObject(“MSSOAP.SoapClient”)
Call objSoapClient.mssoapinit(“http://localhost/WebServices/Hogehoge.asmx?WSDL“)
strResult = objSoapClient.HogehogeMethod(“Hoge”)
ASP から呼び出すと次のエラーが発生して、呼び出しが行なえない。
'Client: WSDLReader:Loading of the WSDL file failed HRESULT=0×80070057 – WSDLReader:XML Parser failed at linenumber 0, lineposition 0, reason is: 要求されたリソースのデータは使用できません。
HRESULT=0×1' の種類の例外はハンドルできません。
どうも、WSDL ファイルは、WSDLReader の中の DOM に対して、MSXML の HTTP インターフェイスを使ってロードされるらしい。
ASP ページ内で MSXML HTTP スタックを実行するためには、ServerHTTPRequest オプションを使用する必要があるみたい。
次のコードをmssoapinitの前に呼びだせば、問題なく呼び出しが行なえるようになる。
objSoapClient.ClientProperty(“ServerHTTPRequest”) = True
この Tips では、 Outlook でメールを送信する時に件名 (Subject) や添付ファイルのチェックを行う方法について説明します。 Outlook を利用していると、メールの送信後に件名の入力漏れやファイルの添付漏れに気づく場合があります
では、マクロ (VBA) を使った方法を説明します。以下のマクロを ItemSend イベントへ関連づけてください。 (Tips 用にシンプルにしたため、関数化などを行っていません。各自で機能拡張を行うときにリファクタリングしてください。リファレンスとして MSDN の Outlook の VBA を使用した Outlook イベントへの応答やその周辺が参考になります。)
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
「JavaScript で undefined と null を同時に判定する方法」と書くと大げさですが、内容は非常に単純です。 undefined と null を同時に判定するには、以下のようにします。
// 変数 != undefined && 変数 != null と同じ
if (変数)
{
PHP5で例外(Exception)が使えるようになった。
PHPエラー(NOTICEとか)を例外へ変換することで、PHPに関する全てのエラーを
例外として扱うことができる。
ネタ元では、PHPエラーが発生したファイル名、行番号を
Exception へ変換する処理が無いので、これを実装することを考えてみた。
流れは次の通り。
PHPエラー