I have a list of object that is created in my asp.net website project, I need to send it to my silverlight application which is a part of the same solution. How can I do this?
This tutorial should answer your question:
http://www.dotnetfunda.com/articles/article218.aspx
Related
I am starting new project with angularjs with webapi. This project will be e-commerce site. There is iOS and Android app also. We are going to develop APIs so that Android and iOS team can consume our APIs. Also we are going to consume APIs using angularjs for web application. I need some inputs before starting project. I am planning to design separate solutions for APIs and my web application. I am using visual studio for development environment for front end. I am confused about which template should I use in vs2015 to develop front end? My front-end will contains angular js files,HTML pages and CSS files. Second point is there is a Arabic version of this website so I am storing all Arabic words in resource file. Where should I store my resource files? In API project or front end project? May I get some inputs to develop solution architecture? Also what is the standard way of angularjs project folder structure? Any help would be appreciated. Thank you.
I'm trying to use SimpleMembershipProvider to manage the authentication process of my mobile application.
I generated the project using Mobile template, but this doesn't generated the same files of the Internet application template. It doesn't created the folder Filters with InitializeSimpleMembershipAttribute.cs file and the web.config, AccountController and AccountModel are different.
Can I use SimpleMembershipProvider with mobile applications? If yes, how should I do this? If not, what is the alternative?
You can use the SimpleMembershipProvider in your mobile application. This article provides complete instructions on how to do this and provide links to an example VS project that can be downloaded.
How can i get the nodes out of umbraco in a winforms app?
Basically, I want to use umbraco as dataentry, and have a winforms/wpf application visualize the data that was stored in umbraco. Can someone point me in the right direction?
Yes, you could do that using the Umbraco .NET APIs. Just include the correct Umbraco dlls as references and then you can load content or media and manipulate it using the API.
See more on the API in the Documentation section on Our Umbraco:
http://our.umbraco.org/documentation/Reference/
In Asp.net MVC you can do:
[Authorize]
public class someController{}
Is there a way you can do this in silverlight pages? I saw a guy do this with his own code here. Is there anything built in silverlight like this?
Here is an article that give a decent overview of using ASP.NET Membership from within Silverlight:
http://www.silverlightshow.net/items/Leveraging-the-ASP.NET-Membership-in-Silverlight.aspx
I just need a help regarding the communication between the silverlight plugin which uses webcam and gives response to the mvc application.I just need the breakpoints to be hitted on the silverlight project run mode that are not hitting for the moment.
Any help will be highly appreciated..
On Solution Explorer of Visual Studio right click on your web project and select Properties. Go to the Web tab. In the bottom under Debuggers check Silverlight checkbox. After that you can debug your Silverlight application.