我有一个网站,它的会员登录是用 MVC4 .NET 编写的,它使用标准的 WebSecurity 登录。每个成员都有产品。基本上我想创建一个允许用户登录然后在新视图中下载他们的产品的应用程序。
我在单机器人样本上找不到任何具有此功能的示例,任何人都可以提供帮助或指导吗?我什至不能直接指向一个新的布局,每个布局都需要一个活动吗?如果是这样,您如何将其定义为布局:
我在下面有这个:
[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
}
任何帮助将不胜感激,我假设 LINQ to SQL 不能用于连接到 Web 服务器数据库?