Search found 5 matches

by hanusoft
Thu Nov 15, 2007 4:53 am
Forum: General Development
Topic: Business Software Development
Replies: 3
Views: 820

Business Software Development

Business Software Development is a boon to the corporate world. The tedious tasks have been simplified by the use of Business software applications such as enterprise resource planning, enterprise content management (ECM), business process management and product lifecycle management. Also, medium si...
by hanusoft
Sat Oct 06, 2007 12:42 pm
Forum: wx.NET
Topic: example of editing in DataGrid and Default Paging
Replies: 0
Views: 15708

example of editing in DataGrid and Default Paging

This is an example of editing in DataGrid and Default Paging Html Design Code : - <asp:DataGrid id="DataGrid1" DataKeyField="id" runat="server" Height="224px" AutoGenerateColumns="False" PageSize="5" AllowPaging="True"> <Columns> ...
by hanusoft
Thu Sep 27, 2007 5:01 am
Forum: wx.NET
Topic: example of Inserting and Retrieving data from xml file
Replies: 1
Views: 13581

example of Inserting and Retrieving data from xml file

This is an example of Inserting and Retrieving data from xml file. private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) { BindGrid(); } } private void BindGrid() { ds = new DataSet(); try { ds.ReadXml(@"c:\inetpub\wwwroot\WebAp...
by hanusoft
Fri Sep 21, 2007 6:55 am
Forum: wx.NET
Topic: Example of Image Upload
Replies: 1
Views: 14181

Example of Image Upload

Here we are uploading images in File System and storing path in the database. Code (ImageUpload.aspx.cs) :- private void Button1_Click(object sender, System.EventArgs e) { // Here I am uploading images in Images folder of C drive. int intResult=0; string strPath = @"c:\Images\"+Path.GetFil...
by hanusoft
Fri Sep 14, 2007 6:40 am
Forum: wx.NET
Topic: example of Server.Transfer and Context Handler
Replies: 0
Views: 21819

example of Server.Transfer and Context Handler

This is an example of Server.Transfer and Context Handler. Through this we can get the multiple values of previous form. In this page we are displaying data from previous form. We can use this technique for multiple form registration form. Code (ContextParent.aspx.cs): - private void Button1_Click(o...