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
User Profile
Collapse
-
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"...Leave a comment:
-
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...Leave a comment:
-
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... -
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...
No activity results to display
Show More
Leave a comment: