单击按钮链接后直接进入链接页面,我可以进行加载屏幕吗?
<div class="col-md-3">
<a href="@Url.Action("PCApplicationRecord","Record")" class="btn btn-info btn-block">
<span class="fa fa-desktop"></span>
PC Application
</a>
</div>
Run Code Online (Sandbox Code Playgroud)
就我在互联网上看到的内容而言,加载屏幕或等待屏幕通常用于提交.
我很难使用Linq Select为列表生成序列号.
我试图使用一个正常的变量,然后在里面增加它,但它不起作用.
var grouped = (from x in jOMACDetails
group x by new { x.MAWorkCode, x.ConstructionNumber } into g
let f = g.First()
select new UtilityReceivingReportDetailEntity
{
DefaultAccountCode = string.IsNullOrWhiteSpace(f.AccountTitleCode) ? f.AccountTitleName.Trim() : f.AccountTitleCode.Trim(),
CompanyID = CurrentContext.CurrentCompanyID,
RRNumber = socnumber.Trim(),
RRSequenceNumber = (short)???, // <---- Here is the container the I need to be sequence
//...............
}).AsEnumerable();
Run Code Online (Sandbox Code Playgroud)
有人可以帮我这个吗?提前致谢