Articles Archive for March 2009
ASP.NET AJAX, Tech Corner »
It provides client-side date-picking functionality with customizable date format and UI in a popup control.
<asp:TextBox ID=”TextBox1″ runat=”server”></asp:TextBox>
<ajax:CalendarExtender ID=”CalendarExtender1″ runat=”server”
TargetControlID=”TextBox1″ Format=”yyyy-MM-dd” Enabled=”True”>
</ajax:CalendarExtender>
Car And Bike Corner, Gearless »
Honda Motorcycle & Scooter India Pvt. Ltd. (HMSI) has launched a new variant of its gearless scooter, Honda Activa.
The new and improved Activa has a more powerful 110 cc engine., compared to it’s 102 cc predecessor. This new 4-stroke engine produces 8bhp at 7500rpm and 0.9Kgm of torque at 5500rpm. However, this increased power is not at the expense of mileage-loss. Honda claims that the mileage is improved by about 15% in comparison to the older version of the Activa.
Honda has kept the design simple but attractive; similar to the …
Car, Car And Bike Corner »
The most eagerly awaited car in the Indian Automobile industry will soon hit the roads. Bookings opened for the Tata Nano on the 23rd of March 2009. Initially, there will be just 1 lakh Nanos made available. In order to book a Nano, all you would need to do is to fill up a booking form, which would cost Rs 300 to Rs 500. And, the amount of booking would be 70% to 80% of the car value. Out of the (expectedly) huge number of bookings, a lucky few would …
Read the full Post »ASP.Net, GridView Tips, Tech Corner »
Sometimes we might be in a situation where we need to fill a gridview from the Client itself and not from the database
for eg:-filling a gridview with values entered into a textbox.
For this we need to provide as data source a datatable that will fill based on the values we enter.
Declare as global or in the BLL(if you are using N-Tier Structure)
public static DataTable TempTable;
Global Varaible
DataRow Dtr;
Create Structure of the datatable
private void CreateStructure()
{
TempTable = new DataTable(“DatatableName”);
TempTable.Columns.Add(“ColumnName”, typeof(datatype));//eg-TempTable.Columns.Add(“Name”, typeof(string))
..add more..
}
Now to Fill the GridView
private void FillGrid()
{
Dtr = TempTable.NewRow();
Dtr["ColumnName"] = Textbox1.text;
..add the …
Gadgets Corner »
Imagine a day when you can browse through the mobile phone at speeds of 2Mbps..
Video calling someone..
Well all these will no more be a dream.With the sanctioning of 3G by the Government of India,We are gonna experience a whole new experience in mobile telephony.
The technology will be soon available through networks,so where are phones..
Well,they are already here.
Leading the list are the Apple IPhone and the Samsung Omnia.
Model Name: iPhone 3G
Manufacturer:Apple
Apple says that the IPhone 3G will redefine what a mobile phone can do.
The IPhone is actually a combination of three …