Hi,
I have found some useful info on using ExternalDialogsPath in order to change the default dialogs like LinkManager.
Unfortunately, I have no idea on how to accomplish the following:
I would like to customize the LinkManager.ascx by adding a fourth tab. This tab will contain a dropdown that will be filled by some records that will be retrieved from a back-end database. When the user selects one of the dropdown items and presses the OK button, the selected value should be converted into an URL like http://website/page.aspx?code=<selected value>
The problem I have is that I do not seem to be able to add server side code to the ascx as merely adding an inline
I have found some useful info on using ExternalDialogsPath in order to change the default dialogs like LinkManager.
Unfortunately, I have no idea on how to accomplish the following:
I would like to customize the LinkManager.ascx by adding a fourth tab. This tab will contain a dropdown that will be filled by some records that will be retrieved from a back-end database. When the user selects one of the dropdown items and presses the OK button, the selected value should be converted into an URL like http://website/page.aspx?code=<selected value>
The problem I have is that I do not seem to be able to add server side code to the ascx as merely adding an inline
protected
void Page_Load(object sender, EventArgs e)
does not seem to work.
Can someone please point me into the right direction?
Thanks!
Mark