public actionresult index(string id, nullableother)
上面中的id變數是在index頁面初始化的時候,通過mvc framework來實現傳遞的(http://...?id=1)。
// 這個是在頁面初始化的時候呼叫,通過整個的framework // 實現將整個的資料傳遞到頁面showpostdata.aspx public actionresult showpostdata()
public class useridentity public string name public string password }
上面在form中制定了資料post的action函式showpostdata,然後是整個的mvc框架將資料通過updatemodel傳遞給entity useridentity。(注意的是在useridentity類中的id使用的是string型別,測試時使用int型別的話,會產生異常,暫時還沒有什麼好的辦法。)。這樣在showpostdata.aspx中就能夠使用這些資料。
id:<%= ((firstmvc.models.useridentity)this.viewdata["identity"]).userid %>
name:<%= ((firstmvc.models.useridentity)this.viewdata["identity"]).name%>
password:<%= ((firstmvc.models.useridentity)this.viewdata["identity"]).password%>
簡單的辦法是直接覆蓋handleunknownaction方法。
protected override void handleunknownaction(string actionname)
public actionresult tomicrosoft()
controller的幾個例項
上面中的id變數是在index頁面初始化的時候,通過mvc framework來實現傳遞的 http id 1 上面在form中制定了資料post的action函式showpostdata,然後是整個的mvc框架將資料通過updatemodel傳遞給entity useridentity。注意的是在...
幾個SQL 的例項
一 某個資料庫中,有些資料,為了方便使用,把某幾個字母替換 如 io0011中把i替換成1 把o替換成0 use aa gocreate table card id int not null primary key,password varchar 10 values 1,ooi22i insert...
SpringMvc的Controller的返回值
controller方法返回值 指定返回到哪個頁面,指定返回到頁面的資料 1 modelandview modelandview.addobject itemlist list 指定返回頁面的資料 modelandview.setviewname itemlist 指定返回的頁面 2 string ...