How do you install windows service?
Answer Posted / sitakanta
Open the Visual Studio .Net Command Prompt and give the path of application
for example C:\bin\Debug> and then type InstallUtil Service.exe
To uninstall, InstallUtil /u Service.exe
After Installation ,right click My Computer and Select 'Manage' and Select 'Service and Applications' and in that Select 'Services'
Select 'Service' and start the Service.
IF No ERROR in your COde, It will work !
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the main function of razor in asp.net? : asp.net mvc
What is asp.net futures?
What is tracing? Where is it used?
Explain the difference between panel and groupbox classes using .net?
What is cookieless session id explain in brief?
What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC
We Only Know The Total Number Of Feet In The Farmyard. Write A Program that will compute the total number of rabbits and chickens in the farmyard. Assume number of feet in the farmyard are 40. how many rabbits and chickens are?
How can we communicate with each server in N-tier Architecture? and what are the methods?
To display data in the combo box, prior to setting the Data Source, what kind of property on a Combo Box do you set with a column name?
Define resource files.
Explain Apache web servers ? How can you get ASP.NET running in Apache web servers - why should you do this?
What is global.asax file used for?
What are sessions and cookies?
What is recordset asp?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.