In the middle of the September, Microsoft release free web development tool,SuperPreview for Internet Explorer. This free tool is limited to IE. You can choose different version of IE to show result if your system is supported. I use Windows XP sp3 within IE6, and there is only a version of IE which is in the list. You can buy full version of SuperPreview to use Firefox.
FYI:
Microsoft Expression Web SuperPreview for Windows Internet Explorer
Microsoft Expression Expression
Showing posts with label web development. Show all posts
Showing posts with label web development. Show all posts
Wednesday, September 23, 2009
Sunday, January 13, 2008
PHP permission denied
If you use SeLinux, there is a little bit modification. Because the security problmes, you must tell your system that which modules is trusted. After you run "apachectl start" and the unhappy error shows below:
XXXX. PHP5 cannot restore segment prot afterreloc: Permission denied
You should disable SELinux or issue "chcon -t texrel_shlib_t /usr/local/apache2/modules/*.so"
XXXX. PHP5 cannot restore segment prot afterreloc: Permission denied
You should disable SELinux or issue "chcon -t texrel_shlib_t /usr/local/apache2/modules/*.so"
Monday, November 12, 2007
W3C DOM Compatibility - Core
Peter-Paul Koch make a list of DOM compatibility about browsers.
FYI:
W3C DOM Compatibility - Core From QuirksBlog
FYI:
W3C DOM Compatibility - Core From QuirksBlog
Wednesday, October 24, 2007
jQuery
jQuery is a javascript tool. It can simplify the development processing of ajax.
FYI:
jQuery
IBM developerWorks about JQuery: Simplify Ajax development with jQuery
FYI:
jQuery
IBM developerWorks about JQuery: Simplify Ajax development with jQuery
open source web development tools
There is a open source tool list for web developers. It's really useful.
FYI:
http://www.andrewsellick.com/73/100-great-free-and-open-source-tools-for-web-developers
FYI:
http://www.andrewsellick.com/73/100-great-free-and-open-source-tools-for-web-developers
Friday, October 19, 2007
Email Obfuscator
This obfuscator can encode your e-mail.Example:
From: iHateSPAM@yahoo.com
To:
https://sourceforge.net/projects/obfuscatortool/
From: iHateSPAM@yahoo.com
To:
- <SCRIPT type="text/javascript">var vV0a8N7b0x="Ha";var sg_xMk2VjU="AM";var d9gSbi8M="i";var ucN09="@yah";var fX3QDT="o.co";var q$sYr="o";var l8$LZKH="teSP";var lH8VK="m";document.write(d9gSbi8M+vV0a8N7b0x+l8$LZKH+sg_xMk2VjU+ucN09+q$sYr+fX3QDT+lH8VK);</SCRIPT>
- iHateSPAM@yahoo.com
- <IMG src="59X65131h4.png">
- iHateSPAM @ yahoo . com
- iHateSPAM[AT]yahoo[DOT]com
- <TABLE style="display: inline-table; vertical-align: text-bottom;" border="0" cellpadding="0" cellspacing="0"><TR><TD>iHateSPAM</TD><TD>@</TD><TD>yahoo.com</TD></TR></TABLE>
https://sourceforge.net/projects/obfuscatortool/
Monday, July 02, 2007
Web Development Tools for IE
There are some IE development tools. Some of them are free~
IE Developer Toolbar
IEWatch
DebugBar
Visual Web Developer Express
Nikhil’s Web Development Helper
Fiddler
AjaxView
Developer Tools on Windows Marketplace
the original post
From Microsoft TechEd 2007: Web Development Tools for Internet Explorer
IE Developer Toolbar
IEWatch
DebugBar
Visual Web Developer Express
Nikhil’s Web Development Helper
Fiddler
AjaxView
Developer Tools on Windows Marketplace
the original post
From Microsoft TechEd 2007: Web Development Tools for Internet Explorer
Saturday, July 15, 2006
Direct Web Remoting
DWR is a Java open source library which allows you to write Ajax web sites.
FYI:
http://getahead.ltd.uk/dwr/overview/dwr
http://www-128.ibm.com/developerworks/java/library/j-ajaxportlet/index.html?ca=drs-
FYI:
http://getahead.ltd.uk/dwr/overview/dwr
http://www-128.ibm.com/developerworks/java/library/j-ajaxportlet/index.html?ca=drs-
Wednesday, March 01, 2006
Python: Funkload
FunkLoad:This tool enables to do functional and load testing of web appplication.
URL:
http://funkload.nuxeo.org/
URL:
http://funkload.nuxeo.org/
Wednesday, February 15, 2006
Tuesday, February 14, 2006
I love div
有時候在javascript要出現提示的訊息,會直接把要顯示的東西當作一個變數或是字串,往往美工相關人員的編輯以及翻譯並不會去看HTML原始碼,有時候會漏翻了這些句子。
在不使用任何高超的技術下(純粹用HTML與簡單的javascript),我採用以下的方法,讓美編人員可以在編輯時期,看到那些要顯示出來的語句。
在不使用任何高超的技術下(純粹用HTML與簡單的javascript),我採用以下的方法,讓美編人員可以在編輯時期,看到那些要顯示出來的語句。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>test</title>
<script language="javascript" type="text/javascript">
function initHTML()
{
var divObjs = new Array(document.getElementById('actionPrompt'));
var i = 0;
for(i=0;i<divObjs.length;i++)
{
if( doesObjExists(divObjs[i]) )
setHiddent(divObjs[i]);
}
}
function setHiddent(obj)
{
obj.style.visibility = 'hidden';
}
function doesObjExists(obj)
{
var result = false;
result = obj&& typeof(obj) != 'undefined'
return result;
}
function mainProgress()
{
var actPrompt = document.getElementById('actionPrompt');
var promptText = 'Are you sure to delete all of them?';
if(doesObjExists(actPrompt))
{
promptText = actPrompt.innerHTML;
}
return confirm(promptText);
}
</script>
</head>
<body onLoad="javascript:initHTML();">
<form name="test" onSubmit="javascript:mainProgress();">
<input type="submit" name="Submit" value="按我">
</form>
<div id="actionPrompt">您確定要刪除嗎?</div>
</body>
</html>
Wednesday, January 25, 2006
XMLHttpRequest since IE 7
http://tinyurl.com/36r6y
if (window.XMLHttpRequest){
// If IE7, Mozilla, Safari, etc: Use native object
var xmlHttp = new XMLHttpRequest()
}
else
{
if (window.ActiveXObject){
// ...otherwise, use the ActiveX control for IE5.x and IE6
var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
Subscribe to:
Posts (Atom)
