Click here to Skip to main content
15,922,696 members
Home / Discussions / C#
   

C#

 
GeneralRe: playing wma, mp3, wav Pin
Mridang Agarwalla17-Nov-04 20:50
Mridang Agarwalla17-Nov-04 20:50 
GeneralLabel.AutoSize and right-side align Pin
compchris16-Nov-04 21:41
compchris16-Nov-04 21:41 
GeneralRe: Label.AutoSize and right-side align Pin
Daniel Turini17-Nov-04 0:06
Daniel Turini17-Nov-04 0:06 
GeneralRe: Label.AutoSize and right-side align Pin
CarlosGonzalez(ICCO)16-Aug-10 6:37
CarlosGonzalez(ICCO)16-Aug-10 6:37 
GeneralSystem Informations Pin
ozgul16-Nov-04 21:28
ozgul16-Nov-04 21:28 
GeneralRe: System Informations Pin
Stefan Troschuetz16-Nov-04 21:43
Stefan Troschuetz16-Nov-04 21:43 
GeneralRe: System Informations Pin
ozgul17-Nov-04 0:09
ozgul17-Nov-04 0:09 
GeneralRe: System Informations Pin
Stefan Troschuetz17-Nov-04 0:20
Stefan Troschuetz17-Nov-04 0:20 
Sure and there are many ways to do this depending on how you want to display the information.
For example you could insert a Literal control into your page and use its Text property to dynamically fill it with the information.
The following example should show the you the principle and doesn't claim to be 100% correct:
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
//retrieve info via wmi and assign it
this.literal1.Text = "Your info";
}
</script>
<html>
<body>
<asp:Literal id="literal1" runat="server" />
</body>
</html>








www.troschuetz.de
GeneralRe: System Informations Pin
Dave Kreskowiak17-Nov-04 15:53
mveDave Kreskowiak17-Nov-04 15:53 
GeneralPassword on a Windows Form Pin
Member 138504916-Nov-04 17:08
Member 138504916-Nov-04 17:08 
GeneralRe: Password on a Windows Form Pin
Dennis C. Dietrich17-Nov-04 5:53
Dennis C. Dietrich17-Nov-04 5:53 
GeneralRe: Password on a Windows Form Pin
Member 138504917-Nov-04 11:39
Member 138504917-Nov-04 11:39 
GeneralRe: Password on a Windows Form Pin
Dennis C. Dietrich17-Nov-04 12:12
Dennis C. Dietrich17-Nov-04 12:12 
GeneralBuilding an Internet Explorer Toolbar Pin
thintium16-Nov-04 13:56
thintium16-Nov-04 13:56 
GeneralRe: Building an Internet Explorer Toolbar Pin
Nick Parker16-Nov-04 16:06
protectorNick Parker16-Nov-04 16:06 
GeneralRe: Building an Internet Explorer Toolbar Pin
Luis Alonso Ramos17-Nov-04 19:43
Luis Alonso Ramos17-Nov-04 19:43 
GeneralChanging Background Image of form Pin
cheech522516-Nov-04 11:53
cheech522516-Nov-04 11:53 
GeneralRe: Changing Background Image of form Pin
Nick Parker16-Nov-04 12:37
protectorNick Parker16-Nov-04 12:37 
GeneralEfficiently Swapping 2 numbers! Pin
jdeakin200416-Nov-04 11:51
jdeakin200416-Nov-04 11:51 
GeneralRe: Efficiently Swapping 2 numbers! Pin
latta16-Nov-04 12:37
latta16-Nov-04 12:37 
GeneralRe: Efficiently Swapping 2 numbers! Pin
Nick Parker16-Nov-04 12:40
protectorNick Parker16-Nov-04 12:40 
GeneralRe: Efficiently Swapping 2 numbers! Pin
latta16-Nov-04 12:58
latta16-Nov-04 12:58 
GeneralRe: Efficiently Swapping 2 numbers! Pin
Skynyrd16-Nov-04 13:22
Skynyrd16-Nov-04 13:22 
GeneralRe: Efficiently Swapping 2 numbers! Pin
Dennis C. Dietrich16-Nov-04 13:22
Dennis C. Dietrich16-Nov-04 13:22 
Generalfile association Pin
bwagz16-Nov-04 11:23
bwagz16-Nov-04 11:23 

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.