Search

You searched for the word(s): userid:573264

Matching Posts

  • rectangle with a gradient fill and bottom and right border (poor quality)

    This is the code from my .ashx file. The image looks great until I start adding the bottom and left right border code. The image quality decreases. Public Sub ProcessRequest( ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest Dim rectangle As New Rectangle(0, 0, 300, 32) Dim gradient As New LinearGradientBrush(rectangle, Color.Transparent, Color.Transparent, LinearGradientMode.Vertical) Dim colorBlend As New ColorBlend(2) Dim color1 As Color = ColorTranslator.FromHtml( "#DE5239"
    Posted to System.Drawing/GDI+ (Forum) by cb3431 on 10/14/2008
  • JavaScript NetworkCredential

    I'm having a hard time getting my head around passing Basic authentication credentials to my WCF service with a webHttpBinding and transport security. < webHttpBinding > < binding name = " secureWeb " > < security mode = " Transport " > < transport clientCredentialType = " Basic " /> </ security > </ binding > </ webHttpBinding > I cam across this, but it isn't making any sense. var myCred : NetworkCredential = new NetworkCredential
    Posted to Client Side Web Development (Forum) by cb3431 on 8/7/2008
  • Re: Authenticated WCF with AJAX

    Did you find a way to do this?
  • ajax-enabled wcf service security

    Is an ajax-enabled wcf service reachable to anything other than the web project that is hosting it? Configuration: <system.serviceModel> <behaviors> <endpointBehaviors> <behavior name="ServiceAspNetAjaxBehavior"> <enableWebScript /> </behavior> </endpointBehaviors> </behaviors> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> <services> <service name="Service"> <endpoint address=""
  • Circular Reference, IHierarchyData, IXmlSerializable

    I have encounterd a circular reference problem with my class. My class implements IHierarchyData and IXmlSerializable. I'm not trying to serialize the hierachical representation of my data just a single instance of the object. The hierachy is basically a folder structure and I am just trying to serialize the properties for one folder. I think I am getting the circular reference because the IHierarchyData methods are being hit. The code I am calling to get the single folder is just a reader that
    Posted to XML Web Services (Forum) by cb3431 on 7/3/2008
  • refresh data in cascadingdropdown

    I have a page with two dropdowns using the cascadingdropdown extender and a form inside an update panel. I am updating the text value of the second dropdown along with other information in the update panel. I can't get the second dropdown to refresh itself after I save the information in the form. I have tried this: function endRequest(sender, args) { $find("cddlSecond").set_contextKey(''); $find("cddlFirst").set_contextKey(''); $find("cddlFirst"
    Posted to ASP.NET AJAX Control Toolkit (Forum) by cb3431 on 5/8/2008
  • Color Picker

    I am sure a request for a color picker has already been made and if not I would like to make the request. I think it would benefit many to have a color picker that works much like the calendar control does. I created a calendar user control and it works great when there is only a single instance of the control on the page, but it really destroys the performance of the page when there is more than one instance on a page.
  • XmlRoot

    I have a class that implements IXmlSerializable my class has <XmlRoot("MarketList")>. When I serialize the object I don't get MarketList as the root. I do get MarketList as the root if I do it like this Dim x As New XmlSerializer(MarketList.GetType(), New XmlRootAttribute("MarketList")) From everything I have read the <XmlRoot("")> should be working. Is my understanding incorrect?
    Posted to XML and XmlDataSource Control (Forum) by cb3431 on 1/24/2008
  • Re: javascript handling gridview row click

    No luck. It says it has no properties.
    Posted to Data Presentation Controls (Forum) by cb3431 on 1/15/2008
Page 1 of 28 (277 items) 1 2 3 4 5 Next > ... Last »