Comments on: Getting rid of the Naming Container in asp.net 2.0 http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/ Thu, 21 Nov 2013 21:47:55 +0000 hourly 1 https://wordpress.org/?v=4.7.8 By: Damaris http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-40073 Mon, 27 May 2013 15:20:17 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-40073 Hi, I think your site might be having browser compatibility issues.

When I look at your blog site in Opera, it looks fine but when opening in Internet Explorer, it has some overlapping.
I just wanted to give you a quick heads up!
Other then that, excellent blog!

]]>
By: Bill http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-40051 Sat, 21 Jul 2012 13:24:36 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-40051 Hi there, I discovered your website via Google at the same time as searching for a related subject, your website got here up, it looks good. I have bookmarked it in my google bookmarks.

]]>
By: Elmo http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-40006 Tue, 28 Feb 2012 01:55:42 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-40006 Impressive post, I actually count on updates by you.

]]>
By: Angeles http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-40002 Wed, 30 Nov 2011 05:52:11 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-40002 Very good information and facts! I have been searching for everything such as this for some time currently. Regards!

]]>
By: Malik ULU http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-40001 Mon, 14 Nov 2011 17:40:52 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-40001 Hi buddy, your solution is great, simple but very great. Thanks, regards.

]]>
By: Dantdrurn http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-39416 Thu, 10 Feb 2011 17:07:46 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-39416 Just browsing your blog, how long have you had it? I love the design.(Charlxtz)

]]>
By: YourGranMo http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-38213 Mon, 03 Jan 2011 03:03:52 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-38213 HAPPY NEW YEAR! Brothers ;))

And good luck to all of you!

]]>
By: glJakaL http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-23607 Wed, 11 Mar 2009 08:43:23 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-23607 Chris: This blog is running on WordPress, so I wouldn’t worry about hacking too much 🙂

Your solution is of course a valid alternative, however some of us prefer to keep HTML and javascript in separate files instead of throwing it all together.

]]>
By: Chris http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-23521 Fri, 06 Mar 2009 01:04:58 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-23521 I’ll convert the html tags manually… did you write this webpage yourself? You really gotta HtmlEncode your text input before processing it… you’re just asking for it to be hacked.

Anyway, you can inject code directly into the markup like so:

getElementById(’< %= TextBox1.ClientID %>?).

You can also call functions in the codebehind file something like this:

protected string MyText()
{
return "Yes!";
}

What you say? < %= MyText() %>
]]>
By: Chris http://localhost/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/comment-page-1/#comment-23520 Fri, 06 Mar 2009 01:00:16 +0000 http://gljakal.com/blog/2007/09/12/getting-rid-of-the-naming-container-in-aspnet-20/#comment-23520 It seems this textbox does not use HtmlEncode and so the code I was going to suggest seems to break your page.

]]>