Showing posts with label asp technology. Show all posts
Showing posts with label asp technology. Show all posts

Wednesday, November 26, 2008

New ASP.NET Chart Control

Microsoft recently released a cool new ASP.NET server control - - that can be used for free with ASP.NET 3.5 to enable rich browser-based charting scenarios:


To use this new & cool asp.net chart control you need .NET Freamwork 3.5 SP1 installed in your desktop .

Available downloads are:

1. Download Microsoft Chart Controls

2. Download VS2008 tool support for Chart Controls

3. Download Microsoft Chart Control Samples

4. Download Microsoft Chart Controls Documentation


Once installed chart controls() easily find under "Data" tab in VS2008 toolbox, and you can easily decalred a new chart control in asp.net page like another Web Controls of asp.net

supports a rich assortment of chart options - including pie, area, range, point, circular, accumulation, data distribution, ajax interactive, doughnut, and more. You can statically declare chart data within the control declaration, or alternatively use data-binding to populate it dynamically. At runtime the server control generates an image (for example a .PNG file) that is referenced from the client HTML of the page using a element output by the control. The server control supports the ability to cache the chart image, as well as save it on disk for persistent scenarios. It does not require any other server software to be installed, and will work with any standard ASP.NET page.

To get a sense of how to use the control I recommend downloading the Microsoft Chart Controls Sample Project. This includes over 200 ASP.NET sample pages that you can run locally. Just open the web project in VS 2008 and hit run to see them in action - you can then open the .aspx source of each to see how they are implemented.

Read More..

Monday, November 24, 2008

What’s New With Robotics Developer Studio 2008

At the RoboDevelopment Conference and Expo in Santa Clara, California, Microsoft released the new version of Microsoft Developer Studio 2008 (Microsoft RDS), the latest version of the robotics programming platform and the third major release in two years. The toolkit allows developers, whether professional or hobbyists, to create software applications that run on robots.

RDS 2008

In the new version RDS 2008, there are now several new features, including:

• Increased runtime performance.
Performance is improved 1.5 to three times faster in message throughput between services, and services now load two times faster. Developers can now also define more specific message communication between services, reducing network utilization and optimizing the processing of data.

• Improvements to the Visual Programming Language (VPL) tool.
The simple drag-and-drop-based visual programming tool now includes a simple method for defining and configuring distributed applications, making it easier to create applications that can run across networked devices.

• Improvements to the Visual Simulation Environment (VSE) tool.
VSE now includes the ability to record and play back simulations, which allows for easier review of simulation experiences. VSE also adds a new floor-plan editor to simplify the definition of interior structures, and three new sample simulation environments (apartment, outdoor and urban) that enable developers to better test their robot applications. Another new feature is support for importing content from DS SolidWorks® 3-D computer-aided design (CAD) software and Microsoft trueSpace 3-D modeling software.

• Greater development flexibility.
This new release provides support for both Microsoft Visual Studio 2005 and Visual Studio 2008, which makes it accessible to a broad audience of developers. Improved support for running VPL and VSE on 64-bit Windows platforms provides more flexible installation options.

Along with the new release, ABB, a supplier of industrial robots and robotics software, is offering a connectivity package known as ABB Connect to Microsoft Robotics Developer Studio 2008 (ACM). ACM lets robotics students work in a virtual environment in order to design and implement virtual robotics. The package contains all the services needed to build a complete virtual robot controller.

Challenges for Robotics Devs
So now that you have the software, what can you do with it? Visit RoboChamps, of course! At Robochamps, there are a series of challenges for developers which are based in simulation, thus removing the barriers to entry that normally exist when writing code for robots…things like cost and deep hardware knowledge, for example. RoboChamps is built on top of the simulation functionality provided in Microsoft Robotics Developer Studio 2008, which means that participants can program their robots using the .NET languages they are already familiar with.

Read More..

Tuesday, November 18, 2008

Understanding the Virtual Machine Technology

