Click here to Skip to main content
15,887,368 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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

GeneralRe: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Pin
Richard MacCutchan20-Nov-13 22:40
mveRichard MacCutchan20-Nov-13 22:40 
GeneralRe: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Pin
kirthikirthi20-Nov-13 22:45
kirthikirthi20-Nov-13 22:45 
GeneralRe: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Pin
Richard MacCutchan20-Nov-13 23:39
mveRichard MacCutchan20-Nov-13 23:39 
AnswerRe: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Pin
SnehasishN20-Nov-13 22:42
professionalSnehasishN20-Nov-13 22:42 
GeneralRe: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Pin
kirthikirthi20-Nov-13 22:46
kirthikirthi20-Nov-13 22:46 
Questionasp.net Pin
Member 1026351919-Nov-13 21:14
Member 1026351919-Nov-13 21:14 
AnswerRe: asp.net Pin
Mycroft Holmes19-Nov-13 21:32
professionalMycroft Holmes19-Nov-13 21:32 
QuestionRe: asp.net Pin
Richard MacCutchan19-Nov-13 21:55
mveRichard MacCutchan19-Nov-13 21:55 
QuestionFromUri Method - API Pin
miss78619-Nov-13 0:38
miss78619-Nov-13 0:38 
AnswerRe: FromUri Method - API Pin
Richard Deeming19-Nov-13 2:12
mveRichard Deeming19-Nov-13 2:12 
GeneralRe: FromUri Method - API Pin
miss7865-Dec-13 23:55
miss7865-Dec-13 23:55 
GeneralRe: FromUri Method - API Pin
Richard Deeming6-Dec-13 1:33
mveRichard Deeming6-Dec-13 1:33 
QuestionSuggest me a website in asp dotnet Pin
Member 1041107418-Nov-13 23:15
Member 1041107418-Nov-13 23:15 
AnswerRe: Suggest me a websit in asp dotnet Pin
Chris Quinn18-Nov-13 23:22
Chris Quinn18-Nov-13 23:22 
AnswerRe: Suggest me a website in asp dotnet Pin
Dineshshp18-Nov-13 23:39
professionalDineshshp18-Nov-13 23:39 
AnswerRe: Suggest me a website in asp dotnet Pin
Chris Quinn19-Nov-13 0:42
Chris Quinn19-Nov-13 0:42 
AnswerRe: Suggest me a website in asp dotnet Pin
thatraja19-Nov-13 1:09
professionalthatraja19-Nov-13 1:09 

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.