xmharrylight:there is a silverlight calender control, how can its selected date be shown in a label which resides on web page. .
You can use HTML DOM for that.
For example:
HtmlDocument _doc; // requires using System.Windows.Browser;
_doc = HtmlPage.Document;
_doc.GetElementById("yourLable").SetAttribute("value", "This is a date from Silverlight ");
xmharrylight:how to changed seleced date by click a button which resides on web page. Thanks.
You can pass the date from ASP.NET to Silverlight using "initParam" . There are a lot of samples how to use "initParam" in our forum..
(If this has answered your question, please click on "Mark as Answer" on this post. Thank you!)
Best Regards,
Michael Sync
Blog : http://michaelsync.net
Feed : http://michaelsync.net/feed