Solution Set of AWP Solution Set November-2018 1. Attempt Any Three of the Following: A. What Is Namespace? Explain with the Help of an Example

Total Page:16

File Type:pdf, Size:1020Kb

Solution Set of AWP Solution Set November-2018 1. Attempt Any Three of the Following: A. What Is Namespace? Explain with the Help of an Example Solution Set of AWP solution set November-2018 1. Attempt any three of the following: a. What is namespace? Explain with the help of an example. A namespace is designed for providing a way to keep one set of names separate from another. The class names declared in one namespace does not conflict with the same class names declared in another. Defining a Namespace A namespace definition begins with the keyword namespace followed by the namespace name as follows − namespace namespace_name { // code declarations } To call the namespace-enabled version of either function or variable, prepend the namespace name as follows − namespace_name.item_name; (2 marks) Any example demo (3 marks) b. Explain jagged array with example. A Jagged array is an array of arrays. You can declare a jagged array named scores of type int as int [][] scores; Declaring an array, does not create the array in memory. To create the above array − int[][] scores = new int[5][]; for (int i = 0; i < scores.Length; i++) { scores[i] = new int[4]; } You can initialize a jagged array as − int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}}; Where, scores is an array of two arrays of integers - scores[0] is an array of 3 integers and scores[1] is an array of 4 integers. (2marks) Any example (3 marks) c. What is .NET Framework? Explain its architecture in brief. The .NET Framework is a new and revolutionary platform created by Microsoft for developing applications • It is a platform for application developers • It is a Framework that supports Multiple Language and Cross languageintegration. • IT has IDE (Integrated Development Environment). • Framework is a set of utilities or can say building blocks of your application system. • .NET Framework provides GUI in a GUI manner. • .NET is a platform independent but with help of Mono Compilation System (MCS). MCS is a middle level interface. Page 1 of 21 • .NET Framework provides interoperability between languages i.e. Common Type System (CTS) . • .NET Framework also includes the .NET Common Language Runtime (CLR), which is responsible for maintaining the execution of all applications developed using the .NET library. • The .NET Framework consists primarily of a gigantic library of code. (2 marks) Components of the .Net Framework with diagram (3 marks) d. Write a program in C# to demonstrate multiple inheritance using interfaces. Multiple Inheritance in C# C# does not support multiple inheritance. However, you can use interfaces to implement multiple inheritance. The following program demonstrates this − Any 1 example (5 marks) e. Explain various Types of Constructors in C# What is a constructor? Constructor is a method which gets executed automatically when we create or instantiate object of that class having constructor. Types of Constructors in C# There are 5 types of constructor in C# as listed below Default Constructor Parameterized Constructor Copy Constructor Page 2 of 21 Static Constructor Default Constructor A constructor without any parameters is called as default constructor means a constructor which does not have any input parameter is known as default constructor. Example of Default Constructor (1 mark) Parameterized Constructor A constructor having one or more parameters is called as parameterized constructor means a constructor which is having single input parameter or multiple input parameters of same data types or different data types are known as parameterized constructor. Example of Parameterized Constructor (1 mark) Copy Constructor A constructor that contains a parameter of same class type is called as copy constructor. C# does not provide a copy constructor. A copy constructor enables you to copy the data stored in the member variables of an object of the class into another new object means it helps to copy data stored in one object into another new object of the same instance. Example of Copy Constructor (1 mark) Static Constructor Static constructor should be parameter less means it should not contain any input parameter. Program will not execute if static constructor is having any input parameter. Static constructor can be invoked once for any number instances are created and it is invoked only during the first initialization of instance. It is used to initialize static fields of the class Static constructor is created using a static keyword as shown below. Example of Static Constructor (1 mark) f. What is delegate? Explain multicast delegate with an example. A delegate is like a pointer to a function. It is a reference type data type and it holds the reference of a method. All the delegates are implicitly derived from System.Delegate class. A delegate can be declared using delegate keyword followed by a function signature as shown below. Delegate Syntax: <access modifier> delegate <return type> <delegate_name>(<parameters>) (2 marks) Multicast Delegate The delegate can points to multiple methods. A delegate that points multiple methods is called a multicast delegate. The "+" operator adds a function to the delegate object and the "-" operator removes an existing function from a delegate object. Example: Multicast delegate (3 marks) 2. Attempt any three of the following: 15 a. What is the difference between List Box and Drop-Down Lists? List and explain any three common properties of these controls. Page 3 of 21 Common properties of list box and drop-down Lists: Property Description The collection of ListItem objects that represents the items in the Items control. This property returns an object of type ListItemCollection. Specifies the number of items displayed in the box. If actual list Rows contains more rows than displayed then a scroll bar is added. The index of the currently selected item. If more than one item is SelectedIndex selected, then the index of the first selected item. If no item is selected, the value of this property is -1. The value of the currently selected item. If more than one item is SelectedValue selected, then the value of the first selected item. If no item is selected, the value of this property is an empty string (""). Indicates whether a list box allows single selections or multiple SelectionMode selections. b. Explain Adrotator control with example in ASP.NET Page 4 of 21 The AdRotator control randomly selects banner graphics from a list, which is specified in an external XML schedule file. This external XML schedule file is called the advertisement file. The AdRotator control allows you to specify the advertisement file and the type of window that the link should follow in the AdvertisementFile and the Target property respectively. The basic syntax of adding an AdRotator is as follows: <asp:AdRotator runat = "server" AdvertisementFile = "adfile.xml" Target = "_blank" /> The advertisement file is an XML file, which contains the information about the advertisements to be displayed. [2 marks] Any 1 Example of AdRotator Control [3 marks] c. List and explain any four types of validation controls used in asp.net ASP.NET validation controls validate the user input data to ensure that useless, unauthenticated, or contradictory data don't get stored. ASP.NET provides the following validation controls: • RequiredFieldValidator • RangeValidator • CompareValidator • RegularExpressionValidator • CustomValidator • ValidationSummary [1 mark ] Explaination of any four controls with syntax and properties or example [1 mark each] d. Explain Calendar control with example in ASP.NET The calendar control is a functionally rich web control, which provides the following capabilities: • Displaying one month at a time • Selecting a day, a week or a month • Selecting a range of days • Moving from month to month • Controlling the display of the days programmatically The basic syntax of a calendar control is: <asp:Calender ID = "Calendar1" runat = "server"> </asp:Calender> [1 mark] Any 1 example [4 marks] Page 5 of 21 e. Short note on Page class. f. Explain SiteMapPath control in ASP.NET • The SiteMapPath control basically is used to access web pages of the website from one webpage to another. It is a navigation control and displays the map of the site related to its web pages. • This map includes the pages in the particular website and displays the name of those pages. We can click on that particular page in the Site Map to navigate to that page. We can say that the SiteMapPath control displays links for connecting to URLs of other pages. • The SiteMapPath control uses a property called SiteMapProvider for accessing data from databases and it stores the information in a data source. [1 mark ] Any 1 example or Syntax and Properties description [4 marks] 3. Attempt any three of the following: 15 a. What is user-defined exception? Explain with example. We have seen built-in exception classes however, we often like to raise an exception when the business rule of our application gets violated. So, for this we can create a custom exception class by deriving Exception or ApplicationException class. [1 mark] Page 6 of 21 Any 1 example [4 marks] b. What is debugging. Explain the process of debugging in detail. Debugging allows the developers to see how the code works in a step-by-step manner, how the values of the variables change, how the objects are created and destroyed, etc. When the site is executed for the first time, Visual Studio displays a prompt asking whether it should be enabled for debugging: When debugging is enabled, the following lines of codes are shown in the web.config: <system.web> <compilation debug="true"> <assemblies> .............. </assemblies> </compilation> </system.web> The Debug toolbar provides all the tools available for debugging: Breakpoints Breakpoints specifies the runtime to run a specific line of code and then stop execution so that the code could be examined and perform various debugging jobs such as, changing the value of the variables, step through the codes, moving in and out of functions and methods etc.
Recommended publications
  • The Following Documentation Is an Electronically‐ Submitted Vendor Response to an Advertised Solicitation from the West
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR06092000000007338 1 13:30:00 VENDOR VS0000020585 Cambay Consulting LLC Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $370,750.00 Response Date: 2020-06-09 Response Time: 09:51:40 Comments: FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1 Temporary information technology 2000.00000 HOUR $72.170000 $144,340.00 software developers Comm Code Manufacturer Specification
    [Show full text]
  • Dxperience V2008 Vol 1 All Devexpress ASP.NET, Winforms, WPF and Productivity Tools in One Package
    /issue 66/us edition best selling publisher awards see page 58 .upThe latest dateproducts available at www.componentsource.com Experience the DevExpress Difference • ASP.NET, WinForms & WPF Components • IDE Productivity Tools • Business Application Frameworks In one integrated package • XtraReports Suite • XtraReports for ASP.NET • XtraGrid Suite • XtraCharts for ASP.NET • XtraEditors Suite • ASPxGridView • XtraCharts Suite • ASPxEditors • XtraPivotGrid Suite • ASPxPivotGrid • XtraBars Suite • ASPxperience • XtraScheduler Suite • ASPxTreeList • XtraLayout Control • ASPxSpellChecker • XtraNavBar • ASPxHTML Editor • XtraPrinting Library • CodeRush • XtraSpellChecker • Refactor! Pro • XtraVerticalGrid • eXpressPersistent Objects • XtraTreeList • eXpressApp Framework DXperience v2008 vol 1 All DevExpress ASP.NET, WinForms, WPF and Productivity Tools in one package Learn more at: www.componentsource.com/devexpress US Headquarters European Headquarters Asia / Pacific Headquarters ComponentSource ComponentSource ComponentSource 650 Claremore Prof Way 30 Greyfriars Road 3F Kojimachi Square Bldg www.componentsource.com Suite 100 Reading 3-3 Kojimachi Chiyoda-ku Woodstock Berkshire Tokyo GA 30188-5188 RG1 1PE Japan Sales Hotline: USA United Kingdom 102-0083 Tel: (770) 250 6100 Tel: +44 118 958 1111 Tel: +81-3-3237-0281 Fax: (770) 250 6199 Fax: +44 118 958 9999 Fax: +81-3-3237-0282 (888) 850-9911 /n software /n software Red Carpet Subscription 2008 Write communications, security and e-business applications. • Includes components for FTP, IMAP, SNMP, SSL, SSH, S/MIME, Digital Certificates, Credit Card Processing and e-business (EDI) transactions • Free updates, upgrades, tech support and new releases for a year NEW RELEASE IP*Works! Internet Communications Secure Components Includes IP*Works! which is a ATOM, REST, MX, DNS, RSS, NNTP, /n software Red Carpet comprehensive framework for SMPP, POP, Rexec, Rshell, SMTP, Subscription includes secure Internet development.
    [Show full text]
  • The Following Documentation Is an Electronically‐ Submitted Vendor Response to an Advertised Solicitation from the West
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR05182000000006750 1 13:30:00 VENDOR VS0000022233 Global Information Technology Resources, Inc. Global Health IT Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $490,000.00 Response Date: 2020-06-09 Response Time: 11:06:33 Comments: FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1 Temporary information technology 2000.00000 HOUR $98.000000 $196,000.00 software developers Comm Code Manufacturer Specification Model # 80111608 Extended Description : Year 1 / Individual 1 Comments: Global IT Resources is proud to submit the required supplemental Microsoft Developer Staff required by the State of West Virginia.
    [Show full text]
  • Pro ASP.NET 3.5 in C# 2008: Includes Silverlight 2, Third Edition Copyright © 2009 by Matthew Macdonald and Mario Szpuszta All Rights Reserved
    Macdonald_1567-7front.fm Page ii Wednesday, November 19, 2008 3:21 PM Pro ASP.NET 3.5 in C# 2008: Includes Silverlight 2, Third Edition Copyright © 2009 by Matthew MacDonald and Mario Szpuszta All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN-13 (paperback): 978-1-4302-1567-7 ISBN-13 (electronic): 978-1-4302-1568-4 Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Lead Editor: Ewan Buckingham Technical Reviewer: Andy Olsen Editorial Board: Clay Andres, Steve Anglin, Mark Beckner, Ewan Buckingham, Tony Campbell, Gary Cornell, Jonathan Gennick, Michelle Lowman, Matthew Moodie, Duncan Parkes, Jeffrey Pepper, Douglas Pundick, Frank Pohlmann, Ben Renow-Clarke, Dominic Shakeshaft, Matt Wade, Tom Welsh Production Director | Project Manager: Grace Wong Copy Editors: Kim Wimpsett, Damon Larson Associate Production Director: Kari Brooks-Copony Production Editor: Laura Esterman Compositor: Susan Glinert Proofreader: Nancy Bell Indexer: Broccoli Information Management Artist: April Milne Cover Designer: Kurt Krames Manufacturing Director: Tom Debolski Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013.
    [Show full text]
  • Custom Cultures
    “This book is an invaluable read for anyone who wants to learn the hows, whys, and pitfalls of mobile programming and to truly understand why they’re doing what they’re doing.” —Joshua Trupin, Executive Editor, MSDN Magazine .NET Internationalization The Developer's Guide to Building Global Windows and Web Applications “This series is a great resource for developers using the .NET Framework and Web services. It covers all the bases from refer- ence to ‘how-to.’The books in this series are essential reading for developers who want to write solid managed code.” —John Montgomery Director, Developer Platform and Development Evangelism Division, Microsoft Corporation “This series is supported by the Series leaders and principal authorities of the Microsoft .NET Framework Smith-Ferrier HAPTER and its languages. It has an C author pool that combines some REE AVAILABLE of the most insightful authors in F 2006 the industry with the software B OOK architects and developers ANUARY at Microsoft.” J —Don Box Architect, Microsoft Corporation Guy Smith-Ferrier DRAFT MANUSCRIPT Books Available January 2006 This manuscript has been provided by Pearson Education at this early stage to create awareness for this upcoming book. It has not been copyedited or proofread yet; we trust that you will judge this book on technical merit, not on grammatical and punctuation errors that will be fixed at a later stage. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form, or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior consent of the publisher.
    [Show full text]
  • The Following Documentation Is an Electronically‐ Submitted Vendor
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR06072000000007293 1 13:30:00 VENDOR VS0000022041 Genius Business Solutions, Inc. Genius Business Solutions, Inc. Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $342,000.00 Response Date: 2020-06-07 Response Time: 13:15:59 Comments: Please see RFP response word document Section 4 for Details regarding volume discount FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1
    [Show full text]
  • C# 6.0 in a Nutshell
    6th Edition Covers .NET 4.6 & the Roslyn Compiler C# 6.0 in a Nutshell THE DEFINITIVE REFERENCE Joseph Albahari & Ben Albahari www.it-ebooks.info C# 6.0 in a Nutshell When you have questions about C# 6.0 or the C# 6.0 in a Nutshell is .NET CLR and its core Framework assemblies, this “ bestselling guide has the answers you need. C# has one of the few books become a language of unusual flexibility and breadth I keep on my desk as since its premiere in 2000, but this continual growth a quick reference.” means there’s still much more to learn. —Scott Guthrie Organized around concepts and use cases, Microsoft this thoroughly updated sixth edition provides Novices and experts intermediate and advanced programmers with a “ concise map of C# and .NET knowledge. Dive in and alike will find the latest discover why this Nutshell guide is considered the techniques in C# definitive reference on C#. programming here.” —Eric Lippert ■ Get up to speed with all aspects of the C# MVP C# language, from the basics of syntax and variables, to advanced topics such as pointers and operator overloading ■ Dig deep into LINQ via three chapters dedicated to the topic ■ Learn about dynamic, asynchronous, and Joseph Albahari, author of C# parallel programming 5.0 in a Nutshell, C# 5.0 Pocket Reference, and LINQ Pocket ■ Work with .NET features, including XML, Reference, also wrote LINQPad, networking, serialization, reflection, the popular code scratchpad and security, application domains, and code LINQ querying utility.. contracts Ben Albahari, a former program ■ Explore the new C# 6.0 compiler-as-a- manager at Microsoft, is cofounder service, Roslyn of Auditionist, a casting website for actors in the UK.
    [Show full text]
  • WHITE PAPER Oracle Database and Microsoft Windows and .NET
    W H I T E P A P E R O r a c l e D a t a b a s e a n d M i c r osoft Windows and .NET Interoperability: Packing Much More than Meets the Eye Sponsored by: Oracle Al Hilwa April 2009 IDC OPINION Though often coming without much fanfare, the interoperability initiatives between Oracle and Microsoft technologies around Oracle database support on Windows and with .NET application development have been substantial and have seen several iterations and improvements. Today, interoperability has reached a significant level of depth and maturity such that Oracle database customers developing .NET applications can truly leverage the best that these two vendors have to offer in their respective areas of excellence. In particular, the interoperability tools enable the following specific scenarios: Oracle databases that can run on the Windows platform allowing Windows users to enjoy the full complement of differentiating features that Oracle offers, such as Real Application Clusters (RAC), Automatic Storage Management (ASM), Real Application Testing, Database Vault, and Virtual Private Database (VPD) Application developers who utilize the Visual Studio integrated development environment (IDE) to author and debug applications that access Oracle databases, running on any platform, with a significantly higher level of productivity than is possible without them High-performance .NET applications that are written to the Oracle database and that utilize its unique and differentiating capabilities (e.g., Oracle Spatial Option, SQL Analytics, User-Defined
    [Show full text]
  • The Following Documentation Is an Electronically‐ Submitted Vendor
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR06022000000007196 1 13:30:00 VENDOR VS0000021961 Alrek Business Solutions Inc. Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $367,500.00 Response Date: 2020-06-02 Response Time: 18:23:23 Comments: FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1 Temporary information technology 2000.00000 HOUR $75.000000 $150,000.00 software developers Comm Code Manufacturer Specification
    [Show full text]
  • Mysql Connector/NET Developer Guide Abstract
    MySQL Connector/NET Developer Guide Abstract This manual describes how to install and configure MySQL Connector/NET, the connector that enables .NET applications to communicate with MySQL servers, and how to use it to develop database applications. For notes detailing the changes in each release of Connector/NET, see MySQL Connector/NET Release Notes. For legal information, including licensing information, see the Preface and Legal Notices. For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users. Document generated on: 2021-09-24 (revision: 70892) Table of Contents Preface and Legal Notices .................................................................................................................. v 1 Introduction to MySQL Connector/NET ............................................................................................. 1 2 Connector/NET Versions ................................................................................................................. 3 3 Connector/NET Installation .............................................................................................................. 7 3.1 Installing Connector/NET on Windows ................................................................................... 7 3.1.1 Installing Connector/NET Using MySQL Installer ......................................................... 7 3.1.2 Installing Connector/NET Using the Standalone Installer .............................................. 7 3.1.3 Installing Connector/NET
    [Show full text]
  • Mysql Connector/NET Developer Guide Abstract
    MySQL Connector/NET Developer Guide Abstract This manual describes how to install and configure MySQL Connector/NET, the connector that enables .NET applications to communicate with MySQL servers, and how to use it to develop database applications. For notes detailing the changes in each release of Connector/NET, see MySQL Connector/NET Release Notes. For legal information, including licensing information, see the Preface and Legal Notices. For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users. Document generated on: 2021-09-24 (revision: 70892) Table of Contents Preface and Legal Notices ............................................................................................................ v 1 Introduction to MySQL Connector/NET ....................................................................................... 1 2 Connector/NET Versions ............................................................................................................ 3 3 Connector/NET Installation ......................................................................................................... 7 3.1 Installing Connector/NET on Windows ............................................................................. 7 3.1.1 Installing Connector/NET Using MySQL Installer .................................................... 7 3.1.2 Installing Connector/NET Using the Standalone Installer ........................................ 7 3.1.3 Installing Connector/NET Using NuGet .................................................................
    [Show full text]
  • Manoj Trainerprofile.Pdf
    Manoj Kumar Sharma CAREER SPAN 28+ years of Experience in the Software Industry, spanning 21+ years as a Software Architect / Systems Analyst / Project Lead, including 22+ years of Website/Portal Development, Hosting and Web Application Development (4 years in the US). I have been a Freelance Consultant and Corporate Trainer for the past 13+ years now. SPECIALIZATION IN: .NET (all versions leading to .NET 5.0, including up to .NET Core 3.x and .NET Framework 4.8.x), which includes: C# 9.0, VB.NET 16, Tasks, Async & Parallel Programming, ASP.NET, ASP.NET MVC 7 with Razor & SPA, Web API 2.0, ASP.NET Core, Blazor (Server-Side), WCF, WCF Data Services, AJAX.NET, XML Web Services, .NET Remoting, Workflow Foundation (WF) 4.0 ADO.NET, LINQ and Entity Framework (EF 6) and EF Core 3.0 ASP.NET Security Blocks – Provider Model, Universal Providers and OWIN (with SAML 2.0 & OAuth) Microsoft Azure, including Azure Core Services, Azure App Services, Building Block Services, Serverless Compute Services, SQL Azure, Data Services, Azure Cloud Storage Services Front-End Web UX development technologies like HTML5, CSS3, ECMAScript (ES6), JavaScript, jQuery, jQuery UI, AJAX, JSON, KnockoutJS, NodeJS, XML, DTD, XSL/T, XPATH, XQUERY, XSD, WSDL, SOAP, SVG, XHTML, etc. Server-Side programming using ASP and Standards like Website Accessibility Guidelines (WAG) & OWASP. Internet and Intranet development architectures targeted for n-Tier, distributed and disconnected Application Development models, Design Patterns & Practices, Cloud Patterns, Micro Service
    [Show full text]