Jump to content
Xtreme .Net Talk

sksmiths

Members
  • Posts

    2
  • Joined

  • Last visited

About sksmiths

  • Birthday 07/30/1963

sksmiths's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Is there a way to extend the functionailty of a data grid cell so that it can contain a checked list box. We have an application where a parent/child relationship exists and the child records have a field that is best suited with a checked list box (it is a bitmap enum value). Or if anyone has come across a similar sitiaution and can offer a suggestion regising how to implement such a field hat would be great. Thanks Tim Smith
  2. Opinions please... We have a web based application that is template driven. The template, HTML code, contains elements that we want to replace with code-generated HTML snippets (e.g. <FORM/> would be replaced with an HTML <form> Stuff here</form> element created by code). We have two paths there. First we can load the template into a StringBuilder object and use the .Replace method to perform the string replacement. Second, we can load the template into an XmlDocument object and replace the element using the replaceChild method. Both are fairly straightforward in nature, so the question is this: is one "better" than the other? Speed? Memory usage? This substitution is going to be used very heavily as each page of the site will be built using this code. Any suggestions? Thx Tim
×
×
  • Create New...