Few ideas: Let's say you copied the following comma delimited text to the Clipboard: Smith,John,123@abc.com You need to separate the values using StringSplit command and send them to the web form. ;extract the data StringSplit, Value, Clipboard, `, Surname:=Value1 Name:=Value2 Mail:=Value3 ;send the...