When I put image in designer, I see this in source:
```
<img src="~/media(03461e74-5581-4510-b789-b8a28c741a20)" />
```
That's OK. But when I go back to VISUAL again, then back to SOURCE, I see immediately this:
```
<img src="/C1/media(03461e74-5581-4510-b789-b8a28c741a20)" />
```
__Tilde sign is replaced with the application's virtual path during page rendering.__
```
<img src="~/media(03461e74-5581-4510-b789-b8a28c741a20)" />
```
That's OK. But when I go back to VISUAL again, then back to SOURCE, I see immediately this:
```
<img src="/C1/media(03461e74-5581-4510-b789-b8a28c741a20)" />
```
__Tilde sign is replaced with the application's virtual path during page rendering.__