what is difference between a textbox and a textarea http://forums.asp.net/t/1797471.aspx/1?what+is+difference+between+a+textbox+and+a+textarea+Wed, 02 May 2012 08:36:19 -040017974714953680http://forums.asp.net/p/1797471/4953680.aspx/1?what+is+difference+between+a+textbox+and+a+textarea+what is difference between a textbox and a textarea <p>ok i want to know what is difference between a textbox and a textarea</p> <p>far as i know i can stretch textbox use it as a message&nbsp;, however i have that textbox placed in my editprofile page ,</p> <p>but cant seem to get it to show the text of that in profile page when finished typing all that i n the input of the textbox</p> <p>is there value you needed or something? tried youtube, google, all they come up with is a show.box which i dont wont ,</p> <p>so how does that pass to that other page</p> <p>&nbsp;</p> 2012-04-26T20:17:07-04:004953690http://forums.asp.net/p/1797471/4953690.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p><span style="color:#333333; font-family:Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif; font-size:13px; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; line-height:normal; orphans:2; text-indent:0px; text-transform:none; white-space:normal; widows:2; word-spacing:0px; background-color:#fafafa; display:inline!important; float:none">Text box - an editable control suitable for character, numeric, and date/time data</span><br style="color:#333333; font-family:Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif; font-size:13px; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; line-height:normal; orphans:2; text-indent:0px; text-transform:none; white-space:normal; widows:2; word-spacing:0px; background-color:#fafafa"> <br style="color:#333333; font-family:Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif; font-size:13px; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; line-height:normal; orphans:2; text-indent:0px; text-transform:none; white-space:normal; widows:2; word-spacing:0px; background-color:#fafafa"> <span style="color:#333333; font-family:Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif; font-size:13px; font-style:normal; font-variant:normal; font-weight:normal; letter-spacing:normal; line-height:normal; orphans:2; text-indent:0px; text-transform:none; white-space:normal; widows:2; word-spacing:0px; background-color:#fafafa; display:inline!important; float:none">Text area - similar to a text box, but with multiple lines</span></p> <p></p> 2012-04-26T20:24:07-04:004953694http://forums.asp.net/p/1797471/4953694.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>sriramabi i appreciate the effort you put in there but that no what im looking for</p> <p>im looking for say i have a textbox ,then run it , i type well hello there world , passes that to the other page with say say 400 words etc</p> 2012-04-26T20:27:41-04:004953707http://forums.asp.net/p/1797471/4953707.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>pass values(many Charectrs) use query string ..and get another page use multiline textbox...</p> <p></p> <p>thank u</p> <p></p> 2012-04-26T20:43:34-04:004953735http://forums.asp.net/p/1797471/4953735.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>wow thats just smashing for a beginner (not)</p> 2012-04-26T21:02:40-04:004953739http://forums.asp.net/p/1797471/4953739.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>K Now what u want???</p> <p></p> <p>thanks</p> 2012-04-26T21:05:43-04:004953744http://forums.asp.net/p/1797471/4953744.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>i do already have a page for it ,but its the way this coder set it up , way confusing for my likin ,</p> <p>if i did it my way would of been easier , to navigate about , but the way hes coded i cant figure it out no even google has answers to it</p> 2012-04-26T21:07:49-04:004953757http://forums.asp.net/p/1797471/4953757.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>you would have to look at profile yourself to see what im talking about</p> 2012-04-26T21:15:13-04:004953759http://forums.asp.net/p/1797471/4953759.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>sry,u like&nbsp; check pls</p> <p>its one default.aspx page</p> <p>&nbsp;</p> <pre class="prettyprint">&lt;asp:ImageButton ID=&quot;imgEdite&quot; runat=&quot;server&quot;ToolTip=&quot;Edit&quot; PostBackUrl='&lt;%# &quot;~/EditScore.aspx ?Values=&quot; &#43; Eval(&quot;Values&quot;) %&gt;' ImageUrl=&quot;~/Images/Editicon.jpg&quot; /&gt;</pre> <p></p> <p></p> <p>and &nbsp;<strong>EditScore</strong>.aspx page(another page)</p> <p>design:</p> <p>&lt;asp:TextBox ID="txtValue" <strong>TextMode="MultiLine" Width="500px" Height="400px"</strong> runat="server"&gt;&lt;/asp:TextBox&gt;</p> <p>code begind</p> <pre class="prettyprint">protected void Page_Load(object sender, EventArgs e) { if (Request.QueryString["Value"] != null) { txtValue.Text= Convert..ToString(Request.QueryString["Value"]); }</pre> <p><br> <br> </p> <p>thank u</p> 2012-04-26T21:15:55-04:004953799http://forums.asp.net/p/1797471/4953799.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>thats an error</p> <p><span class="pln">&lt;asp:ImageButton ID=&quot;imgEdite&quot; runat=&quot;server&quot;ToolTip=&quot;Edit&quot; PostBackUrl='</span><span class="pun">&lt;%</span><span class="com"># &quot;~/EditScore.aspx ?Values=&quot; &#43; Eval(&quot;Values&quot;) </span><span class="pln">%&gt;'&nbsp;<br> &nbsp; ImageUrl=&quot;~/Images/Editicon.jpg&quot; /&gt;</span></p> <p><span class="pln">last code you gave worked </span></p> 2012-04-26T21:47:33-04:004953810http://forums.asp.net/p/1797471/4953810.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>k sry sry pls kust change my code</p> <p><span class="pln">PostBackUrl='</span><span class="pun">&lt;%</span><span class="com"># &quot;~/EditScore.aspx ?Values=<strong>&quot; &#43; TxtValue.Text</strong> &nbsp; </span><span class="pln">%&gt;' </span></p> <p><span class="pln">and set <span class="pln">ImageUrl=&quot;~/Images/Editicon.jpg&quot;</span> for u put correct image both...</span></p> <p><span class="pln">this <span class="com"><strong>TxtValue.Text</strong></span> means.you'r values....its my just examble code .you modification in this code....<br> </span></p> 2012-04-26T21:56:18-04:004953822http://forums.asp.net/p/1797471/4953822.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>ok i got it but thats never going to work in my project</p> <p>have you ever used things like userObject.cs UserHelper.cs classes App_Code ?</p> 2012-04-26T22:08:22-04:004953825http://forums.asp.net/p/1797471/4953825.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>S i m alredy any time use sqlhelper .You want sql helper....</p> <p>pls use this</p> <p><a href="http://solve-dotnet.blogspot.in/2012/02/sqlheplercs.html">http://solve-dotnet.blogspot.in/2012/02/sqlheplercs.html</a></p> <p>thanks...</p> <p></p> 2012-04-26T22:11:10-04:004953827http://forums.asp.net/p/1797471/4953827.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>no i just want to know how i can add that textbox for messaging just like yours in my project , but that app_Code stuff i no nothing about if you could show me how were it goes</p> 2012-04-26T22:13:38-04:004953829http://forums.asp.net/p/1797471/4953829.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>are u use database?...</p> <p>use database and create table then insert messaging in database table using insert query....</p> <p>thanks</p> <p></p> 2012-04-26T22:16:34-04:004953832http://forums.asp.net/p/1797471/4953832.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p></p> <blockquote><span class="icon-blockquote"></span> <h4>richkyrs</h4> <p></p> <p>no i just want to know how i can add that textbox for messaging just like yours in my project , but that app_Code stuff i no nothing about if you could show me how were it goes</p> <p></p> </blockquote> <p></p> <p>create one class file App_code is automaticaly Create(display) in u r project. solution explorer..</p> <p></p> 2012-04-26T22:18:40-04:004953834http://forums.asp.net/p/1797471/4953834.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>this is the trouble when i go into database doesnt show the fields untill i pretend im a registered user then open table it shows the database stuff , its like hes created it so it it justs loads it by itself in my tables it only shows username password password salt ,</p> <p>on other table it likes it cant be seen till user registers</p> <p>you want a look at project to see what i mean ?</p> 2012-04-26T22:20:28-04:004953838http://forums.asp.net/p/1797471/4953838.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>K crate new tabe(UserProfile) and profileId and userid refer forienkey in u r user table....and add Messaging coloumn in userprofile table datatype nvarchar(Max),....</p> <p>thank u</p> 2012-04-26T22:27:54-04:004953839http://forums.asp.net/p/1797471/4953839.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>this is what i have in App_code folder <br> ClassDiagram.cd<br> GenericResponse.cs<br> LoginHelper.cs<br> ProfileDataAttribute.cs<br> SaltedHash.cs<br> UserHelper.cs<br> UserObject.cs</p> 2012-04-26T22:27:54-04:004953840http://forums.asp.net/p/1797471/4953840.aspx/1?Re+what+is+difference+between+a+textbox+and+a+textarea+Re: what is difference between a textbox and a textarea <p>can i no just add it to my table that i have if there is away of doing this?</p> 2012-04-26T22:29:29-04:00