System.Text.UTF8Encoding encoder = new System.Text.UTF8Encoding();
System.Text.Decoder utf8Decode = encoder.GetDecoder();
byte[] todecode_byte = Convert.FromBase64String(DTourPrNo);----->here i am getting error.
int charCount = utf8Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);
char[] decoded_char = new char[charCount]; utf8Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0);
string result = new String(decoded_char); return result;
System.Text.Decoder utf8Decode = encoder.GetDecoder();
byte[] todecode_byte = Convert.FromBase64String(DTourPrNo);----->here i am getting error.
int charCount = utf8Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);
char[] decoded_char = new char[charCount]; utf8Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0);
string result = new String(decoded_char); return result;
Jiyaul MustaphaPosted Jun 4, 2019, 4:42 AM
Suthish NairPosted Oct 8, 2010, 10:01 AM
Also attach your page code..
spandana nairPosted Oct 8, 2010, 7:40 AM
Suthish NairPosted Oct 8, 2010, 6:54 AM
spandana nairPosted Oct 8, 2010, 6:47 AM
tpno = Request.QueryString["tour"].ToString();
tpno = ObjCon.base64Decode(tpno);
tpno = tpno.Replace("P!r@u#o$t", "");
after this code it goes to that loop.
spandana nairPosted Oct 8, 2010, 5:57 AM
tpno = Request.QueryString["tour"].ToString();
tpno = ObjCon.base64Decode(tpno);
tpno = tpno.Replace("P!r@u#o$t", "");
after this code it goes to that loop.
Suthish NairPosted Oct 8, 2010, 5:51 AM
refer another discussion, might helps you:
http://www.vbforums.com/showthread.php?s=&threadid=287324