일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- STS
- Java
- scrollView
- jsp
- 웹 서비스
- Apache Lucene
- 이클립스
- 자바
- html
- Bootstrap
- MANTIS
- varags
- Maven
- javascript
- WebView
- 컬럼명
- decompiler
- SpringSource Tool Suite
- Android
- MSsql
- asp.net
- TextBox
- Redirect
- Eclipse
- 안드로이드
- Web Service
- 웹뷰
- MS-SQL
- C#
- 자바스크립트
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
ASPX DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Untitled Page function ShowConfirmation() { if(confirm("Are you want to show the value?")== true) { //Calling the server side code after confirmation from the user document.getElementById("btnAlelrt").click(); } } Code Behind using System; using System.Data; using System.C..
http://msdn.microsoft.com/en-us/library/kw7t0545(v=vs.90).aspx
일반적으로 aspx에서 form 태그를 써서 값을 넘겨도 되지만 부득이하게 코드비하인드에서 POST로 값을 넘겨야 할 경우가 발생한다. 아래의 코드를 이용하면 한방에 해결private void submitForm(string url, string mallId, string mallNo, string orderNo) { System.Web.HttpContext.Current.Response.Write(""); System.Web.HttpContext.Current.Response.Write(string.Format("", mallId)); System.Web.HttpContext.Current.Response.Write(string.Format("", mallNo)); System.Web.HttpConte..