Web Program159 listbox 정렬 2 역시 구글이 최고인거 같다. 구글신의 도움으로 정렬에 막강한 방법을 찾았다. sortedlist 가 여러모로 쓸모있어 보인다. 중복키가 등록되지 않으니 주의해야 한다. private void listBoxSort() { SortedList st = new SortedList(); foreach (ListItem lst in this.lstStudioName.Items) { st.Add(lst.Text, lst.Value); } lstStudioName.DataSource = st; lstStudioName.DataValueField = "Value"; lstStudioName.DataTextField = "Key"; this.lstStudioName.DataBind(); } 2009. 6. 16. listbox 정렬 listbox 의 텍스트 데이타의 정렬 처리 value 값이 있을 경우 에러가 발생하니 주의하자. ArrayList alItems = new ArrayList(); foreach (ListItem lst in this.lstStudioName.Items) { alItems.Add(lst.Text); } alItems.Sort(); this.lstStudioName.DataSource = alItems; this.lstStudioName.DataBind(); 2009. 6. 16. 웹의 html 소스를 읽어오자 웹의 html 소스를 읽어오자 HttpWebRequest request = (HttpWebRequest)WebRequest.Create(serverURL); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); StreamReader streamreader = new StreamReader(response.GetResponseStream()); string strData = streamreader.ReadToEnd(); Response.Write(strData); 2009. 6. 9. GridView: Creating groups and summaries with 2 lines of code gridview 의 날개를 단거 같다.. group, summary 등등 다 된다.. 제작자에게 감사를 느낀다. 원문 : http://www.agrinei.com/gridviewhelper/gridviewhelper_en.htm GridView: Creating groups and summaries with 2 lines of code GridView has a lot of improvements over the DataGrid but it still lacks some very important features. A recurring requirement not available in the GridView is to create groups and summaries. To create summarie.. 2009. 6. 9. 이전 1 2 3 4 5 6 7 8 ··· 40 다음