Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: NMDUC
  • Content: Threads
  • Order by date
  1. NMDUC

    Why is unneeded space added?

    Hi, I am making a layout for my web site. There is a line which contains a ASP.NET breadcrumb and a slogan. Here are my code: <div class="header_thirdline"> <asp:SiteMapPath runat="server" ID="SiteMapPath1" CurrentNodeStyle-CssClass="BreadcrumbText" PathSeparatorStyle-CssClass="BreadcrumbText"...
  2. NMDUC

    How to invisble header of site when previewing before print?

    Hi, I see in some ste, we can not see the header when choosing Print Preview in the web browser. For instance, in the www.yelp.com site, I don't see the header of the page. Could you tell me how to do it, please? Thank in advance. Duc
  3. NMDUC

    Questions about email address

    Hi, I need to control the input of email address. What is the maximum number of characters for email address? And can you tell the good email regular expression, please? I found some but they still have a fault. For example, they can not realize this fault address abcdef@yahoo.com;dsdsd or...
  4. NMDUC

    An error in VS.NET 2005

    I sometimes meet this errors when running a web application. Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0006...
  5. NMDUC

    How to validate data in textarea?

    Hi, In a form, there are a textarea and a ASP.NET's button. When I input data as below, it generated an error when I clicked the button. #include <xercesc/util/PlatformUtils.hpp> #include <xercesc/util/TransService.hpp> #include <xercesc/parsers/SAXParser.hpp> A potentially dangerous...
  6. NMDUC

    Tools for CSS in IE?

    Hi, I have used tools in FF which is very useful to work with CSS such as CSSViewer, EditCSS... Could you recommend to me any tools like those for IE, please? Sometimes, the results in IE and FF are different and I don't know where the problem is. Thank in advance Duc
  7. NMDUC

    Why do Image Buttons do not work?

    Hi, I have a list of Image Buttons like this. <div id="nav"> <ul> <li><asp:ImageButton ImageUrl="~/images/profile.jpg" runat="server" ID="ibtnProfile" AlternateText="Profile" Enabled='<%# (HttpContext.Current.User.Identity.Name != null) && (HttpContext.Current.User.Identity.Name !=...
  8. NMDUC

    How to set a whole page center?

    Hi, I would like to put a whole page in the center despite the change of monitor's resolution. I try to use this CSS body { margin-right: 5%; margin-left: 5%; text-align : center; } #wrapper { width:900px; text-align:left; } But it works only in IE. But in the FF, it...
  9. NMDUC

    Looking for spell check components

    Hi, I am looking for spell check components in a textbox. If you know any free one, please let me know. Thank in advance.
  10. NMDUC

    Look for Javascript code in ASP.NET

    Hi, I have a textbox and a button. When user clicks button, it will popup a window asking "Do you want to saving it?". If yes, it will go on to store the data to the database. Please tell me how to generate the Javascript code like this in ASP.NET. Thank in advance.
  11. NMDUC

    Rating for somthing

    Hi, I see that there is nice rating section in some websites. In this section, there are 5 stars. For example, if you give the article or something 3 stars, click the third star. And three stars from the left to right is highlighted. I am looking for any script to do it. Please tell me how to do...
  12. NMDUC

    Get multiple paragraphs

    I want to build a control that looks like a editor but I don't need many editor's features. In this control, user can input in a textbox with multiple paragraphs. And I want to get what user typed there. If I use a ASP.NET's textbox, I get a string, not the multiple paragraphs. Please help me to...
  13. NMDUC

    Filter text in ASP.NET

    Hi, I would like to make a control which has a textbox. When the user submit the content in the textbox, there is something filtering the text to make sure if it does not contain any rude world. Is there any class in ASP.NET which can help me to do it? Please help me. Thank in advance.
  14. NMDUC

    Confusion of XML node

    Hi, I am confused with XML node. For example, we have this XML document. <?xml ....> <doc> <address type="home">123 BangKoc</address> </doc> When we parse it, how many nodes do we have? Thank in advance.
  15. NMDUC

    What order does SAX parser traverse a tree?

    Hi, Can you tell me what order SAX parser traverses a tree, please? It might look like post-order but I am not sure. Thank in advance. Duc
  16. NMDUC

    Common types of XML documents?

    Hi, XML is flexible, self-descrbing so it can represent many types of data. I wonder what common types of XML documents are. Can you help me, please? I see that some XML documents have structures like this example <SVs> <Sv> <Publications> <Title>Detecting changes</Title> <Title>XML...
  17. NMDUC

    Looking for XML change simulator

    Hi, I am doing a research in XML chagen detection. I am looking for a simulator to create a change in XML documents. Do you know about it? Please help me. Thank in advance. Duc
  18. NMDUC

    Please help me to parse XML documents with C/C++

    Hi, Can anyone help me documents of how to parse XML documents with C/C++, please? I can find available guidelines in Java language. But I don't know how to start parsing XML with C/C++. Thank in advance.
  19. NMDUC

    Find XML data?

    Hi, I am looking for XML data to use in my research. Could you tell me where I can download the XML data source, please? Thank in advance. Duc
  20. NMDUC

    Drawbacks of using semantic to detect change?

    Hi, I saw that someone used the semantic to detect the change in XML document. Could you tell me the advantages and limitations of using semantic, please? Thank in advance.

Part and Inventory Search

Back
Top