http://topic.csdn.net/u/20111227/12/438014eb-06fe-4971-9213-4bee94b0251d.html?seed=1324424421&r=77086714#r_77086714中,如何把得到的值“554f6760343640a5b2ebdb80f2d3297d”
赋给string ttt变量?

解决方案 »

  1.   

    string ttt =  m.Groups["url"].Value;
    后面的就是那个帖子里面的正则。
      

  2.   


    不行呀,
    Console.WriteLine(ttt);
    没有返回值。
    {0}没这个不行
      

  3.   


    不行呀,
    Console.WriteLine(ttt);
    没有返回值没有{0}, Console.WriteLine也输不出值。
      

  4.   


    不行呀,
    Console.WriteLine(ttt);没有返回值没有{0},Console.WriteLine也是没有返回值的。会出错
      

  5.   

    string ttt=m.Groups["url"].Value;
      

  6.   

    不行呀,
    Console.WriteLine(ttt);没有返回值没有{0},Console.WriteLine会出错。
      

  7.   


    不行呀,
    Console.WriteLine(ttt);没有返回值没有{0},Console.WriteLine会出错。
      

  8.   

     
    HttpContext rq = HttpContext.Current;
    if (rq.Request.Form["ptk"] != null)
      {
            TempValue = rq.Request.Form["ptk"].ToString();
      }
    详细的看看这个
      

  9.   

    我用GetResponse,这个代码不合适吧。