Reading values ​​from text boxes in .Net deployment project

I have a custom installer class that runs OnAfterInstall, how can I read the values ​​entered by the user in the simplest install screens? Values ​​are entered into text boxes.

Also how can I get the program to crash in my custom installer class and display an appropriate crash message to the user?

+1


source to share


1 answer


One solution would be to pass values ​​from previous text fields from page to page using hidden fields, and then read from those fields when throwing OnAfterInstall.



+1


source







All Articles