3
Answers

upload and feedback

i am creating a website for job portal.
if a user enters his/her detail in the feedback form and upload his/her resume using fileupload. When he/she clicks the submit and upload button. i must receive a mail of the feedback and resume.
My email id is abc@xyz.com.
Please help ....
 
 
 
 
 
 
 
 
 
 
 
  
Answers (3)
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.