
October 30th, 2008

admin
What is Spring Framework?
Spring is grate framework for development of Enterprise grade application. Spring is a light-weight framework for the development of enterprise-ready applications. Spring can be used to configure declarative transaction management, remote access to your logic using RMI or web services, mailing facilities and various options in persisting your data to a database.Spring framework can be used in modular fashion, it allows to use in parts and leave the other components which is not required by the application.
Feature of Spring Framework
Popularity: 1% [?]

October 30th, 2008

admin
Microsoft announced Visual Studio 2010 and the .NET Framework 4.0 on September 29, 2008 which marks the next generation of developer tools from Microsoft.
Based upon .NET Framework 4.0 Brad Abrams released a poster “.Net Framework 4.0 universe” , which gives you a clear view of new stuffs in .NET Framework 4.0.You can download the poster in PDF format.
Visual Studio 2010 and the .NET Framework 4.0 deliver key innovations in the following pillars:
- Democratizing Application Lifecycle Management
- Enabling emerging trends
- Inspiring developer delight
- Riding the next generation platform wave
- Breakthrough Departmental Applications
You can have a overview of Visual Studio 2010 and .NET Framework 4.0 from msdn.
Popularity: 3% [?]

October 30th, 2008

admin
DICOM (Digital Imaging and Communications in Medicine) is a standard developed by NEMA (National Electrical Manufacturers Association) for distribution and viewing of medical images (such as CT, MRI, UltraSound, Xray…). The standard includes a file format definition and a communication protocol. The communication protocol uses TCP/IP to communicate between systems. The standard enables the integration of Modalities, Printer, PACS, Workstations, Server.
Popularity: 1% [?]

October 28th, 2008

admin
To set focus on textbox Value at the End using javascript follow the steps:
1.Assuming ‘Search’ is the id given for the Textbox.
2.setFocus() function called on BODY load.
3.The function will position the cursor at the end of the Textbox value
(if any value Present it will point at the end of the value)
function setFocus()
{
var field = document.form.Search;
field.focus();
field.value = field.value;
field.focus();
}
Demo Link
Popularity: 1% [?]

October 28th, 2008

admin
Find a String within a String:
Search a String “a Nice” is Exist or Not within a String “Have a Nice Day” in JAVA
Coding:
String s = “Have a Nice Day”;
if(s.indexOf(“a Nice”)!=-1)
System.out.println(“string exist==>”);
else
System.out.println(“string Not exist==>”);
Popularity: 1% [?]

October 27th, 2008

admin
Pagination Using Display Tag :
If you would like to make use of the display taglib in your own application, do the following
1.Drop the displaytag-version.jar file in your application WEB-INF/lib directory
2.Make sure that following libraries are in your WEB-INF/lib directory (or made available via the classpath to your application server). Refer to the dependencies document for the correct version of these libraries. The following is the list of dependencies:
commons-logging
commons-lang
commons-collection
commons-beanutils
log4j
3.Include this tag in the JSP File
<%@ taglib uri=”http://displaytag.sf.net” prefix=”display”%>
4.Using Display tag the Code is:
1.Header Data Can be given in title and Corresponding Display data will be given in property in display:column tag
Ex:
<display:column property=”name” title=”Name”/>
2.Array List name will be given in name,Default page Size will be given in pagesize and id will denote arraylist variable in display:table tag
<display:table name=”requestScope.arraydetails” defaultsort=”7″ defaultorder=”ascending” pagesize=”10″ id=”list” requestURI=”" >
<display:setProperty name=”paging.banner.group_size”<5>/display:setProperty>
<display:setProperty name=”css.tr.even”<even_grid>/display:setProperty>
<display:setProperty name=”css.tr.odd”<odd_grid>/display:setProperty>
<display:setProperty name=”basic.msg.empty_list” value=” ” / >
<display:setProperty name=”paging.banner.one_item_found” value=” ” />
<display:setProperty name=”paging.banner.all_items_found” value=”Page ” />
<display:setProperty name=”paging.banner.some_items_found” value=” ” />
<display:setProperty name=”paging.banner.no_items_found” value=” ” />
<display:setProperty name=”paging.banner.placement” value=”bottom” />
<display:column property=”name” title=”Name”/>
<display:column property=”age” title=”Age”/>
<display:column property=”designation” title=”Designation”/>
</display:table >
Popularity: 6% [?]

October 27th, 2008

admin
ASP.NET is a web application framework built on the common language runtime used to build dynamic web sites, web applications and XML web services.ASP.NET is the next generation ASP, but it’s not an upgraded version of ASP.
ASP.NET is a program that runs inside IIS and is a part of Microsoft’s .NET platform. ASP.NET allows you to use a full featured programming language such as C# (pronounced C-Sharp) or VB.NET to build web applications easily. An ASP.NET file has the file extension “.aspx” .
ASP.NET makes it simple to use XML for data storage, configuration and manipulation. The tools which are built into ASP.NET for working with XML are very easy to use.
Best of all, ASP.NET pages work in all browsers including Netscape, Opera, AOL, and Internet Explorer.
Visual Studio 2005 adds the productivity of Visual Basic-style development to the Web. Now you can visually design ASP.NET Web Forms using familiar drag-drop-double-click techniques, and enjoy full-fledged code support including statement completion and color-coding. VS.NET also provides integrated support for debugging and deploying ASP.NET Web applications.
Popularity: 1% [?]