Search

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

Matching Posts

  • Re: Control not visible on toolbox

    Have you added the control into your ToolBox? You can right click on the ToolBox and click "Choose Items" to customise what is displayed.
    Posted to Custom Server Controls (Forum) by rtpHarry on 11/26/2009
  • Re: Membership.ApplicationName problem

    Try doing a search for DatabaseAdmin in your solution and see where it comes up. Either you are using it somewhere or a third party component is using it? It shouldn't be an inherited .config file because you do a <clear /> at the start of your membership provider setup.
    Posted to Security (Forum) by rtpHarry on 11/26/2009
  • Re: Strange problem with request.querystring

    The # anchor is a browser feature not a url feature so it doesnt get sent to the server. If you want to get the whole 12#12 then you need to use HttpUtility.UrlEncode() when you put that value into the querystring.
    Posted to State Management (Forum) by rtpHarry on 11/26/2009
  • Re: How I can get overall lowest cost

    Ouch! That looks like a complicated query...
  • Re: Flash web template into Ajax Enabled Asp.Net Website.

    Its not likely no. If you have a full site template that is just one big flash file then you wont be able to do much with asp.net / ajax. In fact if its one big flash template you should throw it in your recycle bin because they are no good for search engines - they cant read them so you wont get any of your pages indexed. If its a normal html template with elements of flash in it then it is a different story. You can create a new master page and copy/paste the parts of the template into your asp
    Posted to Client Side Web Development (Forum) by rtpHarry on 11/26/2009
  • Re: Good pattern for page inheritance

    You can use Master Pages and Nested Master Pages to apply common layout. You can also put code in the master page code behind to make it common throughout. http://www.asp.net/learn/master-pages/ You might also want to extract some of the logic into UserControls that can be dropped onto the pages easily. They allow you to package up reusable components which can be powered by a single piece of markup and code. You can also set up public properties on user controls and make custom events for them so
    Posted to Architecture (Forum) by rtpHarry on 11/26/2009
  • Re: convert int to string

    Hey, This is either the FindControl failing so you are trying to assign a value to a null textbox or you are trying to extract a querystring entry that isnt in the querystring (solicit). You dont have to do a .ToString() on the end of a querystring access because it is already a string.
    Posted to Getting Started (Forum) by rtpHarry on 11/25/2009
  • Re: When to use a try/catch block

    The amount of try catch blocks you will see varies from one development methodology to another. Uncle Bob doesn't advocate returning error values because it can hamper your ability to write clean code. You are also mixing two different things together (the logic of the code and the error processing logic). He has a book called Clean Code: http://www.amazon.co.uk/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882 Why don't you post up a sample of code and show us what the issue is?
    Posted to Getting Started (Forum) by rtpHarry on 11/25/2009
  • Re: what is ctl00$ and how do i get rid of it

    Until 4.0 comes out you cannot control this. You can inject the control id into javascript by doing something like this: <script type="text/javascript"> var lstSection = document.getElementById('<%= lstSection.ClientID %>'); </script> However! I dont know if you will be able to use the <%= %> notation inside the OnClientClick attribute of an <asp:Button>. You might have set up the code in your head control and call it from there? However 2! You are
  • Re: Installing VS Studio 2008 Professional

    What kind of company are you working for? You might be able to get it for free with one of the Spark programs such as WebsiteSpark or BizSpark: http://www.microsoft.com/web/websitespark/ http://www.microsoft.com/BizSpark/ If not then you can buy VS 2008 from any good software stockist such as Amazon.com but don't forget that VS2010 is coming out in March next year so if you can wait....
    Posted to Visual Studio 2008 (Forum) by rtpHarry on 11/25/2009
Page 1 of 574 (5738 items) 1 2 3 4 5 Next > ... Last »