일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 이클립스
- 윈도우
- DataGrid
- aspnet
- oracle
- 단축키
- replace()
- SSRS
- javascript
- c#
- windows
- 오라클
- 리포팅서비스
- CONVERT()
- ASP
- 마이크로소프트
- MS
- MSSQL
- 윈폼
- IIS
- attr()
- jQuery
- 자바스크립트
- Excel
- 프로시저
- Winform
- 비주얼스튜디오
- 엑셀
- 태그를 입력해 주세요.
- microsoft
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] Control '컨트롤명' of type 'TextBox' must be placed inside a form tag with runat=server 본문
[ASP.NET] Control '컨트롤명' of type 'TextBox' must be placed inside a form tag with runat=server
뽀&쏭 2015. 11. 23. 12:18에러내용.
HTML 컨트롤을 서버 컨트롤로 변경해 주었더니 발생하는 에러메시지
========================================================
Error Message: Control 'tblenFrTop' of type 'TextBox' must be placed inside a form tag with runat=server.
Stack Trace:
at System.Web.UI.Page.VerifyRenderingInServerForm(Control control) at System.Web.UI.WebControls.TextBox.AddAttributesToRender(HtmlTextWriter writer) at System.Web.UI.WebControls.WebControl.RenderBeginTag(HtmlTextWriter writer) at System.Web.UI.WebControls.TextBox.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) at System.Web.UI.Control.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) at System.Web.UI.Page.ProcessRequestMain()
========================================================
조치사항.
<form method="post" name="frmPopupManage" id="frmPopupManage" runat="server">
와 같이 폼 태그에 runat="server" 가 빠져있는 경우 서버컨트롤을 인식하지 못하여 발생하는 것이였다 @.@
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] The project type is not supported by this installation (0) | 2015.11.25 |
---|---|
[ASP.NET] Repeater - ItemDataBound 이벤트에서 Label 컨트롤을 찾아 링크 걸어줄때의 방법 (0) | 2015.11.25 |
[ASP.NET] Button Control 유용한 속성 (UseSubmitBehavior) (0) | 2015.11.23 |
[ASP.NET] SQL Server Dependency Cache 설정 (0) | 2015.11.23 |
[ASP.NET] Data Control (GridView, DataList, Repeater) - HeaderTemplate에 있는 컨트롤 찾기(FindControl) (0) | 2015.11.15 |