User-1197627400 posted
Hi all,
I am trying to build following sample.
https://msdn.microsoft.com/en-us/library/gg695790(v=crm.7).aspx
My Solution looks like below for DisplayCreateContactView.
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="WebForm_FromSavedQuery.aspx.cs" Inherits="WebApplication1.WebForm_FromSavedQuery" %>
<asp:Content ContentPlaceHolderID="HeadContent" runat="server" />
<asp:Content ContentPlaceHolderID="MainContent" runat="server">
<asp:ScriptManager runat="server" />
<crm:CrmDataSource ID="Contacts" runat="server" />
<crm:CrmEntityFormView DataSourceID="Contacts" EntityName="contact" SavedQueryName="Create Contact Webform" runat="server" />
</asp:Content
1. How I can Perform basic CRUD operation from above code on Form of submit button Click?
2. Also, Can I use fileuploader to upload the document from csv file to perform bulk CRUD operation?
I am trying to integrate crm with web application
https://community.dynamics.com/crm/f/117/t/205698

Not sure how it works any help will be greatly appreciated.