can you not copy the error text to the clipboard? we need the text from: Exception Information =====================
"When the only tool you have is a hammer, a sore thumb you will have."
can you not copy the error text to the clipboard? we need the text from: Exception Information =====================
"When the only tool you have is a hammer, a sore thumb you will have."
you need to show us the exception information - scroll err2.jpg down a bit...
"When the only tool you have is a hammer, a sore thumb you will have."
loading a 100mb xml file into the DOM model is going to hurt - you can expect it to take up 10 times the size on disk when its in memory.... so you could use the MSXML 3.0 Sax implementation instead... http://www.xml.com/pub/a/2002/03/06/efficient.html?page=last&x-order=date[^]
"When the only tool you have is a hammer, a sore thumb you will have."
lol strange coincidence... :laugh: i used to design direct marketing systems for exactly this kind of thing (CMT/NDL/Claritas) check you IO and Page faulting...
"When the only tool you have is a hammer, a sore thumb you will have."
I have a general rule when it comes to optimization: - the fastest way to do something is not to do it i.e. does you code really need to count the bits? is there a way to avoid it? what are you counting bits for btw?
"When the only tool you have is a hammer, a sore thumb you will have."
use internet explorer - there are a few articles on code project.
"When the only tool you have is a hammer, a sore thumb you will have."
your technique is generally the fastest... have a look at http://forums.devshed.com/t70218/s.html?highlight=lookup+values[^] for a discussion....
"When the only tool you have is a hammer, a sore thumb you will have."
your problem is prob. related to permissions - applicatations don't get IsolatedStorage by default http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbconsecurefiledataaccessinwindowsforms.asp[^]
"When the only tool you have is a hammer, a sore thumb you will have."
http://www.codeproject.com/csharp/WinTail.asp[^]
"When the only tool you have is a hammer, a sore thumb you will have."
:-D wow! this is one to add to your favourites if you want to call a win32 function but can't work out the c# signature... http://pinvoke.net/[^]
"When the only tool you have is a hammer, a sore thumb you will have."
I would think that a Regular Expression would be the best way to fix this - RegExp
"When the only tool you have is a hammer, a sore thumb you will have."
http://www.x2x2x.org/x2x2x/home/project_areas/project_plan/[^] a port of saxon handles this for you, thought you should know M$ is not going to put support of XSLT 2.0 is .net ever... http://blogs.msdn.com/mfussell/archive/2004/05/13/130969.aspx[^] which I am very unimpressed by...:mad:
"When the only tool you have is a hammer, a sore thumb you will have."
see http://www.codeproject.com/script/comments/forums.asp?forumid=3421&select=984122&msg=984122#xx984122xx[^]
"When the only tool you have is a hammer, a sore thumb you will have."
the reason it does not work is that your html is not valid.... you don't have to escape < if you have specificied the out as html and the document root is html. your code does not work as I suspect your "html" tag is in upper case! http://www.w3.org/TR/xslt#section-HTML-Output-Method[^]
"When the only tool you have is a hammer, a sore thumb you will have."
http://www.15seconds.com/issue/020903.htm[^]
"When the only tool you have is a hammer, a sore thumb you will have."
IsolatedStorageFile
"When the only tool you have is a hammer, a sore thumb you will have."
"When the only tool you have is a hammer, a sore thumb you will have."
try using the search function!! http://www.codeproject.com/csharp/VmEasyZipUnZip.asp[^] http://www.codeproject.com/buglist/jslibzipbug.asp[^]
"When the only tool you have is a hammer, a sore thumb you will have."
an XSLT file is just a normal xml file in a different namespace (http://www.w3.org/1999/XSL/Transform) so you can use any of the Xml classes to create it
"When the only tool you have is a hammer, a sore thumb you will have."
http://www.google.co.uk/search?sourceid=navclient&ie=UTF-8&q=%3Cxsl%3Ainclude%3E+vs+%3Cxsl%3Aimport%3E[^]
"When the only tool you have is a hammer, a sore thumb you will have."