Search

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

Matching Posts

  • Re: Href's to external sites?

    Thanks. That's how I figured out how to do it. Didn't realize there was a fix for it on the google code page.
    Posted to ASP.NET MVC (Forum) by TCavins on 7/30/2009
  • Re: Href's to external sites?

    Here is the generated code: <A href=" http://maps.google.com ">Test</A> This does not work. However, if I change it to the following, it does: <A href=" http://maps.google.com " target=_blank>Test</A> I agree that it should work as is. I am using MVC 1.0 and iui to make the site look like an iPhone application. Tim
    Posted to ASP.NET MVC (Forum) by TCavins on 7/29/2009
  • Re: Href's to external sites?

    It has something to do with the iui.js file that is included in the page. It is not related to MVC. If I take out the .js file, the link works as expected. Tim
    Posted to ASP.NET MVC (Forum) by TCavins on 7/29/2009
  • Re: Href's to external sites?

    Yes, MSN.com works just fine. Tim
    Posted to ASP.NET MVC (Forum) by TCavins on 7/29/2009
  • Re: Toolkit 3.0.30512 with ASP prefix

    There's a way to do this globally through your web.config file and I can't seem to get it to work.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by TCavins on 7/10/2009
  • Toolkit 3.0.30512 with ASP prefix

    What do I have to change in my web.config in order to have the new toolkit use the ASP prefix? I currently have this: <controls> <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
    Posted to ASP.NET AJAX Control Toolkit (Forum) by TCavins on 7/9/2009
  • Re: Href's to external sites?

    My links are generic <a href="http://www.google.com"> Google </a> They work on other browsers, just not the iPhone it appears. I changed some of them to ActionLinks and then did a redirect by passing in the URL through a lambda expression for the actionlink. This works, however, it seems to be a lot of work for something that should otherwise work with just a normal href tag. Tim
    Posted to ASP.NET MVC (Forum) by TCavins on 7/7/2009
  • Href's to external sites?

    For some reason all of my href tags that point to external sites like Google are not working. The link shows up but when I click on it, it doesn't do anything. I'm using MVC on an iPhone with the 3.0 framework. Tim
    Posted to ASP.NET MVC (Forum) by TCavins on 7/2/2009
  • Re: Html.ActionLink<T>

    Yes, it's a formatting issue with how I put it in the forum. <%= Html.ActionLink<HomeController>(c => c.Next10Results(...), "Show Next 10 Results", ... ) %> This is what I have, however, I have to put namespace.Areas.xxx.Controllers. HomeController. Why do I have to put the full name of the controller rather than just putting HomeController? Tim
    Posted to ASP.NET MVC (Forum) by TCavins on 5/19/2009
  • Re: Html.ActionLink<T>

    After posting the question here, a light went on in my head and I realized what I was doing wrong. Here's the right way to do it. <%= Html.ActionLink c.Next10Results(Convert.ToInt32(ViewData[ "V1" ])...), "Show Next 10 Results" , new { target= "blank" })%> Tim
    Posted to ASP.NET MVC (Forum) by TCavins on 5/18/2009
Page 1 of 19 (185 items) 1 2 3 4 5 Next > ... Last ยป