User Profile

Collapse

Profile Sidebar

Collapse
kartic03
kartic03
Last Activity: Dec 19 '07, 02:45 PM
Joined: Dec 5 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • kartic03
    started a topic How can i install exe file using programmatically ?
    in .NET

    How can i install exe file using programmatically ?

    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
    See more | Go to post

  • kartic03
    started a topic Session share between asp and asp.net?
    in .NET

    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
    See more | Go to post

  • kartic03
    replied to validating an xml document.
    in XML
    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...
    See more | Go to post

    Leave a comment:


  • kartic03
    replied to Read XML file by aspx webpage .
    in XML
    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) ...
    See more | Go to post

    Leave a comment:


  • kartic03
    replied to create web service
    in XML
    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.
    See more | Go to post

    Leave a comment:


  • kartic03
    started a topic Problem with Reading attributes value from XML file
    in XML

    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">...
    See more | Go to post
No activity results to display
Show More
Working...