Search

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

Matching Posts

  • Re: Regarding live chat support

    I'm looking for a live chat (one-on-one) capability for a non-profit web site. I've looked at what Volusion.com has to offer and then came across this thread. Whereas Volusion has a plan for $29.95 per month (on-going) Comm100's chat seems to be totally free. What's their benefit in the deal? Does anyone on this forum have a record of using the free Comm100 chat for any length of time? Free is a good price -- especially for a non-profit, but I'd like not to be opening a can of
    Posted to Component Discussions (Forum) by KevInKauai on 10/25/2009
    Filed under: chat, free chat
  • Re: _blank target from a button

    Perhaps, Ganesh. But REALLY, what is the difference between using a Button for invoking another page as compared to also using a button to open [a] a PDF file, or [b] to let the web site visitor access an "external" page or resource? In both of those cases, it may desirable to retain the original web page's "ownership" (as opposed to abdicating control). I am counseling more and more web clients to be fairly "stingy" about their control and to treat external resources
    Posted to Web Forms (Forum) by KevInKauai on 10/22/2009
  • Re: _blank target from a button

    I've been stymied for about 2 years on trying to provide a "new window" operation for an ordinary ASP.NET Button. Finally, searching for "target" and "button" I found this thread. The solution that works is defining an ordinary ASP:Button and then btnFAQs.Attributes.Add("onClick", "window.open('PDFs/FAQs.pdf')") which I have put in the "Page_Load" so that the Attributed is Added at load time. Works like a charm! THE DEEPER QUESTION
    Posted to Web Forms (Forum) by KevInKauai on 10/21/2009
  • Re: Detecting the mobile device

    I'm doing my initial mobile adaptation exercises and here is what should theoretically be the VB equivalent of the sample code above: If Request.Browser("IsMobileDevice") = True _ OrElse Request.UserAgent.ToUpper().Contains("MIDP") _ OrElse Request.UserAgent.ToUpper().Contains("CLDC") Then Response.Redirect("mobi/Default.aspx") Else ' something else End If Oddly, my own LG enV Touch doesn't get diagnosed as "true" with the above If/OrElse
    Posted to Mobile and Handheld Devices (Forum) by KevInKauai on 9/28/2009
    Filed under: mobile, opera simulator
  • Re: Detecting the mobile device

    Thank you, Diego, but after putting that file in an "App_Browser" file at the root of my application, what THEN? The downloaded ZIP doesn't have any indication of how the XML file gets USED? I think I would be interested in the 'capabaility name' "UsableScreenPixelsWidth", for example, if I want to more dynamically control my mobile content, but HOW? Any hints, pointers, code examples around anywhere? tia ... mahalo ... KevInKauai
    Posted to Mobile and Handheld Devices (Forum) by KevInKauai on 9/28/2009
  • Re: Accessing Checkbox on GridView

    Odd, indeed! I realize this thread is 2+ years old, but why am I now seeing the first CheckBox anomalies? I typically use a GridView for a "master/detail" relationship, where I use the GriVBiew to show the available items and then have a "Select" button allow the use to inspect the complete details of the item and make revisions on a more traditional manner. For this, I typically use statements like the following to extract the row details: txtPresOrder.Text = GridView1.Rows(j
    Posted to Data Presentation Controls (Forum) by KevInKauai on 9/25/2009
  • Re: Web.Config and Database Connection Strings

    (I thought I had responded to your message, Thomas, almost immediately but that response seems to have been lost and the thread got *mysteriously* marked as "Resolved" prematurely.) In all of my web projects, the development database is in the normal place--App_Data under the root of the application. Since this "new" combination has one of the main websites in the "/root" I originally attempted to do a relative reference from the web site in the "/sub" domain
    Posted to Configuration and Deployment (Forum) by KevInKauai on 8/16/2009
  • Re: How to get an "are you sure?" messagebox when deleting for a Gridview control?

    Hi, niksasp.net. This is what I adapted from the C to VB translator for the RowDataBound event of the Grid containing the "Delete" linkbutton: Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound For Each control As Control In e.Row.Cells(0).Controls Dim DeleteButton As LinkButton = TryCast(control, LinkButton) If DeleteButton IsNot Nothing AndAlso DeleteButton.Text = "Delete" Then
    Posted to Data Presentation Controls (Forum) by KevInKauai on 8/8/2009
  • Web.Config and Database Connection Strings

    I have two domains which share a lot of information between them. I'm hosting this in a place where the structure allows me to use the ROOT directory for one domain and then a sub-directory for the other. (Both domains have records pointing to their appropriate places). My question/quandary is coming up now that I'm in a phase of doing some architectural/clean-up work on these two and getting them more in sync. For discussion sake, let's say the structure is: /root [Default.aspx for website_1
    Posted to Configuration and Deployment (Forum) by KevInKauai on 8/7/2009
    Filed under: multiple apps, web.configfig
  • Re: Web.Config and Database Connection Strings

    Thanks for hopping on this one so quickly, Jeff! Perhaps I wasn't clear, so here's an additional scenario note: [1] I set the start page to the "root" default and open that page (where there is some database activity), [2] from a relative link on that page, I attempt to open the "sub" Default.aspx page (which is the 'root' of that domain) and on the first database activity, the error erupts. mahalo, again ... KevInKauai :)
Page 1 of 25 (249 items) 1 2 3 4 5 Next > ... Last »