This question is locked. New answers and comments are not allowed.
I have a page in HTMLPlasceHolder,when page submit a form(POST),how i can get POST data or get some event on current silverlight Application.
<Grid Background="Azure"> <Grid.RowDefinitions> <RowDefinition Height="auto" /> <RowDefinition Height="auto" /> <RowDefinition Height="auto" /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> </Grid.ColumnDefinitions> <TextBlock Grid.Column="0" Grid.Row="0" Text="UserName:"></TextBlock> <StackPanel Orientation="Horizontal" Grid.Column="1" Grid.Row="0"> <TextBlock x:Name="lblUserName" ></TextBlock> </StackPanel> <Border Grid.ColumnSpan="2" Grid.Row="2" Background="White" BorderBrush="Black" BorderThickness="2"> <telerik:RadHtmlPlaceholder Name="frameTask" SourceUrl="http://localhost:55782/default.aspx" Loaded="frameTask_Loaded" /> </Border> </Grid>