want to read a field line by line.
-
Hi, I having a column named Steps which has more than five steps in it with line break now i want to read it line by line. Example: Steps has the following data in one field. 1.Type the valid URL in the address bar. 2.Enter the valid Username in the username textbox. 3.Enter the valid Password in the password textbox. 4.click log in button. 5.click ok button. i need to read it as 1.Type the valid URL in the address bar. 2.Enter the valid Username in the username textbox. 3.Enter the valid Password in the password textbox. 4.click log in button. 5.click ok button. Can anybody help me please very urgent... kokila B
-
Hi, I having a column named Steps which has more than five steps in it with line break now i want to read it line by line. Example: Steps has the following data in one field. 1.Type the valid URL in the address bar. 2.Enter the valid Username in the username textbox. 3.Enter the valid Password in the password textbox. 4.click log in button. 5.click ok button. i need to read it as 1.Type the valid URL in the address bar. 2.Enter the valid Username in the username textbox. 3.Enter the valid Password in the password textbox. 4.click log in button. 5.click ok button. Can anybody help me please very urgent... kokila B
Replace the end of line (
Environment.NewLine
) with a<br/>
Upcoming FREE developer events: * Developer Day Scotland My website
-
Replace the end of line (
Environment.NewLine
) with a<br/>
Upcoming FREE developer events: * Developer Day Scotland My website
-
Thanks for your immediate help.. Storing the data is not through Program its from another DB. so i cant concenrate on insert part.. Kokila B
Ya I got the result Dim a() As Char = {"" & Chr(10) & ""} ds = bl.GetStepDS(record(0)) Dim strtest As String = Nothing strtest = ds.Tables(0).Rows(0).Item(0).ToString() Dim strarray() As String = strtest.Split(a) You will get each line in array strarray. Thanks, Kokila