I am not really sure that what is stopping the debugging of the application. Please a break point on the Page_Load event and try again. Does it reach there?
Create a button on the webform and check that if the debugging is working for the button click code.
I think you should use the following code :
Page.Request.Form("txtFromEmailAddress");
If the txtFromEmailAddress is a simple asp web server textbox control then you can retrieve the value usin the following code:
string email = txtFromEmailAddress;
Hope it helps!
AzamSharp
Microsoft Certified Professional
My Blog KoffeeKoderInterested in writing for KoffeeKoder!
Email me!