Tuesday, January 27, 2009

PHP swf support

http://www.php.net/manual/en/intro.swf.php

PHP with Shockwave Flash support --> PECL

libswf:
PHP offers the ability to create Shockwave Flash files via Paul Haeberli's libswf module.
The libswf does not have support for Windows. The development of that library has been stopped, and the source is not available to port it to another systems. For up to date SWF support take a look at the MING functions.

Ming:
http://www.php.net/manual/en/book.ming.php


[samples]
http://www.php.net/manual/en/swf.examples-basic.php

Monday, January 26, 2009

session state and global variable across asp pages

[Q] HOw to maintain state across requests/webpages?

ASP.NET use application state and session state

support.microsoft.com/kb/307598

Global.asax file

Generally speaking, using Global.asax for session state isn't a recommended solution???


//=== forums.asp.net/p/1371928/2871909.aspx#2871909
global variables should be used sparingly.
The most common approaches to store global variables are :
Application, Cache, and Session

//=== steveorr.net/faq/GlobalVariables.aspx
Understanding session state modes

Friday, January 23, 2009

Issue Tracking/Bug Tracking tools

Issue Tracking/Bug Tracking

Trac
Bugzilla
BugTracker.net
MANTISS + Subversion(svn)
google code
jtrac+svn

Serena的PVCS Version Manager一個License 大概要台幣25000以上 而且不好用??

Ajax uploader

http://blog.joshuaeichorn.com/archives/2006/03/14/php-ajax-file-upload-progress-meter-updates/
"... The basic way the code works is we take a form containing a file upload and submit it using a hidden iframe as a target. Doing this lets the upload happen in the background. Then we poll the server on a regular basis (say a 2 second interval) asking it for update status.
..."

Digest:
1. need a hidden iframe
2. form submit action target the hidden iframe
3. poll server to update the status

[Q] how to add forms to Asp.Net as it comprise only one form?