Click here to Skip to main content
15,881,859 members
Articles / Web Development / ASP.NET

Passing Parameters between Silverlight and ASP.NET – Part 1

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
31 Jul 2011CPOL4 min read 45.6K   9   1
A description of how to embed Silverlight components in ASP.NET and pass parameters to them

While working with Silverlight applications, we may face some scenarios where we may need to embed Silverlight as a component, like for example, in Sharepoint Webparts or simple we can have the same with ASP.NET. The biggest challenge comes when we have to pass the parameters from ASP.NET to Silverlight components or back from Silverlight to ASP.NET.

We have lots of ways we can do this, like using InitParams, QueryStrings, using HTML objects in Silverlight, etc. All these different techniques have some advantages or disadvantages or limitations. Let's see one by one why we should choose one and what are the ways to achieve the same.

1. InitParams

Let's start with InitParams, start your Visual Studio 2010 IDE, and create a Silverlight Application, give any name. Now go to the ASP.NET WebProject which is used to Host the Silverlight XAP component. You will find lots of different tags are used by Silverlight object as <params> tags. To use InitParams, Silverlight provides us with a tag called InitParams which we can use to pass parameters to Silverlight object from ASP.NET.

XML
<object data="data:application/x-silverlight-2," 
      type="application/x-silverlight-2" 
      width="100%" height="100%">
  <param name="source" value="ClientBin/SilverlightApp.xap"/>
  <param name="onError" value="onSilverlightError" />
  <param name="background" value="white" />
  <param name="minRuntimeVersion" value="4.0.50826.0" />
  <param name="initparams" id="initParams" 
  runat="server" value=""/>
  <param name="autoUpgrade" value="true" />
  <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" 
            style="text-decoration:none">
       <img src="http://go.microsoft.com/fwlink/?LinkId=161376" 
          alt="Get Microsoft Silverlight" 
          style="border-style:none"/>
  </a>
</object>

Here in the code above, I have included an initParam as a param tag (line 6). Now in the page load, I will add a line:

C#
initParams.Attributes.Add("value", "key1=Brij, key2=Mohan");

This basically add a value parameter inside the initParam. So that's all we need in our ASP.NET side, now coming to the Silverlight Code, open the code behind of App.xaml and add the following lines of code.

C#
private string firstKey, secondKey;
private void Application_Startup(object sender, StartupEventArgs e)
{
    if (e.InitParams.ContainsKey("key1"))
        this.firstKey = e.InitParams["key1"];
    if (e.InitParams.ContainsKey("key2"))
        this.secondKey = e.InitParams["key2"];
    this.RootVisual = new MainPage(firstKey, secondKey);
}

This code fetches the init params and passes it to our MainPage.xaml constructor, in the MainPage.xaml, we can use these variables according to our requirement, here in this example, I am simply displaying the variables in a Message Box.

C#
public MainPage(string param1, string param2)
{
    InitializeComponent();
    MessageBox.Show("Welcome, " + param1 + " " + param2);
}

This will give you a sample output as:

image

Limitations

Depending on the browsers, you have some limitation on the overall string length of the parameters you can pass. To get more details on this limitation, you can refer to this link: http://www.boutell.com/newfaq/misc/urllength.html.

2. QueryStrings

To show this example, I am taking the scenario where we have a default.aspx page and we are going to the SIlverlightTestPage.aspx, and we have to work with the parameters which were passed by default.aspx in the SilverlightTestPage.aspx Silverlight Component.

So first, I will add a new page in my application which contains a button with ID =btnNext, and on click of the button, I will redirect my page to my SilverlightTestAppPage.aspx with the required query strings.

Code of Default.aspx is as follows:

C#
protected void btnNext_Click(object sender, EventArgs e)
{
    Response.Redirect("~/SilverlightAppTestPage.aspx?FName=Brij" + "&LName=Mohan");
}

Code of MainPage.xaml.cs is as follows:

C#
public partial class MainPage : UserControl
{
    public MainPage()
    {
        InitializeComponent();
        this.Loaded += new RoutedEventHandler(MainPage_Loaded);
    }
 
