Hi Naveen, you can study WebClient class. http://msdn.microsoft.com/en-us/library/system.net.webclient(VS.80).aspx
karmjit435
Posts
-
Logging to Website -
Need HelpWhile reading the value from textbox, Trim the blank spaces. That may cause some problem.
-
Regular expressionthere is another problem i have string Product : temp product name \ i have to extract the string after : and before \ KS
-
Regular expressionHi, Thanks that resolved my problem. Regards, KS
-
Regular expressioni have string String s = "this is Product : temp org is fine"; can you tell me how can can get "temp" only in my value group. here is what i tried Regex productRegex = new Regex(@"(Product) *(:b)*:(:b)*(? .+) "); can you tell me.. there can some error while posting the message after ? there is group.
-
Regular expressionok.. your point is right.. i was expecting this kind of reply.. i have string String s = "this is Product : temp org is fine"; can you tell me how can can get "temp" only in my value group. here is what i tried Regex productRegex = new Regex(@"(Product) *(:b)*:(:b)*(?<value> .+) ");
-
Regular expressionHi, This is my string "Product : tempuri" i want to search "Product :" and want to save the value of the next word in a group. please tell me the regex.