I would like to know how to give a space in the string for the vaue field in web.config file.
for example <add key="number" value="0001 " />
I would like to have a space entered after '1' in the above value field,I tried giving a space directly on to the value field,but this does not occur.
Kindly share your opinion/replies on the same.
Hi all, Sorry for not being clear.. This is what i want, am adding the following in the web.config file '' I use this as a prefix in the text box where once a user clicks on a particular key, the above prefix is entered in the text box allowing the user to suffix the net few digits only.
So in my code
Tbx.text=app.DeploymentConfigurations["number"];
But i want a space after the 0001 to also be prefixed. How do i give that in the key value.
Note: i do not want the space to be hard coded.. I have already done that. Space is a requirement now, but it might change later. So it would be better if i have the spacce included in my app settings so that user will have to change it only on the config file and not on the code. Thank you all