I am using silverlight4 app ,i have a requirement like to store the word/pdf file in the database(sqlserver) and successfully i did that and now i want to open the stored file using the corresponding application with my extension.Iam not using OOB ,it that possible to open the file or to store the file in a user selected location.Can anyone plz help me on this?
Thanks in advance.
I would suggest create one .aspx page or HTTPHandler then override ProcessRequest method.
Your Silverlight application will act just like normal client and makes http Request using
in above code
tells browser to prompt for OPEn/Save dialog.
I hope this will work.