HTML Form Validations

In this blog, we will see HTML form validation code in JavaScript. My another blog on AMP HTML and Angular JS.Form validation for Alphabet only: Sometimes you may require allowing the only alphabet in a particular input field. For Eg first name and last name, a field should not allow any other character apart from … Read more

How to access SharePoint List with List Web Service

SharePoint List Web service allow developers to access, manipulate List and List items through a service url. Generally List web service url format is : http://site/_vti_bin/lists.asmx Now lest start consuming this service and manage SharePoint List. Open this url: http://spsite:1985/_vti_bin/lists.asmx Open Visual Studio 2010. Right click on project and add service reference. Then click on Advanced… … Read more

Bind Drop-down with SharePoint List and display list items in a Gridview

In this blog, I will explain about below point through C# code:1. Bind all list in a dropdown2 Load List items in a Gridview once a user changes list name in dropdown. You need to create a visual webpart in Visual studio 2010. Visual WebPart ASCX code: <asp:DropDownList ID=”ddlList” AutoPostBack=”true” runat=”server”     onselectedindexchanged=”ddlList_SelectedIndexChanged”></asp:DropDownList><p>    <asp:Label … Read more

Difference between Stored Procedure and Function in SQL

Stored Procedure vs Function 1)Functions must return a value. Stored procedure need not be. 2)Stored procedures can be called using EXEC command where as Functions can be called from another SQL Statement. 3)Stored Procedures are precompiled. Functions are not precompiled. 4)Generally Stored procedures are used for executing business logic where as Functions are used to … Read more

How to create site definition in SharePoint 2010

How to create site definition in SharePoint 2010? Let’s start this blog by understanding the difference between Site Definition and Site Template.Site Template is a ready made layout that we can use to create a site. It has pre-defined top nav, quick launch, list etc. Site Definition is a custom layout that we can create. … Read more

SharePoint Interview Questions and Answers

Below are few important SharePoint interview questions and their answers. SharePoint Interview Questions and Answers Q. Explain Below code  using (SPSite site = new SPSite(SPContext.Current.Web.Url)) // Gets the absolute url of the website           using (SPWeb web = site.RootWeb) //  Gets the root website of site collection using (SPWeb web = site.OpenWeb())// OpenWeb … Read more

Important C# Interview Questions and Answers

In this blog, I have collected important C# interview questions and answers and their answers, which will help you in preparing your interview. If you are an ASP.Net or ASP.Net Core programmer or developer who is preparing for an interview, then believe that you are reading the right blog. Whether you are a fresher or have … Read more

Important ASP.Net Interview Questions and Answers

In this blog, I have collected important ASP.Net interview questions and answers. Q. HTTP Handler vs HTTP Module in ASP.Net HTTP handler is a process which runs against an HTTP request. Based on file extension HTTP handler executes. Custom HTTP handler can be created on specific requirement. Generic Web handler (.ashx) – Default HTTP handler for all … Read more

RSS
YouTube
YouTube
Instagram