thats a rich text editing box , i already have a textarea place on my design posts to the other page but the thing posts next to my list of dropdown values on the page which im trying to get textarea data to show below the list of selected dropdown values
here goees in detail
i have edit/creatuser.aspx which has drop downs , textarea ,submit
all thos pass into progile.aspx shows all that data
but textarea is next to dropwdowns selected values which is wrong im basically wanted it to show description well below the dropdowns
richkyrs
Member
436 Points
500 Posts
how can i make a class for description
May 07, 2012 06:43 PM|LINK
how do i make a class for description
i have it made in my dropdown class but looks messy cause textarea is close to my dropdowns and values
sriramabi
Contributor
4351 Points
1277 Posts
Re: how can i make a class for description
May 07, 2012 06:49 PM|LINK
Hai frnd
u like this
pls see this link...
http://forums.asp.net/t/1487554.aspx/1
http://www.codeproject.com/Articles/3585/Creating-an-HTML-Text-Area-Server-Side-Control
thanks
</div>richkyrs
Member
436 Points
500 Posts
Re: how can i make a class for description
May 07, 2012 06:57 PM|LINK
thats a rich text editing box , i already have a textarea place on my design posts to the other page but the thing posts next to my list of dropdown values on the page which im trying to get textarea data to show below the list of selected dropdown values
here goees in detail
i have edit/creatuser.aspx which has drop downs , textarea ,submit
all thos pass into progile.aspx shows all that data
but textarea is next to dropwdowns selected values which is wrong im basically wanted it to show description well below the dropdowns
sriramabi
Contributor
4351 Points
1277 Posts
Re: how can i make a class for description
May 07, 2012 07:06 PM|LINK
Hai
u want this
Response.Redirect("~/edit/creatuser.aspx ?textarea =" + textarea.Value )
and get this querystring value ....
AnotherTextArea.Value= Request.QueryString["textarea "].ToString();
thank u
richkyrs
Member
436 Points
500 Posts
Re: how can i make a class for description
May 07, 2012 07:21 PM|LINK
i already have a response.redirect.profilepage.aspx
are you using appcode classes thats what im using
sriramabi
Contributor
4351 Points
1277 Posts
Re: how can i make a class for description
May 07, 2012 07:25 PM|LINK
U create one methode in class file ..thaese methode call in u r code behind and send parameter u r ddle and textarea values..
and finaly recieve parameter values in class file method ...and then use response.redirect inside classfile method
richkyrs
Member
436 Points
500 Posts
Re: how can i make a class for description
May 07, 2012 07:26 PM|LINK
i prefer tuturials do you have one ?
sriramabi
Contributor
4351 Points
1277 Posts
Re: how can i make a class for description
May 07, 2012 07:42 PM|LINK
Hai
pls see this
http://forums.asp.net/t/1355340.aspx/1/10
thank u
richkyrs
Member
436 Points
500 Posts
Re: how can i make a class for description
May 07, 2012 07:47 PM|LINK
ok thats kinf of helpfull but how i get that to work if my textbox name is txtdescription
sriramabi
Contributor
4351 Points
1277 Posts
Re: how can i make a class for description
May 07, 2012 07:49 PM|LINK
txtdescription.Text
and this is textarea..change text to value for
txtdescription.Value
thanks...