2010 年12月godaddy优惠码(持续更新中)

By admin, 2010年12月2日

gda1232m 优惠21% 没有最低消费限制
有效期仅两天,12-1 ,12-2 西部时间

gda1215n  节省30% 注册域名或续费域名 .com .net .org域名
有效期至2010-12-12

gda1219c  节省25% $60以上
有效期至2010-12-12  西部时间

gda1255s 节省26% 没有最低消费限制
有效期至 2010-12-16 仅两天

gda1239n 节省28% 没有最低消费限制
有效期4天,到2010-12-25,还西部时间,还是很划算的

gda1241n 节省31% 新年优惠
有效期至 20111-1-2 ,美国时间

discuz论坛帖数及回复数变为16777215的解决办法

By admin, 2010年12月1日

discuz的论坛,后台->工具->批量删帖后,发现首页上多数版块的发帖数变成了16777215

解决方法如下:

后台->工具->计划任务,所有的任务手动开始一下,然后,工具->更新论坛统计,就完事了。实在不行,再清理一下缓存。就好了。

PDF解密去除限制,PDF去除密码

By admin, 2010年11月24日

今天介绍一个免费的PDF解密工具。

经常会遇到PDF添加了禁止打印,禁止复制等限制,非常不方便,为了解密找了很多的软件,大部分都是收费软件,要么是有水印,要么就是只能解密部分,破解的软件很多有病毒。

今天终于找到一款免费的破解PDF的软件,http://www.pdfdo.com/pdf-remove-restriction.aspx

在线的,上传PDF文件就能解密去除限制,如果PDF有打开口令,上传文档的时候输入口令,即能把口令去除,非常方便。最大支持40M。

pdf转txt,PDF导出文本提取内容

By admin, 2010年11月24日

pdf转txt其实很简单,用Adobe Reader打开PDF文件,点击菜单 文件-->另外为文本 ,
输入新的txt文件名,过一会就得到新的txt文件了。前提是PDF的内容不是图片,是文本,可复制的那种。

如果是图片,想提取其中的文字那就要先用OCR识别文本,然后才可以提取。

如果PDF是加密的禁止复制,那么先要解密去除限制 http://www.pdfdo.com/pdf-remove-restriction.aspx,然后才可以另存为文本文件。

2010 年11月godaddy优惠码(持续更新中)

By admin, 2010年11月4日

gda1127n   节省25% 没有最低限制,使用于域名、主机等
有效期仅11.3  11.4这两天

gda1124p   $7.99 .com域名
有效期至2010-11-14
http://www.godaddy.com/domains/search.aspx?isc=gda1124p

FBDOMAIN10  域名节省10% .COM, .NET, .ORG, .BIZ, and .US domains
有效期至2010-11-20

gda1131p 节省20% $40以上
有效期至周日 2010-11-14,很实惠哦


gda1132p 节省25% $60以上
有效期至 2010-11-28 还不错

gda1134n 节省15%   $55以上
有效期至 2010-11-21

gda1135n 域名节省30% 适用于 .com .net .org
有效期至2010-12-12

fbhost15 节省15%  hosting Plan
有效期至 2010-12-12

gda1139p  节省25%  $60以上
有效期至2010-12-12

Discuz批量删除未审核通过的帖子和主题

By admin, 2010年10月29日

Discuz里面有很多垃圾的帖子,一页一页删除太慢,如何能直接全部删除未审核通过的帖子呢。
后台执行sql语句可以实现
delete from cdb_threads  where displayorder=-2;
delete from cdb_posts  where invisible=-2;
后台管理--工具--数据库--升级 直接运行sql语句

2010年10月godaddy优惠码(持续更新中)

By admin, 2010年10月5日

2010-10-5收到的

gda3121p 节省15% $50以上
有效期至2010-10-17
2010-10-8收到的
gda3117p 节省25% $95以上
有效期至2010-10-10
2010-10-12收到的
gda3124p 节省20% $75以上
有效期至 2010-10-24

2010-10-13收到的
gda3126k 节省20% 没有最低额度限制,适用于域名主机等
有效期仅13号这一天


