Tuesday, October 28, 2014

Get ASPX control value in ASCX page

Hello,

To achieve this scenario, you have to first define public property in aspx page like this.
public DropDownList AffinityGroupDDL
        {
            get
            {
                return ddlAffinityGroup;
            }
        }

After that you can access your page controls like below
var dropDownList = ((StMainDashboard)Page).AffinityGroupDDL;

Try this.

How to Create Events Using Microsoft Graph API with Delegated Permissions and MSAL.js

Microsoft Graph API provides powerful capabilities to interact with Microsoft 365 services. In this guide, we’ll explore how to create calen...