如果我在Visual Studio 2013中有現有項目,如何更改身份驗證?在新的項目設置過程中,有一個「更改認證」按鈕,但我無法找到現有項目的等效項目。Visual Studio 2013更改現有項目的身份驗證
23
A
回答
0
直到有人想出了一個更好的答案:
編輯你的web.config和FederationMetadata.xml手動。
0
如果你的項目是ASP.NET MVC,並且在2013年使用新模板,它應該在OWIN上運行,這樣就有一個部分類的啓動看看裏面,如果你有它,有一個文件 Startup.Auth的.cs是部分啓動的還有我這個
public partial class Startup
{
// For more information on configuring authentication, please visit http://go.microsoft.com/fwlink/?LinkId=301864
public void ConfigureAuth(IAppBuilder app)
{
// Enable the application to use a cookie to store information for the signed in user
app.UseCookieAuthentication(new CookieAuthenticationOptions()
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Authentication/Login")
});
// Use a cookie to temporarily store information about a user logging in with a third party login provider
app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
// Uncomment the following lines to enable logging in with third party login providers
//app.UseMicrosoftAccountAuthentication(
// clientId: "",
// clientSecret: "");
//app.UseTwitterAuthentication(
// consumerKey: "",
// consumerSecret: "");
//app.UseFacebookAuthentication(
// appId: "",
// appSecret: "");
//app.UseGoogleAuthentication();
}
}
在那裏,是你的驗證配置
+0
這假定已經通過軟件包管理器控制檯安裝了「開放的.NET接口」(Owin): 安裝包Owin –
8
這可以從項目屬性來完成。我張貼的鏈接article which explains how to do this.
+2
查看屬性窗口中的section header,它是* Development Server *。問題是關於項目的認證,而不是服務器的。 – Travis
相關問題
- 1. 如何在現有項目中更改Visual Studio 2013中的身份驗證
- 2. 身份驗證從Visual Studio
- 3. 將Visual Studio 2015中的ASP.NET Web API身份驗證添加到現有項目
- 4. Visual Studio 2013更改SharePoint項目指南
- 5. owin身份在Visual Studio 2013
- 6. Visual Studio 2013和Github帳戶身份驗證不起作用
- 7. Sharepoint 2013身份驗證
- 8. ASP.NET身份更改驗證
- 9. Lightswitch部署(Visual Studio 2013)不具有身份驗證的第3層
- 10. Visual studio2010 CrystalReports身份驗證?
- 11. Xamarin Studio的身份驗證
- 12. 現有項目中的django社交身份驗證
- 13. 使用Haskell向現有的Yesod項目添加身份驗證
- 14. 如何更改目標在Visual Studio 2013
- 15. 項目安裝Visual Studio 2013更新2
- 16. 更改Visual Studio 2008附帶的SQL Sever 2005的身份驗證模式
- 17. 具有多因素身份驗證的Visual Studio AWS工具包?
- 18. NTLM身份驗證Android Studio
- 19. 現有.net Web應用程序需要更改身份驗證
- 20. Django的身份驗證後端更改
- 21. 路由更改的身份驗證
- 22. 在Visual Studio中更改我的項目安裝路徑(Express 2013)
- 23. 使用Cookie身份驗證的項目中的基本身份驗證
- 24. 無法從Visual Studio連接到CRM 2013 on premise。身份驗證失敗
- 25. angularjs WebAPI身份驗證項目模板
- 26. 將現有的打字稿項目導入到visual studio 2013中
- 27. 如何將Visual Studio 2013項目降級到Visual Studio 2008項目?
- 28. 如何更改Visual Studio 2008中現有項目的名稱?
- 29. 無法使用Visual Studio 2013對Visual Studio Team Services(VSO)中的Nuget Feed進行身份驗證
- 30. Laravel 5身份驗證更改表列
在Visual Studio 2013,我會重新運行身份和訪問工具,可從該項目上右擊。 – Travis
你的意思是VS 2012?在VS 2013中右鍵點擊什麼都沒有顯示! – nzpcmad
@nzpcmad,是的,啊! VS2012有IATool。 VS2013什麼也沒有。 :-( – Travis