2011年3月23日 星期三
Get URL Parameters Using Javascript
http://www.netlobo.com/url_query_string_javascript.html
http://www.foo.com/index.html?bob=123&frank=321&tom=213#top
function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}
http://www.foo.com/index.html?bob=123&frank=321&tom=213#top
var frank_param = gup( 'frank' );
2011年3月15日 星期二
Alter Table Modify Column Syntax
Table customer
Column Name Data Type
First_Name char(50)
Last_Name char(50)
Address char(50)
City char(50)
Country char(25)
Birth_Date date
Our goal is to alter the data type of the "Address" column to char(100). To do this, we key in:
MySQL:
ALTER TABLE customer MODIFY Address char(100);
Oracle:
ALTER TABLE customer MODIFY Address char(100);
SQL Server:
ALTER TABLE customer ALTER COLUMN Address char(100);
http://www.1keydata.com/sql/alter-table-modify-column.html
Column Name Data Type
First_Name char(50)
Last_Name char(50)
Address char(50)
City char(50)
Country char(25)
Birth_Date date
Our goal is to alter the data type of the "Address" column to char(100). To do this, we key in:
MySQL:
ALTER TABLE customer MODIFY Address char(100);
Oracle:
ALTER TABLE customer MODIFY Address char(100);
SQL Server:
ALTER TABLE customer ALTER COLUMN Address char(100);
http://www.1keydata.com/sql/alter-table-modify-column.html
2011年3月11日 星期五
RegularExpressionValidator
http://www.cactusoft.com/blog_37
http://msdn.microsoft.com/en-us/library/ff650303.aspx
http://msdn.microsoft.com/en-us/library/ff650303.aspx
2011年3月1日 星期二
Google API]利用GFslideShow播放Picasa網路相簿中的圖片
Google API]利用GFslideShow播放Picasa網路相簿中的圖片
http://cire.pixnet.net/blog/post/28770294
http://cire.pixnet.net/blog/post/28770294
Lightbox2
Lightbox2
http://www.huddletogether.com/projects/lightbox2/
jQuery lightBox plugin
http://leandrovieira.com/projects/jquery/lightbox/
http://www.huddletogether.com/projects/lightbox2/
jQuery lightBox plugin
http://leandrovieira.com/projects/jquery/lightbox/
Animated JavaScript Slideshow
Animated JavaScript Slideshow
http://www.scriptiny.com/2008/12/javascript-slideshow/
http://www.javascriptkit.com/howto/show3.shtml
http://www.scriptiny.com/2008/12/javascript-slideshow/
http://www.javascriptkit.com/howto/show3.shtml
訂閱:
意見 (Atom)
