Project DescriptionHelper is a collection of utilities and library to simple the common .NET programming tasks. It Contains:
- DbHelper provides tools for simplifying database development. it is support MS SQL Server and MS Access, you can run a query in one line. such as
IDbHelper db = DbFactory.GetDbHelper();
db.AddParameter("@UserId", userInfo.UserId);
db.AddParameter("@UserName", userInfo.UserName);
db.AddParameter("@IsActive", userInfo.IsActive);
return db.ExecuteNonQuery("Users_Update");
- DataConvert is a simple wrap for data convert. such as
int age = Helper.DataConvert.SafeInt(ageString);
it is just to instead of
int age;
int.TryParse(ageString, out age);
- XmlHelper is a utility for convert object to xml string or convert xml string to an object
- WebHelper contains a collection of method that used for common web task.
AceControls contain some controls, such as calendar, collapsible panel, sizeble text area, smart grid view and Message box control
- grid view can auto sort, auto page, auto show check box and so on.
-Message Box control is a rich client dialog box, and easy using in server and client script.
-Message Box control can show information, warnning, error and confirm message, and support friend icon.
-Message Box control can auto disappear after some seconds.
if you have any suggestion, please send it to
Jack or
jack8024@hotmail.com