Category Archives: 工作

Clear upload file input field with javascript (JQuery)

<script language=”javascript” src=”jquery.min.js” type=”text/javascript”>
</script>

<script language=”javascript”>
function example_reset_html(id) {
$(‘#’+id).html($(‘#’+id).html());
}
</script>

<form>
<div style=”float: left;” id=”example_file”><input type=”file” /></div>
<input type=”button” value=”Clear” onclick=”example_reset_html(‘example_file’);”  />
</form>

Link: http://www.electrictoolbox.com/clear-upload-file-input-field-jquery/

How to get SharePoint 2007 SPList Forms Url

1
2
3
String formUrl = String.Format(CultureInfo.InvariantCulture, "{0}/{1}?id={2}",
SPContext.Current.Web.Url,
SPContext.Current.Web.Lists[ListName].Forms[ PAGETYPE.PAGE_DISPLAYFORM].Url, item.Id);

来源: http://www.myrocode.com/post/2009/03/20/How-get-SharePoint-2007-SpListItem-DispForm-Url.aspx

Single File PHP Gallery 4.0.0

给大家推荐一款网络照片管理工具: Single File PHP Gallery. 主页是: http://sye.dk/sfpg/.

顾名思义, 这是一款由PHP编写的单文件图片管理工具. 使用和部署及其简单, 只需要将index.php拷贝到图片目录即可. 你可以按照名称或文件扩展名自由决定需要显示(或屏蔽)的文件夹或文件.

我做了一些翻译和改动, 用来支持中文相册应用. 点击这里(Single File PHP Gallery 4.0.0)下载中文版.