Page 5 of 12  « First  ... « 3  4  5  6  7 » ...  Last » 
drmg on 12 月 16th, 2004

↓setExpressionの使い方。
DHTML Dude: さらにダイナミックに
http://www.microsoft.com/japan/msdn/columns/dude/dude061198.asp

続きを読む... ダイナミック プロパティ(setExpression)

drmg on 12 月 15th, 2004

///// 表示するURLリスト /////
var aryURL = new Array();
aryURL[aryURL.length]=”http://www.google.co.jp/”;
aryURL[aryURL.length]=”http://www.goo.ne.jp/”;
aryURL[aryURL.length]=”http://www.yahoo.co.jp/”;
///// 読み込みループ /////
function OpenLoop(numSetIx,numSetTimeout)
{
try {
if(numSetIx==null){
LOG.value=”[処理開始]“;
OpenLoop(0,numSetTimeout);
return;
}
if (numSetTimeout==null)
{
numSetTimeout = 1000;
}
if(aryURL.length

続きを読む... ページ読み込みHTA

protected void Application_Error(Object sender, EventArgs e)
{ //簡易ログ出力
System.IO.StreamWriter log = new System.IO.StreamWriter(System.IO.Path.GetDirectoryName(Request.PhysicalPath)+”\\log\\”+System.DateTime.Now.ToString(”yyyyMMdd”)+”.log”,true,System.Text.Encoding.GetEncoding(”shift-jis”));
log.WriteLine(Server.GetLastError().ToString());
log.Close();
}

続きを読む... Global.asax.cs で簡易エラーログを仕込む(C#)

drmg on 10 月 29th, 2004

↓パスを取得する正規表現
location.href.match(”^.*/”)
↓ファイル名を取得する正規表現
location.href.match(”[^/]*$”)

続きを読む... 正規表現

drmg on 10 月 13th, 2004

Webブラウザのアドレス欄に「javascript:document.cookie;」という文字列を入力するとCooikeを表示する。
Webブラウザのアドレス欄の先頭に「view-source:」を追加するとソースを表 [...]

続きを読む... IE豆知識。。