본문 바로가기

행복한 가온이 다온이 아비..

(570)
반응형
New ASP.NET Charting Control : 공짜 차트 New ASP.NET Charting Control: New ASP.NET Charting Control: Microsoft recently released a cool new ASP.NET server control - - that can be used for free with ASP.NET 3.5 to enable rich browser-based charting scenarios: Download the free Microsoft Chart Controls Download the VS 2008 Tool Support for the Chart Controls Download the Microsoft Chart Controls Samples Download the Microsoft Chart Contr..
ASP.NET AJAX Control Toolit 빌드시 에러 ASP.NET AJAX Control Toolit 빌드시 에러 VS 2008에서 ASP.NET AJAX Control Toolit 빌드시 TemplateVSI에서 아래와 같은 에러가 발생 할 경우 Could not load file or assembly 'vjslib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Visual J# Redistributable Packages 를 설치하세요. http://msdn.microsoft.com/en-us/vjsharp/bb188598.aspx Download th..
ASP.NET 용 AJAX Control Toolkit 1.0 실버라이트와 닷넷2009/01/19 08:09 ASP.NET 용 AJAX Control Toolkit 1.0 ASP.NET 용 AJAX Control Toolkit 라는게 있었는데, VS2008에 기본으로 있는게 아니었음 ㅠㅠ 이건 비공식적인 도구인듯.. 따라서 , AJAX Control Toolkit 을 웹에서 받아서, VS2008 도구 상자에 추가해야함 그 방법은 MSDN에 아래와 같이 나와있더라.. 아래는 2.0용 AJAX Control Toolkit임..^^ ASP.NET AJAX Control Toolkit 어셈블리 설치 현재 버전의 ASP.NET AJAX Control Toolkit 다운로드합니다. Control Toolkit은 Codeplex 웹 사이트에서 사용할 수 있습니다. Windows..
꿈꾸는 컴퓨터 by EHXM ~ FLEX 무료 개발환경 구축 ( Adobe Flex Builder 3, Flashdevelop 3 ) ~ FLEX의 개발환경으로는 FLEX SDK 3 + Flash Develop 3 + Flash Player Debugger FLEX Builder 3 / Eclipse plugin 정도로 볼 수 있는데, Flex Builder는 유로로 Flex Builder 3 Professional edition 의 가격은 $699이지만 학생에 한해서 무료로 배포받을 수 있다. Flex Builder는 Adobe에서 개발한 Eclipse기반 개발 툴로 개발의 생산성을 고려한다면 Flex Builder를 가장 추천한다. 하지만 학생이 아니고, $699의 가격이 부담되는 가격이라면 Flash Develop을 이용해도 무료로 강력한 Flex개발 환경을 구축할 수 있다. 그럼, 두가지 방법에 대해서 개발환경을 구축해 보겠습니다...
DataTable DataTable dt = new DataTable(); DataRow dr = dt.NewRow(); dt.Columns.Add("index"); for (int i = 0; i < colIndex; i++) { dr[i] = i.ToString(); } dt.Rows.Add(dr); return dt;
DropDownList Inside GridView(Mothod 1) In one of my previous articles I explained that how you can embed a DropDownList inside the GridView control. You can check out the article at Accessing DropDownList inside the GridView Control. If you look closely you will notice that all the DropDownList inside the GridView contains the same information. In this article I will demonstrate that how you can have DropDownList inside the GridView ..
Web Things Considered: DropDownList inside a GridView (or DataGrid) Web Things Considered Wednesday, September 14, 2005 DropDownList inside a GridView (or DataGrid) I'm still coming up to full speed on ASP.NET, as evidenced by a conversation I had yesterday about Grids and DropDownLists and their events. In the interest of reinforcing the concepts, I've implemented a sample page and am summarizing it here to further commit it into my brain. The page requirements..
엑셀 마지막 ROW, COLUMN COUNT 기본 형식 WorkSheet.UsedRange.Rows.Count 예 Excel.Worksheet wsh = sheets.ActiveSheet; int rowindex = 0, colindex = 0; rowindex = wsh.UsedRange.Rows.Count; colindex = wsh.UsedRange.Columns.Count; 에서 삽입
ASP.NET 엑셀출력 - stoock님의 노트 ASP.NET 엑셀출력 //-- ASP.NET에서 엑셀출력하기 protected void btnExcel_Click(object sender, ImageClickEventArgs e) { if (ConditionInfoDataSet.Tables["Condition"].Rows.Count > 0) { Response.Clear(); Response.AddHeader("content-disposition", "attachment;filename=ExcelData.xls"); Response.Charset = ""; // If you want the option to open the Excel file without saving then // comment out the line below // Respons..
Visual C#에서 Excel을 자동화하여 배열을 통해 일정 범위의 데이터를 채우거나 가져오는 방법 Visual C#에서 Excel을 자동화하여 배열을 통해 일정 범위의 데이터를 채우거나 가져오는 방법 한 번에 하나씩 셀을 채우지 않고 여러 셀 범위를 채우려면 Range 개체의 Value 속성을 2차원 배열로 설정하면 됩니다. 마찬가지로 Value 속성을 사용하여 한 번에 여러 셀에 대한 2차원 배열 값을 가져올 수 있습니다. 다음 단계에서는 2차원 배열을 사용하여 데이터를 설정하고 검색하는 과정을 보여 줍니다. Microsoft Excel용 자동화 클라이언트 빌드 Microsoft Visual Studio 2005 또는 Microsoft Visual Studio .NET를 시작합니다. 파일 메뉴에서 새로 만들기를 누르고 프로젝트를 누릅니다. Visual C# 프로젝트 형식에서 Windows 응용 프로..