반응형
asp.net 서버 태그를 사용하여, number 타입을 사용하기
I had the same requirement for a mobile website using ASP.NET. After finding no good solution, I tried simply setting type="number"
directly on the textbox. To my surprise, it worked! Incredulous, I created a simple test project to double-check. I ran this line of code in each .NET version:
<!-- this HTML tested in each .NET version -->
<asp:TextBox runat="server" type="number" />
Here are the results:
<!-- ASP.NET 2.0, 3.0, and 3.5 -->
<input name="ctl01" type="text" type="number" />
<!-- ASP.NET 4.0 and 4.5 -->
<input name="ctl01" type="number" />
Bottom line: if you are using ASP.NET 4.0 or newer, just add type="number"
to your textbox.
다음과 같이 사용하면, 해당 <asp:TextBox>가 <input에type="number"로 변화하게 된다.
반응형
'C# > ASP.net' 카테고리의 다른 글
URL중에 http://도메인:PORT 구하기 (0) | 2018.04.27 |
---|---|
WCF Web HTTP Service Help Page만들기 (URI, Method-GET/POST등) (0) | 2017.10.06 |
DB Connection 실패시 나오는 에러 (방화벽이 차단했을경우등) SqlException (0x80131904) (0) | 2017.09.28 |
에러: Object cannot be cast form DBNull to other types. (0) | 2017.08.30 |
c# fileupload exists (파일 존재 여부 체크) Image 파일만 체크 (0) | 2017.06.10 |
entity framework에서 top5만 나오게 하기 (0) | 2017.06.09 |
[.net MVC Core] .Net Core 플랫폼 받기 (0) | 2017.04.28 |
[.net MVC Core] Model의 Data의 DisplayFormat 바꾸기 (날짜, 통화) (0) | 2017.04.26 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)