In VS.NET I always see resx file behind every aspx. Is it compulsory necessary...if so how can I modify it....For example..if I want to create sample.aspx and sample.vb dynamically, how about sample.resx file....can anybody let me know..
Printable View
In VS.NET I always see resx file behind every aspx. Is it compulsory necessary...if so how can I modify it....For example..if I want to create sample.aspx and sample.vb dynamically, how about sample.resx file....can anybody let me know..
The .resx resource file format consists of XML entries, which specify objects and strings inside XML tags. One advantage of a .resx file is that when opened with a text editor (such as Notepad or Microsoft Word) it can be written to, parsed, and manipulated. When viewing a .resx file, you can actually see the binary form of an embedded object (a picture for example) when this binary information is a part of the resource manifest. Apart from this binary information, a .resx file is completely readable and maintainable.
You can refer to the following article
ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpconcreatingresourcefiles2.htm