반응형
'System.Web.UI.Page.RegisterStartupScript(string, string)'은(는) 사용되지 않습니다.
'The recommended alternative is ClientScript.RegisterStartupScript(Type type, string key, string script).
'http://go.microsoft.com/fwlink/?linkid=14202'
2.0으로 업그레이드 한 후에 컴파일을 하면서 이런 메세지가 뜨는 경우가 있는데요.
물론 컴파일에는 문제가 없지만 왠지 찜찜하게 느껴집니다.
Page.RegisterStartupScript(string, string) 되어 있는 것을
Page.ClientScript.RegisterClientScriptBlock( this.GetType() ,string, string) 로 바뀌어 주시고
다시 컴파일 해 보세요. ㅎㅎ
Page.ClientScript.RegisterClientScriptBlock( this.GetType() ,string, string) 로 바뀌어 주시고
다시 컴파일 해 보세요. ㅎㅎ
반응형
'프로그램&코딩' 카테고리의 다른 글
[자바스크립트] 입력한 글자가 숫자, 영어, 특수기호, 한글 인지 체크. (0) | 2009.03.27 |
---|---|
[2.0] 'System.Web.Mail.MailMessage'은(는) 사용되지 않습니다. (0) | 2009.03.27 |
[2.0] 'System.Configuration.ConfigurationSettings.AppSettings' is obsolete.... (0) | 2009.03.27 |
[IE8] IE8에서 작동되지 않는 document.all -> document.getElementById 변경 (0) | 2009.03.25 |
이전 버전(IE6, IE7) 제작 사이트의 IE8 대응 방법 (0) | 2009.03.23 |
[자바스크립트] 알파벳, 숫자 체크 스크립트 (0) | 2009.03.02 |