ĐÀO TẠO DOANH NGHIỆP : SỞ KHOA HỌC CÔNG NGHỆ TỈNH ĐỒNG NAI

ENTERPRISE TRAINING: DONG NAI DEPARTMENT OF SCIENCE AND TECHNOLOGY.

123

Wednesday, August 6, 2014

JQUERY

1. Basic JQUERY 2. How to get selected value dropdownlist (server control) jquery 3. ZTree in SharePo...

get selected value dropdown jquery

How to get selected value of DropDownList (server control) using JQuery $("select[id$=ddlContentType]").change(function () { var selectedval = $('select[id$=ddlContentType] option:selected').text(); alert(selectedval); ...

Front End

1.  JQUERY 2.  JSON 3.  ...

Sharepoint 2010 - File Uploading with HttpFileCollection

Upload document to sharepoint library using HttpFileCollection Hello everybody, Today I post this article to client can upload document from their computer, if we use FileUpload1.PostedFile.FileName method we can’t upload document. Because, that code only execute in server (server setup sharepoint). So I write this article using HttpFileCollection. See details:   Code inline <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %> <%@...