    void MainPage_Loaded(object sender, RoutedEventArgs e)
    {
        IDictionary<string, string> qString = HtmlPage.Document.QueryString;
        string firstName = string.Empty;
        string lastName = string.Empty;
        foreach (KeyValuePair<string, string> keyValuePair in qString)
        {
            string key = keyValuePair.Key;
            string value = keyValuePair.Value;
            if (key == "FName")
                firstName = value;
            else if (key == "LName")
                lastName = value;
        }
        MessageBox.Show("Welcome, " + firstName + " " + lastName);
    }
}

Set the Start-up page as Default.aspx, now run the application. This will give you the following output:

image

Since here also, you are using the Query Strings to pass your parameters, so you are depending on the browser capabilities of the length of the query strings it can pass. Here also, you can refer to the limitation which I have mentioned in my previous example for the length of parameters you can use.

3. Using HtmlPage.Document

Silverlight to ASP.NET <—> ASP.NET to Silverlight: To show this, I setup a sample Silverlight Application with Buttons Get Data and Set Data with the Data Text Box. In ASP.NET page, I keep a TextBox to Show how the values passed to and From Silverlight to ASP.NET reflect back. My page with Silverlight control looks like this:

image

When I Say Get Data, it pulls the data from ASP.NET to Silverlight Control Text Box, and when I say Set data, it basically sets the Value from Silverlight Control TextBox to ASP.NET TextBox. Now let's see the code how it is doing.

This is my ASP.NET source code. Here, I have just created a TextBox named : txtData

HTML
<body>
    <form id="form1" runat="server" style="height:100%">
    <div id="silverlightControlHost">
    ASP.NET TextBox:  <input type="text" runat="server" 
                             id="txtData" value="Some Data" />
        <object data="data:application/x-silverlight-2," 
             type="application/x-silverlight-2" width="100%" 
             height="100%">
          <param name="source" value="ClientBin/SilverlightApplication1.xap"/>
          <param name="onError" value="onSilverlightError" />
          <param name="background" value="white" />
          <param name="minRuntimeVersion" value="4.0.50826.0" />
          <param name="autoUpgrade" value="true" />
          <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" 
                       style="text-decoration:none">
               <img src="http://go.microsoft.com/fwlink/?LinkId=161376" 
                 alt="Get Microsoft Silverlight" style="border-style:none"/>
          </a>
        </object><iframe id="_sl_historyFrame" 
          style="visibility:hidden;height:0px;width:0px;border:0px"></iframe>
        </div>
    </form>
</body>

My actual logic for getting and setting the data lies in my Silverlight Control, this is my XAML code with TextBox and Buttons.

XML
<Grid x:Name="LayoutRoot" Background="White" 
       Height="100" Width="450" VerticalAlignment="Top">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="110" />
        <ColumnDefinition Width="110" />
        <ColumnDefinition Width="110" />
        <ColumnDefinition Width="110" />
    </Grid.ColumnDefinitions>
    <TextBlock Text="Silverlight Text Box: " Grid.Column="0" 
      VerticalAlignment="Center"></TextBlock>
    <TextBox x:Name="DataText" Width="100" 
      Grid.Column="1" Height="20"></TextBox>
    <Button x:Name="GetData" Width="100" 
    Click="GetData_Click" 
      Grid.Column="2" Height="30" 
      Content="Get Data"></Button>
    <Button x:Name="SetData" Width="100" 
    Click="SetData_Click" 
      Grid.Column="3" Height="30" 
      Content="Set Data"></Button>
</Grid>

Now we have to write few lines of Button Events for Get Data and Set Data which basically make use of Windows.System.Browser namespace.

C#
private void GetData_Click(object sender, RoutedEventArgs e)
{
    DataText.Text = HtmlPage.Document.GetElementById(
      "txtData").GetProperty("value").ToString();
}
 
private void SetData_Click(object sender, RoutedEventArgs e)
{
    HtmlPage.Document.GetElementById(
      "txtData").SetProperty("value", DataText.Text);
}

That’s it so when we run this application, my Form will look like this:

image

4. Using Object Serialization

This is useful when we want to pass Objects of Data from our ASP.NET application to Silverlight Controls and back. This basically uses the above technique I mentioned in Part 3 above. Since this itself is a lengthy topic so I am going to cover the details of this in Part 2 of this Post with Sample Code Example very soon.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Mphasis Limited
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to invoke asp.net function from silver light Pin
vinodvc5@yahoo.com23-Feb-12 20:58
vinodvc5@yahoo.com23-Feb-12 20:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.