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

15 Posted Topics

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
49
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
297
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
92
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
441
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
124
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
90
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
175
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
124
Member Avatar for ribot
Member Avatar for Kruptein

i think [B]background-attachment[/B] is the style property you're looking for <body style="background-image:url(image.jpg);background-attachment:fixed">

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

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

Member Avatar for scranton
0
100
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
107
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
80
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
186
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

The End.