Click here to Skip to main content
16,018,534 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
plz help me how to solve these problem.

1.how to see the file when i am clicking on the link button in grid view in asp.net
2.and how to use the logical operations for searching a key word in asp.net



thanks and regards
Posted
Comments
_Amy 21-Mar-13 0:50am    
What have you tried for it? Where you stuck?

1 solution

Process p = new Process();
ProcessStartInfo ps = new ProcessStartInfo();
ps.FileName = "NotePad.exe";
ps.Arguments = "path\\test.txt";
p.StartInfo = ps;
p.Start();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900