User Profile

Collapse

Profile Sidebar

Collapse
deepant
deepant
Last Activity: Jul 9 '08, 05:28 AM
Joined: May 22 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • deepant
    replied to Building MSDE with VS 2005 Setup Project
    in .NET
    Hi,

    i think this link will help you

    here the dotnetinstaller installs the dotnet framework if it is not available go through this link... you can add the msde setup in addtion to this


    http://www.codeproject .com/KB/install/dotNetInstaller .aspx


    Thanks,
    Hema
    See more | Go to post

    Leave a comment:


  • deepant
    replied to using Css and master page
    in .NET
    Hi,

    you must link your css file in teh master page itself, so that when you inherit the master page when you creating a page the stylesheet applied with the master page will be applied to your created pages also

    you can attach the css file in the master pages using the <link> tag

    you can use this tag in the <head> section

    <link href="your stylesheet name with location"...
    See more | Go to post

    Leave a comment:


  • deepant
    replied to DropDownlist Add Items
    in .NET
    Hi,

    1. we can able to get teh list of database names using system stored procedure "sp_databas es"

    dataset ds = new dataset;
    using (SqlConnection sqlcon = new SqlConnection(s Connection)) // sconnection - specify your connection string
    {
    sqlcon.open();
    string sQuery = "exec sp_databases";
    SqlCommand...
    See more | Go to post

    Leave a comment:


  • deepant
    started a topic How to send mail when a user views a folder
    in .NET

    How to send mail when a user views a folder

    Hi,

    I am writing a windows application in C#.net for watching a folder using filesystemwatch er class with this class i can able to track the events of creating,delete ing,changing and renaming using this events i can able to send a mail to my mail id if there is any change in the folder.

    but i need to watch my folder whether there is any one viewed my folder, even me if anyone opens the folder which i specified i need...
    See more | Go to post

  • deepant
    started a topic How to Get the MAC address
    in .NET

    How to Get the MAC address

    Hi ,

    I am developing a download manager using c#.net, i need to open my download manager only when the user logins in the browser. i need to read the logged user and to maintain a history of the downloads which he made in a xml file by his name. In this i cant able to read the user who logged in the browser through my windows application. for this i have decided to store the local client ip and the remote server ip in the database...
    See more | Go to post
No activity results to display
Show More
Working...