-
ViewData and ViewBag in MVC
ASP.NET MVC provides us two options ViewData and ViewBag for passing data from controller to view. ViewData and ViewBag are almost similar. Passing data with ViewBag. The ViewBag feature allows us to define arbitrary properties on a dynamic object and access them in a view. The dynamic object is accessed through the Controller.ViewBag property. Let…
-
Canarys has partnered with Openbravo a Spain based ERP solution provider
We are happy to announce our newly acquired partnership with Openbravo, Spain. Openbravo is the provider of the preferred Commerce and ERP Platform. Openbravo solutions are distributed exclusively through the global network of authorized partners. Openbravo is a world leader in the Open Source enterprise software space focused on helping clients achieve superior competitiveness. At…
-
Openbravo Services
openbravo-canarys-partners We are happy to announce our newly acquired partnership with Openbravo, Spain. Openbravo is the provider of the preferred Commerce and ERP Platform. Openbravo solutions are distributed exclusively through the global network of authorized partners. Openbravo is a world leader in the Open Source enterprise software space focused on helping clients achieve superior competitiveness.…
-
Service Broker
Service Broker SQL Server Service broker provides asynchronous queuing functionality to SQL Server. So now the end client will not have to wait. SQL Server Service broker uses both queues and asynchronous communication to fulfill its functionality. Queues are used because there may be instances that the other application with which we are interacting may…
-
How to enable Lync Addin and create Lync Meetings using the Outlook 2013
-
Business Process Testing Framework in QTP
Business Process Testing Framework Business Process Testing (BPT) is the core integration of QTP and QC where writing the script (developing the component) and creating the test flow happens in QC itself. BPT tests are made up of two types of components a. Keyword component which is similar to keyword view of action on…
-
Creating a Simple Form with Validation Using ASP.NET MVC 4 Empty Template
There are multiple Validation attributes available in MVC. Validation attributes comes from System.ComponentModel.DataAnnotations. Available validation attributes are- System.ComponentModel.DataAnnotations.CompareAttribute System.ComponentModel.DataAnnotations.CustomValidationAttribute System.ComponentModel.DataAnnotations.DatatypeAttribute System.ComponentModel.DataAnnotations.MaxLengthAttribue System.ComponentModel.DataAnnotations.MinLengthAttribute System.ComponentModel.DataAnnotations.RangeAttribute System.ComponentModel.DataAnnotations.RegularExpressionAttribute System.ComponentModel.DataAnnotations.RequiredAttribute System.ComponentModel.DataAnnotations.StringLengthAttribute System.Web.Security.MembershipPasswordAttribute Let us create a simple form to request a book using MVC4 basic template. First step is to create the visual studio project. 1. Open Visual Studio.…
-
How to handle the exceptions using recovery scenario manager in QTP?
VB script Error Handling Durning run time, if QTP encounters any erorr then it will display the error message which haults the script execution. Inorder to overcome this we should suppress the error message and then we should take appropriate action to handle the error. This can be done using “On error Resume Next” and…
-
The Best Practices and Advantages of Designing Effective Test Cases
The Best Practices and Advantages of Designing Effective Test Cases Overview Test case is a “Documentation specifying inputs, predicted results, and a set of execution conditions for a test item.” The aim is to divide the software function into small units of function that is testable with input, and producing result that is measurable. So,…