Sunday, November 21, 2010

WebSphere Portlet Factory developers for Bahrain:VAMSYSTEMS

VAM SYSTEMS is a Business Consulting, IT Solutions and Services company with operations in UAE, Qatar, Bahrain, USA, Australia, Singapore & India.


VAM SYSTEMS is currently looking for WebSphere Portlet Factory developers for our Bahrain operations with the following skill set and terms and conditions:

Skill Set required:

• 5+ years Java / J2EE development

• 4+ years WebSphere Portal development (inc JSR 286/JSR 168)

• 2+ years WebSphere Portlet Factory experience

• 2+ years WebSphere Web Content Management development experience

• 2+ years experience in other Web development languages including Dojo, JavaScript and DHTML

• Knowledge of WebSphere MQ and JMS

• XML, XSLT knowledge preferred

• DB2 & Oracle experience preferred





Terms and conditions:



Joining time frame : 2 weeks (maximum 4 weeks)

The selected candidates shall join VAMSYSTEMS- Bahrain and shall be deputed to one of the leading banks in Bahrain.

Should you be interested in this opportunity, please send your latest resume in MS Word format at the earliest at ambili.krishnan@vamsystems.com or call us +91 476 2681150.











Skills:



Job Reference: vamvin

Job Category: IT [ View All IT Jobs ]

Language requirements:

Employment type: Full Time

Salary: Unspecified

Degree: Unspecified

Experience (year): Unspecified

Job Location: Bahrain

Address: Sasthamangalam



Company Type Employer

Post Date: 10/11/2010 /

Web developer – web designer :mosatechno

Job description:


Web developer – web designer

Prefer experience - Send cv : hr@mosatechno.com



Skills:



Job Reference: Web developer – web designer

Job Category: IT [ View All IT Jobs ]

Language requirements:

Employment type: Contract

Salary: Unspecified

Degree: Unspecified

Experience (year): Unspecified

Job Location: Egypt

Address: hr@mosatechno.com



Company Type Employer

Post Date: 19/11/2010 /

SQL Server DBA for Qatar:VAMSYSTEMS

Job description:


VAM SYSTEMS is a Business Consulting, IT Solutions and Services company with operations in UAE, Qatar, Bahrain, USA, Australia, Singapore & India.

VAM SYSTEMS is currently looking for SQL Server DBA for our Qatar operations with the following skill set and terms and conditions:

Skill Set required:

Strong administration experience in SQL Server.



Should have experience in production support.



Should have experience in Migration and Clustering



Domain: Bank.



Experience Required : minimum 6 years.

Terms and conditions:

Joining time frame: Maximum 4 weeks

The selected candidates shall join VAM SYSTEMS – Qatar and shall be deputed to one of the leading Banks in Qatar.

Should you be interested in this opportunity, please send your latest resume in MS Word format at the earliest at ambili.krishnan@vamsystems.com or call us +91 0476 2684922.

Skills:



Job Reference: vamvin

Job Category: IT [ View All IT Jobs ]

Language requirements:

Employment type: Full Time

Salary: Unspecified

Degree: Unspecified

Experience (year): Unspecified

Job Location: Qatar

Address: Sasthamangalam



Company Type Employer

Post Date: 19/11/2010 / 

CTL Support for Qatar:VAMSYSTEMS

Job description:


VAM SYSTEMS is a Business Consulting, IT Solutions and Services company with operations in UAE, Qatar, Bahrain, USA, Australia, Singapore & India.

VAM SYSTEMS currently looking for CTL Support for our QATAR operations with the following skill set and terms and conditions:

Skills Set required:

Strong support experience in CTL.



Domain : Banking

Experience Required : minimum 2yrs

Terms and conditions:

Joining time frame : Immediate.

The selected candidates shall join VAM SYSTEMS – Qatar and shall be deputed to one of the leading banks in Qatar.

Should you be interested in this opportunity, please send your latest resume in MS Word format at the earliest at ambili.krishnan@vamsystems.com or call us +91 0476 2681150

.







Skills:



Job Reference: vamvin

Job Category: IT [ View All IT Jobs ]

Language requirements:

