Mar 17, 2006 #1 millzy7 Programmer Dec 9, 2003 96 US What is the tag i need to add to an asp.net file for it to supprt classic asp?
Mar 17, 2006 1 #2 ca8msm Programmer May 9, 2002 11,327 GB There isn't one as far as I know. Classic ASP is supported by the ASP.NET engine but not recommended. What are you actually trying to do? ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
There isn't one as far as I know. Classic ASP is supported by the ASP.NET engine but not recommended. What are you actually trying to do? ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
Mar 17, 2006 Thread starter #3 millzy7 Programmer Dec 9, 2003 96 US I'm trying to create an xml document using asp.net using VB. dim writer as xmltextwriter writer=new xmltextwriter("photo.xml",null) But I get this error from this code. i tried replacing null with System.DBNull or just DBNull but that doesnt work either 'null' is not declared. 'Null' constant is no longer supported; use 'System.DBNull' instead. Upvote 0 Downvote
I'm trying to create an xml document using asp.net using VB. dim writer as xmltextwriter writer=new xmltextwriter("photo.xml",null) But I get this error from this code. i tried replacing null with System.DBNull or just DBNull but that doesnt work either 'null' is not declared. 'Null' constant is no longer supported; use 'System.DBNull' instead.
Mar 17, 2006 #4 ca8msm Programmer May 9, 2002 11,327 GB I'm not sure what that code has to do with classic ASP (which was your original question). Anyway, try passing through the Nothing keyword... ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
I'm not sure what that code has to do with classic ASP (which was your original question). Anyway, try passing through the Nothing keyword... ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
Mar 17, 2006 Thread starter #5 millzy7 Programmer Dec 9, 2003 96 US Thanks very much Replacing Null with Nothing fixed it Thanks Millzy Upvote 0 Downvote
Mar 17, 2006 #6 DotNetBlocks Programmer Apr 29, 2004 161 US Try isdbnull(var)= T/F It works fine for me in .net Babloome Upvote 0 Downvote