HOW E-BUSINESS ADD VALUE TO SUPPLY CHAIN NETWORK

February 28th, 2009

Business prospective on social networking services

February 12th, 2009
Business prospective on social networking services February 12

2009


Business prospective on social networking services

Read more…

BPO , , , ,

Free Calling Card template for web developers

December 9th, 2008

Evan has developed a new web 2.0 template for a calling card website.

you can download it for free. Here is the DOWNLOAD link: UNIVERSAL-CALL

Here is the llive demo of the template : CLICK HERE

Ajax, web 2.0 , ,

Google Friend Connect: a solution to Attract more visitors

December 3rd, 2008

Today i get access to google friend connect.

I can say this gadget is a real help to the web manager and specially for blogger. If you have a look you can find out two google gadget on my sidebar. whose two gadget has been installed with the help of GOOGLE.
Read more…

SEO , , , , ,

Resources Website Developer needs

December 1st, 2008

Hello I am trying to place some of the resources that I personally regarding my personal website development practice. I think you may also use these. If you want to change or replace these sections with your comments you are most welcome. You have to register first and let me know that you are interested as an editor.

Read more…

web 2.0 , , ,

Business process outsourcing (BPO) ? what is BPO ? what is ITES ?

November 28th, 2008

Business process outsourcing (BPO) contains the transmission of processes along with the associated operational activities and responsibilities, to a third party with at least a guaranteed equal service level and where the client contains a firm grip over the (activities of the) vendor for mutual long term success. BPO is positively related to the search for more efficient organizational designs: cost reduction, productivity growth and innovative capabilities.
In short it is just transmitting responsibilities to the third party.
Read more…

BPO , , , ,

WHICH IMAGE FORMAT IS BETTER FOR OPTIMIZED WEBSITE?

October 4th, 2008

Unless you’re bent on evoking that retro-fly ARCHIE or GOPHER feel, you’re probably going to be using some images on your pages. Just follow a few simple guidelines as you generate your images, and your pages will download in record time.
Read more…

Image Format , ,

Basic Search Engine Optimization Techniques

September 3rd, 2008

Contents of the website

Many SEO experts suggest that web page contents are the most important factors in SEO. It is important to use keywords heavily on web page, since this will help the search engine determine the topic of page.
Read more…

SEO , , ,

iWebService ITADMIN with web 2.0 interface

August 11th, 2008


Today I have uploaded my iwebservice projects code of ITADMIN module. The site is based on Ajax and web 2.0 like UI.

You can download the source code from project web service

I will update latest version soon… till then TC

Evan

+8801553466670

bdways@gmail.com

Ajax, iwebservice, web 2.0

How to assign data source of drop down menu with dataset?

August 11th, 2008

Things we should know:

  • How to create one dataset
  • Some basic properties of Drop Down menu

Lets start

1. first create your dataset and place your drop down menu control on the page.
2. now lets go to the coding part…… in my example

/// i have created one object of table adapter named dep

AgroEGovTableAdapters.DepartmentTableAdapter dep = new AgroEGovTableAdapters.DepartmentTableAdapter();

///this is the page loading class where we should place the data source for the drop down


protected void Page_Load(object sender, EventArgs e){

if (!IsPostBack)
{
//// assign data source of drop down to dep. GetDepData() where getDepData() gets all the fields of department table


DropDownList1.DataSource = dep.GetDepData();


////// assign deta text value of drop down control to DepartmentName colum of datset table adapter


DropDownList1.DataTextField = “DepartmentName”;

///// assign deta text value of drop down control to DepartmentID colum of datset table adapter


DropDownList1.DataValueField = “DepartmentID”;

//// finaly you have to bing the data in drop down menu control
DropDownList1.DataBind();

}
}

That’s it …… like this you can bind your drop down control values with your dataset adapter

Evan

+8801553466670

ITVISION

ASP.NET, dataset, server controls