Last active
December 15, 2015 21:29
-
-
Save devendrasv/2b5cb9e05b0a0c4531d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%-- The following 4 lines are ASP.NET directives needed when using SharePoint components --%> | |
<%@ Page Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" MasterPageFile="~masterurl/default.master" Language="C#" %> | |
<%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register TagPrefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%-- The markup and script in the following Content element will be placed in the <head> of the page --%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server"> | |
<script type="text/javascript" src="../Scripts/jquery-1.7.1.min.js"></script> | |
<script type="text/javascript" src="/_layouts/15/sp.runtime.debug.js"></script> | |
<script type="text/javascript" src="/_layouts/15/sp.debug.js"></script> | |
<!-- Add your CSS styles to the following file --> | |
<link rel="Stylesheet" type="text/css" href="../Content/App.css" /> | |
<!-- Add your JavaScript to the following file --> | |
<script type="text/javascript" src="../Scripts/App.js"></script> | |
</asp:Content> | |
<%-- The markup and script in the following Content element will be placed in the <body> of the page --%> | |
<asp:Content ContentPlaceHolderID="PlaceHolderMain" runat="server"> | |
<div> | |
<p id="message"> | |
<!-- The following content will be replaced with the user name when you run the app - see App.js --> | |
Search Students | |
</p> | |
</div> | |
<div id="SearchStudentsDiv" style="display: none"> | |
<input type="text" style="width: 200px" id="query" /> | |
<input type="button" value="Search For Students" | |
onclick="executeQuery($get('query').value);" /> | |
</div> | |
<div id="StudentsSearchresultsDiv"></div> | |
</asp:Content> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment