Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Running Smart Clinet With IIS (ASP)

    Hi,
    I am new to Smart Client I want to know how can i use Smart Client with IIS (Using Smart Client Conrols and features in ASP).

    Thanks in advance for the solutions
    With Reagrds
    Parvez Khan

    #2
    Hi Parvez,

    SmartClient controls can be created with normal JavaScript. For example, just adding the following to your .asp or .html page creates a SmartClient button:

    Code:
    <SCRIPT>
    isc.Button.create({ title:"Button", click:"isc.say('Hello World');" });
    </SCRIPT>
    For general information about creating SmartClient components, see the QuickStart Guide.

    For information on how to integrate SmartClient controls with XML services, see the Client-side Integration topic in the SmartClient Reference.

    Comment

    Working...