GeekArticles
Web Programming
Java ScriptWorking with Compressed Resources in .NET
Author: eggheadcafe.com |
Published: 10th Aug 2005 |
Visited: 533 times |
Add CommentFiled in: Java ScriptBy Peter A. Bromberg, Ph.D. Printer - Friendly Version The ability to use some of the built in methods of the Assembly class, such as GetManifestResourceStream, makes it easy for developers to embed resources of almost any type into an assembly and access these at runtime to be used in the functionality of the class itself. You can embed almost any type of resource - images, Javascript files, text representations of XmlDocuments, and even delimited text files that have been exported...n
Read Article Sponsored Links
Related Articles
• Accessing Repository Resources with SQL Accessing Repository Resources with SQL
In fact, Oracle XML DB repository resources are stored in a set of database tables and indexes, which can be accessed via SQL. You are not supposed to access those tables directly. Instead, Oracle XML DB provides two public views RESOURCE_VIEW and PATH_VIEW th ...
• Accessing Repository Resources with SQL Accessing Repository Resources with SQL
In fact, Oracle XML DB repository resources are stored in a set of database tables and indexes, which can be accessed via SQL. You are not supposed to access those tables directly. Instead, Oracle XML DB provides two public views RESOURCE_VIEW and PATH_VIEW...
• Working with XML Data Using LINQ, a TreeView, and a ListView :: Editing Data
ASP.NET includes a variety of tools for displaying and editing XML documents. A previous article, Working
with XML Data Using LINQ, a TreeView, and a ListView :: Displaying Data, showed how with a TreeView control, a ListView control, an XmlDataSource control,
a LinqDataSource control, and about 50 ...
• ODP.NET - Working with DataTableReader ODP.NET - Working with DataTableReader
DataTableReader is complementary to a DataTable object, and is mainly used as a type of Data Reader in the disconnected mode. The following is the modified code:
Visit http://www.exforsys.com to read complete article
...
• ODP.NET - Handling Nulls when Working with OracleDataReader ODP.NET - Handling Nulls when Working with OracleDataReader
When we work with OracleDataReader (or for that matter, even with data rows in a data table), we may come across nulls. The following is the efficient way to deal in with such scenarios:
Visit http://www.exforsys.com to read complete arti ...
• ODP.NET - Working with Bind Variables together with OracleParameter ODP.NET - Working with Bind Variables together with OracleParameter
With the help of OracleParameter, you can include bind variables within any SQL statement. These bind variables are nothing but run-time query parameters. The values in the SQL statement are bound at run time when we use bind...
V ...
• ODP.NET - Working with OracleDataAdapter with OracleCommand ODP.NET - Working with OracleDataAdapter together with OracleCommand
In the previous examples, we worked with OracleDataAdapter by directly specifying SQL statements. You can also pass OracleCommand to OracleDataAdapter. This is very useful if you deal with stored procedures (covered in Chapter 5). ...