Search

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

Matching Posts

  • Ajax Image Editor Component

    Does anyone know about any online image editor component like this: http://www.polyvore.com/cgi/app ? with drag and drop, layering, rotation, flip and flop features. I need to integrate it into my ASP.NET application. Thanks.
    Posted to Component Discussions (Forum) by Wells on 7/13/2009
  • Re: ASP.net client consuming a NuSoap web service

    I have error while consuming NuSoap web service from csharp. This is my sample web service: http://rhinosubmitws.rhinodirectory.com/server3.php http://rhinosubmitws.rhinodirectory.com/server3.php?wsdl This is my php server code: <? // NuSoap API require_once('lib/nusoap.php'); // create the server instance $webServer = new soap_server(); $namespace = 'http://rhinosubmitws.rhinodirectory.com/server3.php?wsdl'; $webServer->configureWSDL('ws'); $webServer->wsdl->schemaTargetNamespace
    Posted to XML Web Services (Forum) by Wells on 7/1/2009
  • Error while consuming PHP Web Service from .NET

    Hi, I have a PHP Web Service: http://rhinosubmitws.rhinodirectory.com/service.php?class=rhinoService I added web reference with the URL : http://rhinosubmitws.rhinodirectory.com/service.php?class=rhinoService&wsdl I call the web method getXML("abc") in order to return a string. But i have this error "Client found response content type of 'text/html', but expected 'text/xml'. The request failed with the error message:"; However, if i run the Web Service in localhost
    Posted to XML Web Services (Forum) by Wells on 6/30/2009
  • Re: Get SelectedValue of RadioButtonList within a DataList

    I think by validating the postback solve the problem. Thanks
    Posted to Data Presentation Controls (Forum) by Wells on 1/14/2009
  • Get SelectedValue of RadioButtonList within a DataList

    Hi, I have a DataList which contains a RadioButtonList. When a button click, I could not get the RadioButtonList.SelectedValue. I could find the control RadioButtonList, however, the SelectedValue always empty string even I have selected a radiobutton. Thanks aspx: A B C C#: protected void Page_Load(object sender, EventArgs e) { List stringList = new List(); stringList.Add("Good"); stringList.Add("Bye"); stringList.Add("Morning"); this.DataList1.DataSource = stringList;
    Posted to Data Presentation Controls (Forum) by Wells on 1/13/2009
  • Embedding QueryString values into controls

    Hi, I cant get the query string result from the < asp : HyperLink>. Any idea? Howvever, the HTML <a> tag will work fine. Thanks < form id ="form1" runat ="server"> < div > < asp : HyperLink runat ="server" ID ="link" NavigateUrl ='abc.html?id= <%=Request.QueryString["id"] %> ' Text ="asp:Link"></ asp : HyperLink > < br /> < a href ='abc.html?id= <%=Request.QueryString["id"
    Posted to Getting Started (Forum) by Wells on 10/30/2008
  • Re: How to refresh image in ASP.NET Handler (.ashx ) ?

    Anyone has idea how to push the continuous images to ASP.NET image control ? I still could not find any solution.
    Posted to HttpHandlers and HttpModules (Forum) by Wells on 2/11/2008
  • Re: How to refresh image in ASP.NET Handler (.ashx ) ?

    I have try the first method you mentioned, but it doesn't work. For the latter, forcing the browser to fresh is not applicable to my application since I am reading the streams of images. Thanks.
    Posted to HttpHandlers and HttpModules (Forum) by Wells on 1/27/2008
  • Re: How to refresh image in ASP.NET Handler (.ashx ) ?

    The reason behind for the infinite loop is that I am reading continous streams from a WebCam, which is in Motion JPEG (MJPEG) format. According to Wikipedia ( http://en.wikipedia.org/wiki/Mjpeg ) : " Many network enabled cameras (web-accessible cameras) provide a stream of JPEG pictures. Many clients like the Firefox webbrowser can display such a videostream directly. The most popular browser Internet Explorer can display M-JPEG streams with the help of plugins. " I have successfully read
    Posted to HttpHandlers and HttpModules (Forum) by Wells on 1/27/2008
  • How to refresh image in ASP.NET Handler (.ashx ) ?

    I have a handler file with infinite loop in ProcessRequest( ) : while ( true ) { // .... Some processes to read image as byteArray if (context.Response.IsClientConnected) { context.Response.Clear(); context.Response.ContentType = "image/bmp" ; context.Response.BinaryWrite(byteArray); context.Response.Flush(); } else { context.Response.Close(); context.Response.End(); } } I put a break point to trace the code. It works. However, the image in the aspx is not refresh. Any Idea ? Thanks.
    Posted to HttpHandlers and HttpModules (Forum) by Wells on 1/25/2008
    Filed under: .ashx
Page 1 of 6 (57 items) 1 2 3 4 5 Next > ... Last »