上面中的id变量是在index页面初始化的时候,通过mvc framework来实现传递的(http://...?id=1)。
上面在form中制定了数据post的action函数ShowPostData,然后是整个的mvc框架将数据通过UpdateModel传递给entity UserIdentity。(注意的是在UserIdentity类中的id使用的是string类型,测试时使用int类型的话,会产生异常,暂时还没有什么好的办法。)。这样在ShowPostData.aspx中就能够使用这些数据。
简单的办法是直接覆盖HandleUnknownAction方法。