Host: test.domain.org Host: test.domain.org Path: /templates/pbcontent.aspx Application Path: / URL: https://test.domain.org/templates/pbcontent.aspx?pageid=2147483707&id=86186 Path With Query: /templates/pbcontent.aspx?pageid=2147483707&id=86186
Category: CSharp
ASPX Page Control Enable / Disable
In some cases you need to disable controls on a page, this will help you disable various types of controls.
Ektron – Widget Form
In the recent upgrade from Ektron 8.0.2 to 8.7 I’ve been rebuilding forms to user controls that can be used as widgets. Below is basic elements to make the form work for your Ektron 8.7 (possibly higher). Please note the TextBox SubmissionEmail, this allows you to change the email address…
OpenFileDialog
On a form create a textbox (txtFilePath), button (btnFilePathBrowse), and OpenFileDialog (ofdFilePath). Double click on the button and the OpenFileDialog in Design view to create the action scripts
Form Action Page
This page will walk you through how to build one action page to handle various forms. WORK IN PROCESS! Form HTML fields should start with “form_” for this to work.
C# – Start/Stop/Restart Services
The following method tries to start a service specified by a service name. Then it waits until the service is running or a timeout occurs. The following method tries to stop the specified service and it waits until the service is stopped or a timeout occurs. This method combinates both…