Click here to Skip to main content
15,898,751 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
SQL
strPath = ConfigurationSettings.AppSettings("KeyMis") + "ApprovalPolicies.rdf"
      strPath = strPath & "&CHANNAL_TYPE=" & Trim(drpIntermediary.SelectedItem.Value) & "&BRANCHOFFICE=" & Trim(drpOffice.SelectedItem.Value) & "&FROM_DATE=" & Trim(txtFrmDate.Text) & "&TO_DATE=" & Trim(txtTodate.Text) & "&FROM_INTERMEDIARY_ID=" & Trim(txtFrmIntr.Text) & "&TO_INTERMEDIARY_ID=" & Trim(txtTointr.Text) & "&USERNAME=" & Trim(strUNmDet)
      strPath = strPath & "&USERID=" & Trim(strUidDet) & "&USER_ID=" & Trim(strUNmDet)
      strPath = strPath + strMore
      

      'response.write(strPath)
Posted

1 solution

I cant figure out what value you will be having in strPath
However from your question
if u have strpath="tnsc&corporation" alone
then you can display it as response.write(strPath.Replace("&", "and")).
 
Share this answer
 
Comments
Divya RS 18-Oct-12 5:03am    
Pls mark it as answer if it helps you

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900