0

My table columns are ID(PK),Title,Description.and i want to display the details of the table row values in the system tray,so that when i click the system tray icon,it will display the Title and Description of the table.

Please help me.

tiru
  • 789
  • 5
  • 20
  • 42

3 Answers3

1

you can not (AFIK) do that in asp.net. asp.net code has NO access to local machine resources. this is a Good Thing (tm) because you don't want any old web site mucking about your computer. this is how viruses and trojans (oh my!) could be spread. Now, that said, you probably could create a browser plugin or active-x control sort of thing to make it work like you want.

Muad'Dib
  • 28,542
  • 5
  • 55
  • 68
1

Simply you can't gain access to the client machine in asp.net through legal way.For winforms: you can read this post :What's the proper way to minimize to tray a C# WinForms app?

Community
  • 1
  • 1
SMK
  • 2,098
  • 2
  • 13
  • 21
  • thank you for your repose sir.i want to create a windows app not a web app,so now is this possible? – tiru Aug 08 '11 at 23:57
0

I think enough things were said about ASP.NET application accessing local machine. For accessing system tray, please refer to following question and answer: working with system tray

Community
  • 1
  • 1
Tae-Sung Shin
  • 20,215
  • 33
  • 138
  • 240