You create an assembly to access data in a relational
database. This assembly will be used by several ASP.NET
applications on your Web server.
You need to ensure that all your applications can access the
assembly.
Which two actions should you take (Each Answer: presents
part of the solution.)? (Choose two)
A . Run the Assembly Registration tool (Regasm.exe).
B . Run the String Name tool (Sn.exe).
C . Run the Installer tool (Intallutil.exe).
D . Run the Global Assembly Cache tool (Gacutil.exe).

Answer Posted / narendrababum.l

b
& D

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between URL and URI?

622


What is inheritance and an how it be used, example with an example?

579


Can viewstate be accessed in another page?

504


What parameters can you pass in the url of the api?

656


Explain the use of fragment caching.

659






In your ASP.NET 2.0 web application you want to display an image that is selected from a collection of images. What approach will you use to implementing this?

556


What is IPostBack? How to use it?

590


How do you declare static variable?

555


What kind of data we can store in viewstate?

570


Hi this is the coding for adding data in to an xml table i want the coding for update and delete Try Dim emp_xml_doc As New XmlDocument If System.IO.File.Exists(Server.MapPath("emp.xml")) Then emp_xml_doc.Load(Server.MapPath("emp.xml")) Dim myrow_element As XmlElement myrow_element = emp_xml_doc.CreateElement("EmpDetails") Dim str As String str = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

1723


Differentiate between namespace and assembly.

556


What is web configuration file and how to use in web application

587


In the Repeater control which way you can edit?

639


How many web.config files can I have in an application?

534


what is silver light when will we use silver light,

1435