1
Answer

initialize my label

bahare g

bahare g

14y
1.9k
1

hello my firends
i have a web page with a label,a button, a textbbox and a  drowpDown .I assign 1 to my lbl control in html code. i want to when i click on my drowpown show selectedvalue in my lbl then when i ckick on button show my lbl value in my textbox. I write bellow  code but when i click on my button my label's value return to that value that i assigned in html code.what 's the problem exactly ? and what is wrong in my code?
plz help me.
page_load(){}
drowpDown_selectedIndexChange(){   lbl.text=drowpdown.selectedValue  ;   }
button_click(){textbox1.Text=lbl.Text}
Answers (1)
0
crausch

crausch

NA 53 0 19y
OK... with a little more research I found my answer -------------------------------- using Microsoft.Win32; string myPath = ""; RegistryKey rk = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\SomeProg.exe", false); if(rk != null) { myPath = rk.GetValue("").ToString(); } ------------------------------------ In the code above I am getting the "Default" value which contains the programs executable path. The "false" parameter says that I want to open the key as read-only. I am not sure if the rk != null check is the right way to check that the key existed, but at first test this appears to work.