how to create custom asp.net Webapplication setup with user Inter Faces ???
-
how to create ASP.NET application installer with interfaces to take parametrs during installation. creating DataBase during instalation according to Provide parameters( databse name, server name, user name, password) etc need help......
-
how to create ASP.NET application installer with interfaces to take parametrs during installation. creating DataBase during instalation according to Provide parameters( databse name, server name, user name, password) etc need help......
Take a look at the example in MSDN: Walkthrough: Using a Custom Action to Create a Database During Installation[^] There are also a number of predefined UI dialog boxes that you can use during installation: Deployment Dialog Boxes[^]
-
Take a look at the example in MSDN: Walkthrough: Using a Custom Action to Create a Database During Installation[^] There are also a number of predefined UI dialog boxes that you can use during installation: Deployment Dialog Boxes[^]
Dear minhpc_bk, thanks for reply. actually i want to know how to add interfaces..more than one i want messages in this sequence.. first should come Welcome Form then should come Text boxes,to get Custom values from user then should come progress bar and next so on how i can do this
-
Dear minhpc_bk, thanks for reply. actually i want to know how to add interfaces..more than one i want messages in this sequence.. first should come Welcome Form then should come Text boxes,to get Custom values from user then should come progress bar and next so on how i can do this
Hi there, You simply right click on the setup project, go to View, and choose User Interface. You can see a default set of dialog boxes in the list, and they should appear in that order during installation. Now you can add more dialog boxes to gather information from user. For more information, take a look at User Interface Management in Deployment[^]