Employment type: Full Time

Salary: Unspecified

Degree: Unspecified

Experience (year): Unspecified

Job Location: Qatar

Address: Sasthamangalam



Company Type Employer

Post Date: 19/11/2010 / Viewed 19 times

HRMS Consultant

Job description:


HRMS Function Consultant



A Banking client based in Oman is urgently looking for a oracle HRMS function consultant. They are looking for a Candidate who has domain knowledge of HRMS who can define the functions of HR in the system.

For a more detailed job Specification or to apply, please can you send your CV to thomas.baker@attivagroup.co.uk



Skills:



Job Category: IT [ View All IT Jobs ]

Language requirements: •English-very good



Employment type: Full Time

Salary: Unspecified

Degree: Bachelors

Experience (year): Unspecified

Job Location: Oman

Company Type Employer

Post Date: 11/11/2010 / Viewed 135 times

Test Consultant

Job description:

Test Consultant

The Client is currently implementing a number of IT projects with the overall objective of aligning itself with business requirements and best practice in the industry

Test consultant will be responsible to ensure test deliverables are maintained to the highest standard and contribute towards the success of the various test efforts.

For a more detailed job description or to apply, Please send your CV to thomas.baker@attivagroup.co.uk



Skills:



Job Category: IT [ View All IT Jobs ]

Language requirements: •English-very good



Employment type: Full Time

Salary: Unspecified

Degree: Bachelors

Experience (year): Unspecified

Job Location: Oman

Company Type Employer

Post Date: 11/11/2010 / Viewed 115 times

Sunday, November 14, 2010

Migrating from PHP to ASP.NET- part4

Output
The typical way of outputting data in PHP is through the echo() language construct.
closest analogue to this in ASP.NET is the Response.Write() method, or the
'

Code Sample 3. Basic output in PHP




$hello = "hi how are you\n";

echo $hello;

?>

Code Sample 3. Basic output in Visual Basic .NET

However, these methods for sending output to the browser exist primarily for backwards compatibility with classic ASP. ASP.NET's new control-based, event-oriented model allows for data to be output to the browser by simply setting properties on server controls. This technique allows for clean separation of layout and code and can make maintenance easier, requiring significantly less code in complex situations than PHP.



The current date is:

This example declares a server-side Label control called TheDate, and during the page's Load event, sets the Text property of the label to the current date and time. The HTML output of this code is identical to the other two versions, except that the Label control renders itself as a span tag containing whatever was set as the label's text.

Conditional Processing

IF/ELSE

PHP has several conditional processing expressions such as for, while, switch, and foreach but the most common is the if/else expression. Visual Basic .NET has very similar constructs with similar syntax. Code Sample 4 provides a comparison of equivalent conditional logic in PHP and Visual Basic .NET.

Code Sample 4. Basic conditional logic in PHP

if ($a > $b) {

print "a is bigger than b";

} elseif ($a == $b) {

print "a is equal to b";

} else {

print "a is smaller than b";

}



Code Sample 4. Basic conditional logic in Visual Basic .NET

If a > b

Response.Write ("a is bigger than b")

ElseIf a = b Then

Response.Write ("a is equal to b")

Else

Response.Write ("a is smaller than b")

End If



Switch

Switch statements are common language constructs for most programming languages when you wish to test a single expression for multiple values. They are commonly used to replace if statements that contain multiple elseif/else blocks.

Code Sample 5 shows a comparison between PHP's switch statement and Visual Basic's Select Case statement.

Code Sample 5. A switch statement in PHP

switch ($i) {

case 0:

print "i equals 0";

break;

case 1:

print "i equals 1";

break;

case 2:

print "i equals 2";

break;

default:

print "i is not equal to 0, 1 or 2";

}



Code Sample 5. A Select Case statement in Visual Basic .NET

Select Case Number i

Case 0

description = "0"

Wesponse.Write ("i equals 0")

Case 1

description = "1"

Response.Write ("i equals 1")

Case 2

description = "2"

Response.Write ("i equals 2")

Case Else

description = " i is not equal to 0, 1 or 2"

Response.Write ("i is not equal to 0, 1 or 2 ")

End Select