我有以下剃刀代码:
@{
if (IsPost)
{
string pn=Request.Form["pn"];
if (!string.IsNullOrEmpty(pn)){
/* my code to call the stored procedure with pn as a parameter*/
}
}
}
在页面中,我需要使用 JavaScript / HTML 告诉用户pn
. 无论是空的,还是报告该值已插入数据库。
我怎么做?