Achieving Seamless Deployments: A Guide to CI/CD for .NET Applications on AWS

|
| By Webner

Introduction: In the ever-evolving landscape of software development, adopting efficient and automated deployment processes is key to staying competitive. Continuous Integration and Continuous Deployment (CI/CD) practices have emerged as indispensable tools for achieving faster releases, reducing errors, and improving overall

Salesforce | Different ways to use datepicker on visualforce page

| By Webner

1. Apex:inputfield: We can simply use apex:inputfield and bind the field with date type field and it will automatically use the Salesforce Calander: <apex:page standardcontroller=Contact> <apex:form> <apex:inputfield value=”{!Contact.Birthdate}”> </apex:form> </apex:page> 2. Apex:inputtext: <apex:page standardcontroller=”testcontroller” id=”vfPage”> <apex:form> <apex:inputText label=”Birth Date” value=”{!birthdateVariable}”