hi,
Can anyone tell me how to make a procedure or function to wrap text.
Right Now I am using the following code to wrap text in gridview.
If Not IsPostBack Then
Grid_email.Attributes.Add("style", "word-break:break-all;word-wrap:break-word")
load_grid(True)
If Not String.IsNullOrEmpty(Request.QueryString("i")) Then
bind_email_detail()
Else
btn_cancel.Visible = False
End If
End If