step to create a strong name?

Answer Posted / sachinkunal

1.Solution explorer->class library1->Prperties
2.Select singing tab->check the sing assembly checkbox->select->new
3.In the dialogbox ->enter strong name key in key file name->ok

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a windows service?

648


Where do we store our connection string in asp.net application?

626


Can we add code files of different languages in app_code folder?

705


Explain the purpose of storyboard.targetproperty.

620


What is a web based system?

548






What is cached data phone?

614


What are the merits and demerits of viewstate?

661


What is asp net objects?

612


What is difference between session and cookies in asp net?

587


Explain about asp.net state management?

695


How can you handle unmanaged code exceptions in asp.net?

643


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

1818


What is difference between asp state management and asp.net state management?

671


What is event in asp.net?

634


What are the Types of chaching. How to implement caching

657