0
在網站上,我的頭上有以下代碼,如果用戶已經登錄,那麼鏈接「跟蹤」會將用戶發送到以下鏈接。 我怎樣才能發送像customerid一樣的會話信息?標題位於MVC3 ASP站點上,鏈接指向通過iframe內部顯示的PHP站點。MVC3 ASP在hreff上發佈從ASP到PHP的信息
<li class="al-contact">@if (Model.CurrentUser != null)
{ if(Request.IsAuthenticated)
{
<a href="http://webpilot/content/TrackingSystem_order" target="_self">Tracking</a>
}
} else {
}
</li>