No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
15 Posted Topics
DirectoryEntry(path, username, password) does username have to be in the format "domain\username" or can it be just "username"? what happens if you dont supply a domain? | |
i'm trying to make an IComparer that will sort numbers in ascending order with the exception that any negative values (in my case, all -1's) will sort to the end. the sequence would be 0, 1, 2, 3, -1, -1, -1... but i'm wasting all dam day and getting nowhere … | |
apparently attributes on web controls are automatically partially encoded for example, if you do the following [CODE]System.Web.UI.WebControls.Image img = new System.Web.UI.WebControls.Image(); img.Attributes.Add("whatever","<");[/CODE] you get this in html [CODE]<img whatever="<" />[/CODE] (the < is encoded) but, [CODE]img.Attributes.Add("whatever",">"); [/CODE] results in [CODE]<img whatever=">"/>[/CODE] (the > is not encoded) i dont know why. … | |
can anyone help me? i'm getting the following error: java.lang.IllegalArgumentException: Null property value for 'revision' at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:693) at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:741) at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:716) at org.apache.struts.taglib.html.BaseFieldTag.doStartTag(BaseFieldTag.java:192) at org.apache.struts.taglib.html.HiddenTag.doStartTag(HiddenTag.java:123) at org.apache.struts.taglib.nested.html.NestedHiddenTag.doStartTag(NestedHiddenTag.java:95) [COLOR="Red"]at /proposal/propAndRev.jsp._jspService(/proposal/propAndRev.jsp.java:1143) (JSP page line 667)[/COLOR] at com.orionserver[Oracle9iAS (1.0.2.2) Containers for J2EE].http.OrionHttpJspPage.service(OrionHttpJspPage.java:54) at com.evermind[Oracle9iAS (1.0.2.2) Containers for J2EE].server.http.HttpApplication.serviceJSP(HttpApplication.java:5458) at com.evermind[Oracle9iAS (1.0.2.2) Containers for … | |
RegisterClientScript and all variations are missing vb.net 1.1 there's nothing under page or me or clientscript or anything else i can think of | |
hi i have a HiddenField control that i have to create at run time. it's populated by javascript on the client end, but each postback it's created again and loses its value. where do i have to create it, or what do i have to do to make it keep … | |
i'm trying to figure out how to write a query like the following, but in a way that works: select * from (1,2) or select (1,2) ... the result i'm aiming for is 1 2 can this be done? | |
This is new for me so I'm not really sure how to do this... I'm trying to create a base class that I can inherit from but there are some fields that I need to ensure each inheriting class specifies a value for. How do I do that? | |
Re: i think [B]background-attachment[/B] is the style property you're looking for <body style="background-image:url(image.jpg);background-attachment:fixed"> | |
Re: you can get [URL="http://www.microsoft.com/express/vwd/"]visual web developer 2008 express[/URL] free from microsoft. i wouldnt call it simple but it's good for javascript, html, and i assume asp | |
i dont know where to ask this, or how to ask this, but i need help understanding how to deploy an unsigned windows forms control to be used in a .net web application. i cant package it into a CAB file and reference that from the codebase property because the … | |
I borrowed some code for a windows file browser from the internet. It creates a tree of all folders starting from 'Desktop' like a good file browser should, but there's a bit of a problem with 'my network places'. As it is it shows all folders under 'my network places' … | |
I have a Windows Forms Control that I'm using in a web page and I want to get access to the HttpContext of the page from the control. Is there any way to do that? | |
Hi I created a custom System.Windows.Forms.Panel so I could override the OnPaint event and make it draw a gray border, but the inside of the panel is picking up all kinds of gray lines when the window scrolls or anything moves over top of the panel. Does anyone know how … |
The End.