xaml

A

arunonw3

Please answer me

1. Is XAML maily aiming windows. Why is the controls on double click
not produce the event handlers in the c# file( code behind or
something ...)


2. XAML web browser applications doesnt need IIS? Then can we use it
for server side programming? If yes how is it working?


3.How to use the asp.net objects from xaml (web) page. Or is there
any
other method which is specific to xaml for this functionality
 
C

Cowboy \(Gregory A. Beamer\)

Please answer me

1. Is XAML maily aiming windows. Why is the controls on double click
not produce the event handlers in the c# file( code behind or
something ...)

Primarily windows, but the handlers are a bit different as there is a
definite separation of UI and code. What are you using to code applications?
2. XAML web browser applications doesnt need IIS? Then can we use it
for server side programming? If yes how is it working?

You need a way to serve up the applications. IIS is an easy way, but you can
write your own "web server" if you would like. I would not recommend that
approach.

The benefit of XAML, is you can repurpose the UI from desktop to web rather
easily, especially with WFP (windows forms type) and Silverlight 1.1 (web
forms type).

In addition to Silverlight, there is also XBAP, which is a browser
application.
3.How to use the asp.net objects from xaml (web) page. Or is there
any
other method which is specific to xaml for this functionality


Only in Silverlight 1.1 (which is in alpha). The currently released
Silverlight is driven via JavaScript, not a mini .NET environment.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top