Virtualization Part I - Introduction 12 May 2005 00:00 GMTImprovements in technology and increased competition continue to force hardware prices to drop. However, with the recent trend in downsizing and a focus on the bottom line, many Information Technology budgets have also dropped. Everybody is looking for ways to make their money stretch farther. A great solution to this is virtualization, a key technology that allows you to get more for your money.
Source: AspAlliance Introducing Windows Mobile 5.0 11 May 2005 07:00 GMTGet ready for next generation Windows Mobile-based devices. Learn about technologies for native and managed application developers, and download tools to start building Windows Mobile 5.0 applications.
Source: MSDN Post to Another .aspx Page 11 May 2005 04:22 GMTASP.NET pages post back to themselves—even if you place the action attribute in the
Customizing Authentication and Authorization in WSE Using AzMan 11 May 2005 00:02 GMTWeb Services Enhancements (WSE) supports message-based security, policy-based administration, and has the flexibility to move message-exchange out of the HTTP-only world. But despite the combination of support for authentication and authorization for cross-platform principals there's still the question of how to deal with custom principals. AzMan can help.
Source: DevX Bubbling Events Up the Control Hierarchy 11 May 2005 00:00 GMT
The DataGrid control, as you likely know, can easily be configured to add a column of buttons. By adding a ButtonColumn, whenever
one of the DataGrid's buttons in the column is clicked, the Web page posts back and the DataGrid's ItemCommand
event fires. In fact, the same behavior can be noted if you manually add a Button or LinkButton control into a DataGrid
TemplateColumn, as the ButtonColumn class simply adds a Button (or LinkButton) Web control to each row of the DataGrid.
When the Button (or LinkButton) is clicked, it's Command event is raised. But how does the DataGrid know when
this event has been raised so that it can raise it's ItemCommand event in response? The answer is through a
process referred to as event bubbling. Event bubbling is the process of moving an event up the control hierarchy,
from a control low in the hierarchy - such as a Button within the row of a DataGrid - and percolating it up to an ancestor
control - such as the DataGrid. Once the ancestor control has learned of the event it can respond however it sees fit; in
the DataGrid's case, the DataGrid "swallows" the Button's Command event (that is, it stops the bubbling) and
raises its own ItemCommand event in response.
In this article we'll look at how, precisely, event bubbling works in ASP.NET. Event bubbling is a technique that all
server control developers should be aware of. Additionally, it can be used as a means to pass event information from a
User Control to its parent page, as discussed in Handle
Events from Web User Controls (although personally I find it simpler to just use the technique of having the User Control
raise its own events through the standard event firing syntax as discussed at
An Extensive
Examination of User Controls). Read on to learn more!
Read More >
Source: 4GuysFromRolla CodeSnip: Calling a Stored Procedure from ASP.NET 2.0 11 May 2005 00:00 GMTWith ASP.NET 2.0 it is easy to create an ASP.NET page that can pass parameters to a SQL Server stored procedure to insert data into a database. This CodeSnip shows you just how easy it is.
Source: AspAlliance Windows Mobile 5.0 Application Security 10 May 2005 07:00 GMTLearn how to develop an application for a Windows Mobile based device, including how to determine what the security configuration of your device is, and how to sign your application with the appropriate certificate.
Source: MSDN