The Orcas March CTP came in Virtual Image format and so the Beta-1 and Beta-2. For many people Virtual Machine is a new teminorlogy. In this post I am trying to help you understand what does this Virtual Machie mean.

While downloading the Virtual Machine files, you must have noticed that Orcas virtual machine requires Virtual PC 2004 SP1 or Virtual PC 2007 or Virtual Server 2005 R2 to work with downloaded files. Any of this software will help to achieve the concept of virtualization; as Orcas CTP/Beta comes in the form of virtual image, so virtualization concept is required to run the Orcas CTP/Beta.

Normally, computers run only one operating system at a time. Applications run on top of the operating system. The operating system uses device drivers to address the computer’s hardware. And the hardware includes every single piece of hardware for example, the mouse and keyboard, processor, memory, disk drives and drive controllers, video cards, network cards, sound card and other physical devices etc. In other words, a computer contains one set of devices, runs one operating system at a time, and has one set of applications on that operating system.

Read More..

Windows Azure Tools for Microsoft Visual Studio 2008 SP1

Microsoft has recentky launced the development tool support for Windows Cloud Computing - Windows Azure.

Windows Azure Tools for Microsoft Visual Studio extend Visual Studio to enable the creation, building, debugging, running and packaging of scalable services on Windows Azure.

Windows Azure Tools for Microsoft Visual Studio includes:

*C# and VB Project templates for building Cloud Services
*Integration with the Development Fabric and Development Storage services
*Debugging Cloud Service Roles running in the Development Fabric
*Building and packaging of Cloud Service Packages
*Browsing to the Azure Services Developer Portal
*Role configuration
*SSL Certificate selection

Read More..

Monday, November 17, 2008

What is difference between ExecuteReader, ExecuteNonQuery and ExecuteScalar.

1. ExecuteReader : Use for accessing data. It provides a forward-only, read-only, connected recordset.

2. ExecuteNonQuery : Use for data manipulation, such as Insert, Update, Delete.

3. ExecuteScalar : Use for retriving 1 row 1 col. value., i.e. Single value. eg: for retriving aggregate function. It is faster than other ways of retriving a single value from DB.

Read More..

Tuesday, November 11, 2008

What’s New in ASP.NET 2.0?

ASP.NET is a programming framework built on the common language runtime that can be used on a server to build powerful Web applications. The first version of ASP.NET offered several important advantages over previous Web development models. ASP.NET 2.0 improves upon that foundation by adding support for several new and exciting features in the areas of developer productivity, administration and management, extensibility, and performance:
Developer Productivity
ASP.NET 2.0 encapsulates common Web tasks into application services and controls that can be easily reused across web sites. With these basic building blocks, many scenarios can now be implemented with far less custom code than was required in previous versions. With ASP.NET 2.0 it is possible to significantly reduce the amount of code and concepts necessary to build common scenarios on the web.

* New Server Controls. ASP.NET 2.0 introduces many new server controls that enable powerful declarative support for data access, login security, wizard navigation, menus, treeviews, portals, and more. Many of these controls take advantage of core application services in ASP.NET for scenarios like data access, membership and roles, and personalization. Some of the new families of controls in ASP.NET 2.0 are described below.

- Data Controls. Data access in ASP.NET 2.0 can be accomplished completely declaratively (no code) using the new data-bound and data source controls. There are new data source controls to represent different data backends such as SQL database, business objects, and XML, and there are new data-bound controls for rendering common UI for data, such as gridview, detailsview, and formview..

- Navigation Controls. The navigation controls provide common UI for navigating between pages in your site, such as treeview, menu, and sitemappath. These controls use the site navigation service in ASP.NET 2.0 to retrieve the custom structure you have defined for your site.

- Login Controls. The new login controls provide the building blocks to add authentication and authorization-based UI to your site, such as login forms, create user forms, password retrieval, and custom UI for logged in users or roles. These controls use the built-in membership and role services in ASP.NET 2.0 to interact with the user and role information defined for your site.

