Magiciano
Magiciano

Reputation: 1

Do aspx/cs files contain meta data?

Do the aspx, aspx.cs, web.config and accdb contain any meta data that can be read when I publish my site? (E.g. the information that can be required by reading out jpeg files).

If yes, how to view/edit this?

P.s. Except the properties shown in windows explorer of course.

Thanks in advance.

Upvotes: 0

Views: 279

Answers (2)

Pradeep Kumar
Pradeep Kumar

Reputation: 6979

Whatever is in your aspx file, that's all what is there. If you have added some metadata there (usually in the < head>< /head> tags), then it will be there, otherwise not.

The aspx.cs file is never really sent to the webbrowser, so there is no question of it having metadata or not.

Upvotes: 1

Adrian Iftode
Adrian Iftode

Reputation: 15683

aspx.cs web.config files are plain text files with different extensions, they don't contain embedded metadata (data which would describe the content, etc).

As for the .accdb files, you can check this question

Upvotes: 0

Related Questions