我知道我在搜索问题......哈哈
我需要在login.aspx中调用webmethod定义谁是身份验证表单。但它不起作用(我在localhost中使用IIS)
的Web.config:
<system.web>
<authentication mode="Forms">
<forms loginUrl="login.aspx" name=".ASPXFORMSAUTH"></forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
JS:
$scope.CheckIdentification = function (user) {
$http({ method: typeRquestP, url: window.location.href + '/test', contentType: contentType_, dataType: dtp })
.success(function (data, status, headers, config) {
$scope.test = data.d;
})
.error(function (data, status, headers, config) {
});
};
aspx中的Webmethod:
[WebMethod]
public static string test()
{
return "Great!";
}
我需要你的帮助。 谢谢你提前