I have to create a application that check the exe file is existing in system if it si not existing then i have to install it automatically withour user interaction.
can any one help me out.
Using c#
Thanks in advance
User Profile
Collapse
-
How can i install exe file using programmatically ?
-
Session share between asp and asp.net?
I have an application.It has both asp as well as asp.net pages.so i want to share me session values between these two pages.help needed?.Thanks in advance -
protected void Page_Load(objec t sender, EventArgs e)
{
try
{
string a,b,error;
strXml = "Example.xm l";
strXsd = "Example.xs d";
XmlSchemaCollec tion sc = new XmlSchemaCollec tion();
sc.ValidationEv entHandler += new ValidationEvent Handler(Validat ionCallBack);
sc.Add(null, strXsd);
//XmlTextReader... -
protected void button1_Click (object sender, System.EventArg s e)
{
//use a filestream to get the data
FileStream fs = new FileStream("..\ \..\\..\\books. xml",FileMode.O pen);
XmlTextReader tr = new XmlTextReader(f s);
while(!tr.EOF)
{
//if we hit an element type, try and load it in the listbox
if(tr.MoveToCon tent()==XmlNode Type.Element) ...Leave a comment:
-
Hi
In VS.net 2005 dynamic port number will create.If your project port number is 1234,your URL will be
http://localhost:1234/project/...
I dont know this is the exact solution for your question.Leave a comment:
-
Problem with Reading attributes value from XML file
<Root>
<Family ID="1">
<Member Name="Abe" DOB="3/31/42" />
<Member Name="Betty" DOB="2/4/49" />
<Member Name="Cathy" DOB="12/2/78" />
<Member Name="Dan" Father="Abe" Mother="Betty" DOB="6/12/73" />
</Family>
<Family ID="2">...
No activity results to display
Show More
Leave a comment: