Wednesday, October 5, 2011

What is the life?


Life definition for confused people : Life's like a circle. Which has no end 
Life definition for normal people : Life's like a cycle. Just enjoy padding smoothly 
Life definition for rude people : Life's like a sea. If you'll swim deeper then you'll sink
Life definition for ambitious people: Life's like a goal post. Just kiss it after every goal.
Life definition for mean people: Life's like a money. if you do not invest then automatically you will be happy.
Life definition for love people: Life's like a sky. Which has no limit.
and
so on
Life is life which doesn't have a correct definition... Just enjoy pal. :D :D :D

Sunday, July 10, 2011

Joomla 1.6 Extension for Sql Server

Joomla is content management system (CMS), which enables you to build Web sites and powerful online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla the most popular Web site software available.

Joomla 1.7 Alpha Released. click here to download

What’s new in Joomla 1.7 so far?
One of the major goals of Joomla 1.7 was to separate the Joomla Platform, that is the engine upon which the Joomla CMS runs, into it’s own product. The separation of the platform from the CMS, and its subsequent reinsertion, was completed last month. The new Joomla Platform includes many new features that will be of interest to developers. More information about those features and the platform will be made available closer to the release date.

Other features have been submitted to the Joomla Feature Tracker by members of the community and several of those are being reviewed for inclusion. Some have already been added to the 1.7 alpha package.

Compared to previous huge releases, such as Joomla 1.5 and Joomla 1.6, Joomla 1.7 is going to be a relatively gentle release with no big surprises.

New features - CMS
  • Add support to log deprecated API (Andrew Eddie)
  • JToolBarHelper functions for Save and Create New and Save as Copy (Joseph LeBlanc)
  • Mod_custom with backgroundimages (Angie Radtke)
  • Allow preselection of categories in com_content (Peter Kneisel)
  • Add JFormRuleOptions rule to validate type="list" parameters (Mark Dexter)
  • Make copy/move consistent across components (Michael Babker)
  • Update TinyMCE to version 3.4 (Rouven Weßling)
  • New parameters are present for the language switcher (Jean-Marie Simonet)
  • Translation teams can now include a css file in their admin pack to change the fonts used in back-end (Jean-Marie Simonet)
  • Language manager now displays installed language in tabs (Michael Babker)
What are some advanced ways I can use Joomla?
Many companies and organizations have requirements that go beyond what is available in the basic Joomla package. In those cases, Joomla's powerful application framework makes it easy for developers to create sophisticated add-ons that extend the power of Joomla into virtually unlimited directions.

The core Joomla framework enables developers to quickly and easily build:
  • Inventory control systems
  • Data reporting tools
  • Application bridges
  • Custom product catalogs
  • Integrated e-commerce systems
  • Complex business directories
  • Reservation systems
  • Communication tools
Soon I will share a Joomla Extension for SQL SERVER. :)

Monday, April 25, 2011

c# - To Insert Data in Textboxes using SqlDataSource


DataView dvSql = (DataView)SqlDataSource1.Select(DataSourceSelectArguments.Empty);
         foreach (DataRowView drvSql in dvSql)
                {
                    txttextbox1.Text = drvSql["col1"].ToString();
                    txttextbox2.Text = drvSql["col2"].ToString();
                    txttextbox3.Text = drvSql["col3"].ToString();
                }