If you Google "AJAX Web 2.0" you'll get over eight million hits, but what technologies will you find in that mix that can truly deliver on the promises of Web 2.0 today? While there's no single definition of Web 2.0, at its heart lays the Internet acting as a platform for social networks, where information can be created and shared in a community of interest.
complete article in here
Friday, August 29, 2008
Is Web 2.0 Possible with Existing Open Source Technologies?
Friday, August 22, 2008
Search Engines Rankings Monitoring
Semonics (Search Engines Rankings Monitoring) service provides you with an affordable solution to measure your website success. The popularity metrics track your web presence and enable informed actions. In addition to other Monitis monitoring services it will provide indispensable value for website owners by providing tools tailored to promote their website, increase reach and boost online sales.
Semonics is a web service; you don't need to worry about installation or maintenance. All your website metrics are available on customizable dashboard rich user interface. Semonics can be used together with other Monitis services such as website traffic, performance and availability monitoring and web analytics.
Tuesday, August 19, 2008
Record Your Family History With farmento.com
Sunday, August 17, 2008
Keynote Systems Helps Enterprises Safely to Join the Mobile and Web-Based Future
for complete article in here
Wednesday, August 13, 2008
Instant Blogging with Bimbl.com
bimbl.com is a very simple instant blog platform. You create an account in 6.2 seconds or so and your space is instantly available to start blogging on. We wish we could be more detailed, but thats it in a nutshell
Tuesday, August 12, 2008
SEC To Recognize Company Web Sites and Blogs As Channel of Distribution
complete article in here
Monday, August 11, 2008
Margin in CSS
The separation between most normal-flow elements occurs because of element margins. Setting a margin creates extra "blank space" around an element. "Blank space" generally refers to an area in which other elements cannot also exist and in which the parent element's background is visible
margin
Values
[
Initial value
not defined
Applies to
all elements
margin can accept any length of measure, whether in pixels, inches, millimeters, or ems. However, the default value for margin is effectively 0 (zero), so if you don't declare a value, by default, no margin should appear
Friday, August 8, 2008
Behind the Scenes at Facebook: Scaling Up FBChat Using Erlang
here for complete article
Thursday, August 7, 2008
Is Web 2.0 Possible with Existing Open Source Technologies?
for more complete article in here
Wednesday, August 6, 2008
SEC To Recognize Company Web Sites and Blogs As Channel of Distribution
The SEC has finally acknowledged that the nature of online information is increasingly interactive, and not static. Henceforth, according to a recommendation by its own Special Counsel in the SEC's Division of Corporation Finance, information appearing on company web sites "does not need to satisfy a printer-friendly standard or be in a format comparable to paper-based information, unless the Commission’s rules explicitly require it
for more complete article in here
Monday, August 4, 2008
Using the FormView Control
After I discuss about DetailsView in my latest post, now I will discuss about FormView Control. You can use the FormView control to do anything that you can do with the DetailsView control. Just as you can with the DetailsView control, you can use the FormView control to display, page, edit, insert, and delete database records. However, unlike the DetailsView control, the FormView control is entirely template driven. The FormView control provides you with more control over the layout of a form. Furthermore, adding validation controls to a FormView is easier than adding validation controls to a DetailsView control.
Example :
< asp:FormView >
id="frmStd"
DataSourceID="srcStd"
Runat="server" >
(ItemTemplate)
(h1)< %# Eval("name") % >< /h1 >
(b)Address :< /b >
< %# Eval("address") % >
(br)
(b)Age :< /b >
< %#Eval("age") % >
< /ItemTemplate >
< /asp:FormView >
Displaying Data with the DetailsView Control
If you want to display a single record of data in a table form with the field names in the left column and the field data in the right column, then the DetailsView control is for you. A DetailsView control renders an HTML table that displays the contents of a single database record. The DetailsView supports both declarative and programmatic databinding.
If you need more control over the appearance of the DetailsView, including the particular order in which columns are displayed, then you can use fields with the DetailsView control. The DetailsView control supports exactly the same fields as the GridView control:
BoundField Enables you to display the value of a data item as text.
CheckBoxField Enables you to display the value of a data item as a check box.
CommandField Enables you to display links for editing, deleting, and selecting rows.
ButtonField Enables you to display the value of a data item as a button (image button, link button, or push button).
HyperLinkField Enables you to display the value of a data item as a link.
ImageField Enables you to display the value of a data item as an image.
TemplateField Enables you to customize the appearance of a data item
Additionally, the DetailsView control contains a field called DataKeyNames.This is a string that represents the name of the primary key field in the data source.