Click here to Skip to main content
15,921,959 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: JQuery/Uploadify references in Master Page not working in subfolder page Pin
leComte7526-Nov-13 22:39
leComte7526-Nov-13 22:39 
GeneralRe: JQuery/Uploadify references in Master Page not working in subfolder page Pin
jkirkerx27-Nov-13 6:31
professionaljkirkerx27-Nov-13 6:31 
QuestionFriends request application using asp.net Pin
Otekpo Emmanuel25-Nov-13 19:35
Otekpo Emmanuel25-Nov-13 19:35 
AnswerRe: Friends request application using asp.net Pin
Snehasish_Nandy25-Nov-13 20:52
professionalSnehasish_Nandy25-Nov-13 20:52 
AnswerRe: Friends request application using asp.net Pin
Abhinav S26-Nov-13 16:42
Abhinav S26-Nov-13 16:42 
GeneralRe: Friends request application using asp.net Pin
Otekpo Emmanuel27-Nov-13 16:06
Otekpo Emmanuel27-Nov-13 16:06 
QuestionAsp.net Customize confirmation with yes and no buttons in javascript Pin
karthikchinnu25-Nov-13 1:08
karthikchinnu25-Nov-13 1:08 
AnswerRe: Asp.net Customize confirmation with yes and no buttons in javascript Pin
Chris Quinn25-Nov-13 1:13
Chris Quinn25-Nov-13 1:13 
AnswerRe: Asp.net Customize confirmation with yes and no buttons in javascript Pin
thatraja25-Nov-13 1:21
professionalthatraja25-Nov-13 1:21 
QuestionServer validator function fires even if not created (LOST ???) Pin
Shy Agam23-Nov-13 19:04
Shy Agam23-Nov-13 19:04 
Questionwhy we use Interface for developing a consistently changes system? Pin
Tanumay9922-Nov-13 19:43
Tanumay9922-Nov-13 19:43 
AnswerRe: why we use Interface for developing a consistently changes system? Pin
S. M. Ahasan Habib22-Nov-13 20:42
professionalS. M. Ahasan Habib22-Nov-13 20:42 
AnswerRe: why we use Interface for developing a consistently changes system? Pin
Abhinav S23-Nov-13 0:29
Abhinav S23-Nov-13 0:29 
QuestionMVC5 and View filenames. Pin
Marc Leger21-Nov-13 13:42
Marc Leger21-Nov-13 13:42 
AnswerRe: MVC5 and View filenames. Pin
sudeepvajrala411422-Nov-13 0:24
sudeepvajrala411422-Nov-13 0:24 
QuestionTheming MVC4 Pin
Eddy Vluggen21-Nov-13 4:47
professionalEddy Vluggen21-Nov-13 4:47 
AnswerRe: Theming MVC4 Pin
Abhinav S25-Nov-13 17:00
Abhinav S25-Nov-13 17:00 
GeneralRe: Theming MVC4 Pin
Eddy Vluggen1-Dec-13 21:57
professionalEddy Vluggen1-Dec-13 21:57 
QuestionOpen new Email in Outlook Pin
byka21-Nov-13 3:11
byka21-Nov-13 3:11 
AnswerRe: Open new Email in Outlook Pin
Bernhard Hiller21-Nov-13 3:20
Bernhard Hiller21-Nov-13 3:20 
GeneralRe: Open new Email in Outlook Pin
byka21-Nov-13 3:25
byka21-Nov-13 3:25 
GeneralRe: Open new Email in Outlook Pin
Richard Deeming21-Nov-13 4:00
mveRichard Deeming21-Nov-13 4:00 
GeneralRe: Open new Email in Outlook Pin
byka21-Nov-13 4:39
byka21-Nov-13 4:39 
GeneralRe: Open new Email in Outlook Pin
Richard Deeming21-Nov-13 5:39
mveRichard Deeming21-Nov-13 5:39 
QuestionSOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Pin
kirthikirthi20-Nov-13 20:40
kirthikirthi20-Nov-13 20:40 
Hi All,

I am trying to list installed programs in client machine using ASP.NET

But it showing only server programs not client

This code working on VB.NET (.exe)

I want to develop a web page

Kindly guide.

Code :
Dim Software As String = Nothing

''The registry key:
Dim SoftwareKey As String = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
Using rk As RegistryKey = Registry.LocalMachine.OpenSubKey(SoftwareKey)
'Let's go through the registry keys and get the info we need:
For Each skName As String In rk.GetSubKeyNames()
Using sk As RegistryKey = rk.OpenSubKey(skName)
Try
'If the key has value, continue, if not, skip it:
If Not (sk.GetValue("DisplayName") Is Nothing) Then
'Is the install location known?
If sk.GetValue("InstallLocation") Is Nothing Then
Software += sk.GetValue("DisplayName") & " - Install path not known" & vbLf
Else
'Nope, not here.
Software += (sk.GetValue("DisplayName") & " - ") + sk.GetValue("InstallLocation") & vbLf

Label1.Text = Software
'Yes, here it is...
End If
End If
Catch ex As Exception

End Try
End Using
Next
End Using
Kirthi

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.