본문 바로가기

.NET/ASP.NET

ASP.NET 값넘기기~!!!! 쿼리스트링 Request ViewState 값넘기기 예

반응형
string strUrl = string.Format("./Reply_Board.aspx?Num={0}&Ref={1}&Step={2}&Reforder={3} ", Request["Num"], ViewState["Ref"], ViewState["Step"], ViewState["Reforder"]);

        Response.Redirect(strUrl);