Archive for April, 2009

Most Valuable Member : DotnetSpider.com

Today I have received The Most Valuable Member award from the DotnetSpider team, I am active on Dotnetspider.com forum from last 4 years. Recently they introduced the MVM award for the best and quality contributors, I am very happy to receive this. You can find the post at DotnetSpider MVMs and my profile in dotnetspider [...]

Creating Dynamic Controls, and Preserve them for alternate Page Loads : ASP.NET

Normally when you create a control dynamically means at runtime, on the next page load you will loose that control, that control will be no longer exists, in this example I am try to explain how we can store that controls and get them back. Create a Web Application and Add one button to it. [...]

Saving, Retrieving Data in Smart Device Applications

In this example I am try to use SQL Compact Edition with Smart Device Applications. We can store data and update the data in the device using SQL CE, so lets start building a example. Create SmartDeviceProject and add 2 Forms to it, please design the Form1 & Form2 as displayed in the Screen shot. [...]

Implementing Tabs using MultiView Control : ASP.NET

Using MultiView control in ASP.NET we can achieve tabs in a web page, now in this example I am going to explain how we can create tabs using MulitView control Create a web application and add a Table control with 1 row and 3 columns and a MultiView control with 3 views, you can refer [...]

Save Images in Access Database : ASP.NET

Using OLE Object we can save images in Access Database, in this example we will select a image and save that image in Access database using ASP.NET. First we will start creating a table in access database. Create a table ImageTable with following fields ID    AutoNumber (Primary Key) ImageName   Text ImageValue OLE Object Now create [...]