well if somebody have time and patience to help me
i have this string
vpc_Amount=4995&vpc_BatchNo=0&vpc_Command=capture&vpc_Locale=en&vpc_MerchTxnRef=test1234%2F1&vpc_Merchant=TESTMERCHANT01&vpc_Message=Merchant+%5BTESTMERCHANT01%5D+does+not+exist&vpc_TransactionNo=0&vpc_TxnResponseCode=7&vpc_Version=1
i have to do this
Version: 1
Command: capture
MerchTxnRef: test1234/1
Merchant: TESTMERCHANT01
Amount: 4995
TxnResponseCode: 7
TransactionNo: 0
Message: Merchant [TESTMERCHANT01] does not exist
AcqResponseCode: No Value Returned
ReceiptNo: No Value Returned
BatchNo: 0
AuthorizeId: No Value Returned
Card: No Value Returned
ShopTransactionNo: No Value Returned
AuthorisedAmount: No Value Returned
CapturedAmount: No Value Returned
TicketNo: No Value Returned
and i need to use hashtable
set/get must be like this..for ex
private string _Version;
public string Version
{
get { return _Version; }
set { _Version = value; }
}
can somebody show me how to do this?