Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

saxparser - Difference in doing Android XML Parsing using DOM Parser and SAX Parser -


i know exact advantage gained in doing android xml parsing using dom parser , sax parser?
dom parser advantageous sax parser or vice-versa?

please clarify.

thanks,
sen

hi sax parsing best 1 implement dom, see difference between these 2 in following:

dom

  1. the nodes in form of tree structure
  2. memory: occupies more memory, dom preffered in case of small xml documents
  3. slower @ runtime
  4. stored objects
  5. programmatically easy implement
  6. ease of navigation , use.

sax

  1. sequence of events
  2. it doesn't use memory preferred large documents.
  3. faster @ runtime, because of above mentioned point.
  4. objects created.
  5. need write code creating objects
  6. in sax backward navigation not possible sequentially processes document

Comments

Popular posts from this blog

ios - Very simple iPhone App crashes on UILabel settext -

mysql - Why there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT clause? -

c# - Usage of Server Side Controls in MVC Frame work -