Home » Archive

Articles Archive for April 2009

Gadgets Corner »

[28 Apr 2009 | No Comment | Posted By:Vivek]

The Nokia E Series phones was launched towards the latter half of 2005 and newer models of the series have been launched by Nokia since then.An ultimate friend of “business on the go”,most of the recently launched E series phones are 3G enabled,with fast browsing speeds,push emails,Wi-Fi and more.
The first of the E series phones to be launched were the Nokia E60,E61 and the E70.
Nokia E60
This phone can be purely said to have been launched for the business class and not for the normal customer.The reason?because its …

Read the full Post »

ASP.Net, GridView Tips, Tech Corner »

[27 Apr 2009 | No Comment | Posted By:LG]

How to use a dropdownlist in a gridview??
I will try explain this with best of my knowledge, the use of a dropdownlist inside comes when the case of edit update in a gridview comes. Consider an Eg:
A gridview that displays a “name” and a “Country”, and an option to edit the Country of a person. This is done from a dropdownlist.

Initial Requirements:
1)
Tables(Ms sqlserver2008 is the back end database used in here)
Table name:- country_lloyd
CountryId int
CountryName varchar(50)
Table name:- …

Read the full Post »

Film/Book Reviews, General »

[23 Apr 2009 | 5 Comments | Posted By:donpaul]

Let me get it straight from the beginning. Slumdog is one of most over hyped movie I have ever seen. I still don’t understand what made it click with the Oscar jury.
But the movie does have its share of moments. And which movie doesn’t.
The ‘youngest Jamaal’ is the real scene stealer. He gives in such a good performance, your heart goes out for him. However I was surprised, that all the credits went to Frieda and Dev. Irfan Khan and Anil Kapoor also gave in some good performances. Then …

Read the full Post »

Cricket, The Game »

[20 Apr 2009 | One Comment | Posted By:Vivek]
The IPL is back!!!

The splendor and grandeur of the Indian Premier League(IPL) is back,and this time in South Africa.If IPL 1 got to awesome beginning with Brendon Mccullum’s blistering 158,this time it was a completely different story.
The first few matches have seen the ball dominate the bat.This IPL seems to be a bowlers’ tournament.
Lets see the prospects of the 8 teams based on the 1st round of matches.
Rajasthan Royals
Shane Warne inspired the weakest team on paper to cup glory in the 2008 edition and many will expect them to do well this season …

Read the full Post »

ASP.Net, Tech Corner »

[15 Apr 2009 | No Comment | Posted By:LG]

How to Upload a file in an ASP.NET website…???
Pre-requisites
1)Drag & drop the “Fileupload” control (“FileUpload1”)into an aspx page(“latest15.aspx” ).You will get “Fileupload” control from visualstudio.Net standard toolbar.
2)Add a button to the page( “Button_Upload”) .
The fileupload control itself helps browsing our system,I am not going on explaining just check out the code below.It is the code file of the page.
“latest15.aspx.cs”
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class latest15 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button_Upload_Click(object sender, EventArgs e)
{
FileUpload1.SaveAs(Server.MapPath(Request.ApplicationPath)+”\\”+FileUpload1.FileName);
}
}
Notes:
1) “Savesas” …

Read the full Post »