Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~3K People Reached
Member Avatar for scranton

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?

Member Avatar for scranton
0
47
Member Avatar for scranton

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 …

Member Avatar for scranton
0
294
Member Avatar for scranton

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="&lt;" />[/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. …

Member Avatar for scranton
0
88
Member Avatar for scranton

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 …

Member Avatar for scranton
0
437
Member Avatar for scranton

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

Member Avatar for alc6379
0
118
Member Avatar for scranton

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 …

Member Avatar for scranton
0
87
Member Avatar for scranton

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?

Member Avatar for smokewire
0
172
Member Avatar for scranton

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?

Member Avatar for scranton
0
122
Member Avatar for ribot

Hi, I'm trying to make a simple site with some boxes. I wonder how to do these things: 1. Both boxes should have the same height, no matter which one has more content. 2. The right box should fill out the remaining space (except margin) and be on the right …

Member Avatar for langsor
0
154
Member Avatar for Kruptein

I've seen on a lot of sites that when you scroll down a text, the background image stays the same; If I scroll down the image stays on the place and the piece of text that can't fit on the image height is shown on a white background; how can …

Member Avatar for Kruptein
0
71
Member Avatar for yara.008

hi i want html editor and i search i find many but it dose not work with asp.net page i try to get help to design by my self i dont find any resource i need help :( i need simple html editor not complex one and i need resource …

Member Avatar for scranton
0
94
Member Avatar for scranton

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 …

Member Avatar for scranton
0
104
Member Avatar for scranton

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' …

Member Avatar for scranton
0
75
Member Avatar for scranton

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?

Member Avatar for scranton
0
183
Member Avatar for scranton

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 …

Member Avatar for scranton
0
1K