I have a website which has member login written in MVC4 .NET, it uses the standard WebSecurity login. Each member has products . Basically I want to create an app that allows a user to login and then download their products in a new view.
I cannot find any examples with this functionality on mono-droid samples, can anyone provide assistance or direction? I cannot even seem to direct to a new Layout, Does each layout need an activity? If so how do you define this to a Layout:
I have this below:
[Activity(Label = "Products" , MainLauncher = true , Icon = "@drawable/icon")]
public class Activity1 : Activity
{
int count = 1;
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Login);
// Get our button from the layout resource,
// and attach an event to it
Button button = FindViewById<Button>(Resource.Id.MyButton);
button.Click += this.Login;
}
private void Login(object sender , EventArgs e)
{
// LOGIN TO WEB SITE, IF SUCCESSFULL
// go to main
SetContentView(Resource.Layout.Main);
//else toast incorrect password
}
Any help would be appreciated, I assume LINQ to SQL cannot be used to connect to the Web Server database?