<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-1843004773770863778.post6449916530111479147..comments</id><updated>2009-10-12T23:16:46.974-07:00</updated><category term='Asp.net Textbox'/><category term='Asp.net Label'/><category term='URL Rewriting'/><category term='CSS'/><category term='SQL Injection'/><category term='GridView'/><category term='SQL Cursors'/><category term='Stored Procedures'/><category term='XML'/><category term='MS SQL'/><category term='GDI'/><category term='Registry'/><category term='Google'/><category term='DataBase'/><category term='godaddy'/><category term='Asp.Net Controls'/><category term='C#'/><category term='Google Toolbar'/><category term='Regex'/><category term='.Net Data Types'/><category term='RSS'/><category term='Validation Controls'/><category term='HTML'/><category term='Web Browsers'/><category term='Software'/><category term='email'/><category term='Ado.Net'/><category term='VB.Net'/><category term='Master Pages'/><category term='Asp.net Errors'/><category term='ASP.Net'/><category term='JavaScript'/><category term='Java Script'/><category term='Windows Application'/><category term='.Net Framework'/><category term='Excel'/><title type='text'>Comments on The .NET Code Room: Traverse / Loop through all form controls in asp.n...</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.dotnetcoderoom.com/feeds/6449916530111479147/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1843004773770863778/6449916530111479147/comments/default'/><link rel='alternate' type='text/html' href='http://www.dotnetcoderoom.com/2009/03/traverse-loop-through-all-form-controls.html'/><author><name>Ajay Sharma</name><uri>http://www.blogger.com/profile/04773708163099605764</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_OUtc6ybYpGQ/SiY4zx-yq5I/AAAAAAAAAME/5rFGzu9mYME/S220/5n0WL.jpeg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1843004773770863778.post-5880562546437663389</id><published>2009-06-03T22:53:19.751-07:00</published><updated>2009-06-03T22:53:19.751-07:00</updated><title type='text'>for mathieu_cupryk@hotmail.com

The webmsgbox clas...</title><summary type='text'>for mathieu_cupryk@hotmail.com&lt;br /&gt;&lt;br /&gt;The webmsgbox class does not waits for the user to click on box each time.&lt;br /&gt;&lt;br /&gt;The webmsgbox renders the content and it executes on page postback.&lt;br /&gt;It means if your loop executed 3 times then the message box will be shown to you 3 times continuously after the page postback event.&lt;br /&gt;&lt;br /&gt;Also use this code inside this code:&lt;br /&gt; &lt;br /&gt;</summary><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1843004773770863778/6449916530111479147/comments/default/5880562546437663389'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1843004773770863778/6449916530111479147/comments/default/5880562546437663389'/><link rel='alternate' type='text/html' href='http://www.dotnetcoderoom.com/2009/03/traverse-loop-through-all-form-controls.html?showComment=1244094799751#c5880562546437663389' title=''/><author><name>Ajay Sharma</name><uri>http://www.blogger.com/profile/04773708163099605764</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_OUtc6ybYpGQ/SiY4zx-yq5I/AAAAAAAAAME/5rFGzu9mYME/S220/5n0WL.jpeg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.dotnetcoderoom.com/2009/03/traverse-loop-through-all-form-controls.html' ref='tag:blogger.com,1999:blog-1843004773770863778.post-6449916530111479147' source='http://www.blogger.com/feeds/1843004773770863778/posts/default/6449916530111479147' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-409425985'/></entry><entry><id>tag:blogger.com,1999:blog-1843004773770863778.post-3856248966955973301</id><published>2009-06-03T09:21:30.157-07:00</published><updated>2009-06-03T09:21:30.157-07:00</updated><title type='text'>if (ctrl.GetType() == typeof(System.Web.UI.WebCont...</title><summary type='text'>if (ctrl.GetType() == typeof(System.Web.UI.WebControls.DropDownList))&lt;br /&gt;                {&lt;br /&gt;                    DropDownList ddl = (DropDownList)ctrl;&lt;br /&gt;&lt;br /&gt;                    if (ddl.SelectedItem.Text != &amp;quot;&amp;quot;)&lt;br /&gt;                    {&lt;br /&gt;                        WebMsgBox.Show(ddl.SelectedValue.ToString());&lt;br /&gt;                        break;&lt;br /&gt;                    }&lt;br </summary><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1843004773770863778/6449916530111479147/comments/default/3856248966955973301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1843004773770863778/6449916530111479147/comments/default/3856248966955973301'/><link rel='alternate' type='text/html' href='http://www.dotnetcoderoom.com/2009/03/traverse-loop-through-all-form-controls.html?showComment=1244046090157#c3856248966955973301' title=''/><author><name>mathieu_cupryk@hotmail.com</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.dotnetcoderoom.com/2009/03/traverse-loop-through-all-form-controls.html' ref='tag:blogger.com,1999:blog-1843004773770863778.post-6449916530111479147' source='http://www.blogger.com/feeds/1843004773770863778/posts/default/6449916530111479147' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-854812810'/></entry></feed>