2010-10-16收到的
gda3128p 节省15% $30以上
有效期至2010-10-17

2010-10-17收到的
fbgdhome20 节省20% $75以上
有效期至2010-10-30

2010-10-19受到的
fbfhome20 节省20% $75以上
有效期至 2010-11-1

Skype Video Call Recorder

By admin, 2010年09月26日

Skype Video Call Recorder

Trial download:

Buy Now Only $ 29.95 USD

多文件上传支持IE和Firefox

By admin, 2010年09月24日

找了好几个多文件上传,但很难同时完美支持IE和Firefox,找到这个虽然简单,可同时支持IE和火狐,就用这个了。

前台:

<%@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb"  Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
  <title>多文件上传</title>

  <script type="text/javascript">
    function addFile() {
      var div = document.createElement("div");
      var f = document.createElement("input");
      f.setAttribute("type", "file")
      f.setAttribute("name", "File")
      f.setAttribute("size", "50")
      div.appendChild(f)
      var d = document.createElement("input");
      d.setAttribute("type", "button")
      d.setAttribute("onclick", "deteFile(this)");
      d.setAttribute("value", "移除")
      div.appendChild(d)
      document.getElementById("_container").appendChild(div);
    }

    function deteFile(o) {
      while (o.tagName != "DIV") o = o.parentNode;
      o.parentNode.removeChild(o);
    }
  </script>

</head>
<body>
  <form id="form1" runat="server" method="post" enctype="multipart/form-data">
  <h3>多文件上传</h3>

  <div id="_container">
    <input type="file" size="50" name="File" />
  </div>
  <div>
    <input type="button" value="添加文件(Add)" onclick="addFile()" />
  </div>
  <div style="padding:10px 0">
    <asp:Button runat="server" Text="开始上传" ID="UploadButton" onclick="UploadButton_Click"></asp:Button>
  </div>
  <div>
    <asp:Label ID="strStatus" runat="server" Font-Names="宋体" Font-Bold="True" Font-Size="9pt" Width="500px" BorderStyle="None" BorderColor="White"></asp:Label>
  </div>
  </form>
</body>
</html>


 后台代码:

Imports System.Collections.Generic
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls

Partial Class _Default
    Inherits System.Web.UI.Page

    Protected Sub UploadButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles UploadButton.Click
        ''''遍历File表单元
        Dim files As HttpFileCollection = HttpContext.Current.Request.Files

        Dim strMsg As New System.Text.StringBuilder("您输入的用户名是:<br/>")
        strMsg.Append("上传的文件分别是:<hr color='red'/>")
        Try
            For iFile As Integer = 0 To files.Count - 1
                ''''检查文件扩展名字
                Dim postedFile As HttpPostedFile = files(iFile)
                Dim fileName As String, fileExtension As String
                fileName = System.IO.Path.GetFileName(postedFile.FileName)
                If fileName <> "" Then
                    fileExtension = System.IO.Path.GetExtension(fileName)
                    strMsg.Append("上传的文件类型:" & postedFile.ContentType.ToString() & "<br>")
                    strMsg.Append("客户端文件地址:" & postedFile.FileName & "<br>")
                    strMsg.Append("上传文件的文件名:" & fileName & "<br>")
                    strMsg.Append("上传文件的扩展名:" & fileExtension & "<br><hr>")
             
                    postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath("images/") & fileName)
                End If
            Next
            strStatus.Text = strMsg.ToString
        Catch Ex As System.Exception

        End Try

    End Sub
End Class

 

国内软件提交发布地址

By admin, 2010年09月21日

软件下载网站排名,实时更新的

http://www.iwebchoice.com/Html/Class_22.shtml

整理的国内各大软件下载站的软件发布入口

天空软件站
http://author.skycn.com/
太平洋电脑网
http://dlc2.pconline.com.cn/clientMaster.jsp
华军软件园
http://user.newhua.com/

eNet下载
http://download.enet.com.cn/eblog/

飞翔下载
http://www.52z.com/up.php
多特软件站
http://submit.duote.com/

非凡软件站
http://u.crsky.com/

绿色软件联盟
http://bbs.xdowns.com/pub/