- Web Part Controls. Web parts are an exciting new family of controls that enable you to add rich, personalized content and layout to your site, as well as the ability to edit that content and layout directly from your application pages. These controls rely on the personalization services in ASP.NET 2.0 to provide a unique experience for each user in your application.

Read More..

Monday, November 10, 2008

Microsoft: Scoop On BizTalk Server 2009

Microsoft's BizTalk Server 2009 is on track for availability during the first half of next year with a full public Community Technology Preview of the business process management server product slated for this year's fourth quarter, Microsoft said Friday. Microsoft also provided more details about new capabilities in the software, which until now Microsoft had called BizTalk Server 2006 R3.

As it has done with some of its other products, Microsoft is committing to a regular and more transparent development schedule for BizTalk Server, said Burley Kawasaki, product management director for Microsoft's Connected Systems Division. Microsoft wants to fall into a "rhythm of releases" for BizTalk Server, delivering a major upgrade every two years as it plans to do with Windows Server and other products. "We're trying to be more predictable for our enterprise customers," Kawasaki said.

Microsoft has begun planning for the product release that follows BizTalk Server 2009, code-named "BizTalk Server 7," Kawasaki said, and will start providing customers and channel partners with information about that release early next year. Priorities for that and future generations of the product include more tools for enterprise connectivity, support for the latest capabilities in the Windows platform such as messaging and workflow, and improved visibility throughout a business for such applications as business intelligence and asset tracking.

Enhancements and new capabilities offered in BizTalk Server 2009 generally revolve around improved enterprise connectivity, expanded platform support and improved developer productivity, Kawasaki said. "It's a pretty full release. It helps reinforce the focus on enterprise connectivity."

BizTalk Server 2009 will support Microsoft's new wave of platform systems including Windows Server 2008, SQL Server 2008, Visual Studio 2008 and .Net Framework 3.5, as well as supporting Microsoft's new Hyper-V server virtualization software. Managing the life cycle of applications developed for BizTalk will be easier with a new release of ESB Guidance 2.0 patterns and practices.

The new software will offer improved connectivity both inside and outside the firewall through a new UDDI v3-compliant services registry; new and enhanced line-of-business adapters for SQL Server, Oracle (NSDQ:ORCL)'s E-Business Suite and other applications; enhanced integration with host systems such as IBM (NYSE:IBM) WebSphere MQSeries and CICS; and a new mobile RFID platform. The software will also provide enhanced business-to-business capabilities with updates to its EDI, AS2 and SWIFT protocols.

Read More..

Friday, November 7, 2008

ASP.NET Is The Latest Version Of ASP Technology

ASP.NET is the next generation ASP, but it's not an upgraded version of ASP. ASP.NET is an entirely new technology for server-side scripting. It was written from the ground up and is not backward compatible with classic ASP.ASP.NET is the major part of the Microsoft's .NET Framework.
ASP.NET is a server side scripting technology that enables scripts (embedded in web pages) to be executed by an Internet server.

•ASP.NET is a Microsoft Technology
•ASP stands for Active Server Pages
•ASP.NET is a program that runs inside IIS
•IIS (Internet Information Services) is Microsoft's Internet server
•IIS comes as a free component with Windows servers
•IIS is also a part of Windows 2000 and XP Professional

ASP.NET 2.0 improves upon Asp.Net by adding support for several new features and ASP.NET 3.0 is not a new version of ASP.NET. It's just the name for a new ASP.NET 2.0 framework library with support for Windows Presentation Foundation, Windows Communication Foundation, Windows Workflow Foundation; and Windows Card Space.

Benefits of ASP.Net

•ASP.NET has better language support, a large set of new controls and XML based components.
•ASP.NET provides increased performance by running compiled code.
•ASP.NET code is not fully backward compatible with ASP.
•Event-driven programming
•User authentication, with accounts and roles
•Higher scalability
•Easier configuration and deployment


Read More..