hi
Two questions from a newbie. Thanks!
1. How do I get the posted argument as part of url, the "Tool=something" portion?
http://myapp.aspx?Tool=something
<Form ID="Material" runat="server" method="post" enctype="multipart/form-data">
Neither of these work in c#:
string action = Material.Attributes["action"];
string tool = Material.Attributes["Tool"];
2. How to put in a linefeed in a textbox control, as the default value (line1, line2, line3)?
asp.net just combine the three lines into one long line.
When filling out the form, how do I enter a linefeed (which acts as pushing a button on the form)?
<asp:TextBox ID="ManualEntry" runat="server" Height="40">
# line1
# line2
# line3
Thanks
Alan
Two questions from a newbie. Thanks!
1. How do I get the posted argument as part of url, the "Tool=something" portion?
http://myapp.aspx?Tool=something
<Form ID="Material" runat="server" method="post" enctype="multipart/form-data">
Neither of these work in c#:
string action = Material.Attributes["action"];
string tool = Material.Attributes["Tool"];
2. How to put in a linefeed in a textbox control, as the default value (line1, line2, line3)?
asp.net just combine the three lines into one long line.
When filling out the form, how do I enter a linefeed (which acts as pushing a button on the form)?
<asp:TextBox ID="ManualEntry" runat="server" Height="40">
# line1
# line2
# line3
Thanks
Alan