How can we Deploy a website?
Answers were Sorted based on User's Feedback
Answer / amit
with the help of Publish we can publish these files
into .dll files and that .dll files will be in the web
server given address.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / nutan srivastava
There are three methods.
MSI Installer
CAB Archive
XCOPY Command
Is This Answer Correct ? | 4 Yes | 1 No |
What is meant by role based security? when we use this one
What event fired during, when datagrid click?
For Web services where you can browse on the Internet?
Explain how can we access static variable?
What is state management in asp.net and define Client-side state management and Server-side state management?
What is asp.net and how it works?
When a dropdownlist has been added by some records and it has been binded why it is not executing i'm facing this error pls help me ? if (is!pageposback) { arraylist books = new arraylist; books.add ("gone with the wind"); books.add ("rahulsriramprakash"); books.add ("vishal"); dropdowndisplay.datasource=books; dropdowndisplay.databind(); } The error is : 1) The dropdowndisplay does not exist.
Which method is used to enforce garbage collection in .net?
Explain Life cycle of ASP.NET page when a request is made.
What is boxing and how it is done internally?
What is session and cookies in asp.net?
You are creating a Web site for Your company. You receive product lists in the form of XML documents. You are creating a procedure to extract information from these XML documents according to criteria that your users will select. When a user makes a request, you want the results of these requests to be returned as quickly as possible. What should you do? A . Create an XmlDataDocument object and load it with the XML dat Use the DataSet property of the object to create a DataSet object. Use a SQL SELECT statement to extract the requested dat B . Create an XmlDataDocument object and load it with the XML data. Use the SelectNodes method of the object to extract the requested data. C . Create an XPathDocument object and load it with the XML data. Call the CreateNavigator method to create an XPathNavigator object. Call the Select method of the XPathNavigator object to run an XPath query that extracts the requested data. D . Create an XmlReader object. Use the Read method of the object to stream through the XML data and to apply an XPath expression to extract the requested data.