All Forumshttp://forums.asp.net/default.aspxAll ForumsThu, 20 Jun 2013 06:56:53 -0400urn:uuid:00000000-0000-0000-0000-000000000000urn:uuid:00000000-0000-0000-0000-000005430827http://forums.asp.net/p/1916256/5430827.aspx/1?How+to+avoid+error+while+binding+with+special+characterHow to avoid error while binding with special character <p></p> <p>the datasorce contain special character (please refer the image below)</p> <p><img class="decoded" alt="http://imageshack.us/scaled/thumb/197/48yo.jpg" src="http://imageshack.us/scaled/thumb/197/48yo.jpg"></p> <p>while biding with this kind of data there retutn an error</p> <p>There is an error in XML document (1, 1000612).</p> <p>I have no idea how to replace this kind of symbol and have no idea how to avoid the error while gridview biding with themplease help.. thank you very much</p> 2013-06-20T10:55:41-04:002013-06-20T10:55:41.353-04:00urn:uuid:00000000-0000-0000-0000-000005430794http://forums.asp.net/p/1916247/5430794.aspx/1?which+data+control+should+i+use+which data control should i use? <p>Hello</p> <p>plz check the below sample and suggest me to which control shuld i use to display this kind of layout.</p> <p>i used repeater control before but here i don't know that how to display data in 3 columns.&nbsp;</p> <p></p> <p><img src="http://satkartravel.com/images/datacontrol.png" width="670" height="621"></p> <p>thank you</p> 2013-06-20T10:31:18-04:002013-06-20T10:31:18.977-04:00urn:uuid:00000000-0000-0000-0000-000005430704http://forums.asp.net/p/1916227/5430704.aspx/1?Windows+AuthenticationWindows Authentication <p>Hi all,</p> <p>I have made a CRM and i have to upload it on the server of my office,everything is done correctly,i have uploaded it correctly,but it is failing login,there is a network related issue may be.....it is not connecting to my databse or giving authorities gor logging in...what can be the solution...i tried to make user network service but this is also not permitted in the security part...i think i should go for windows authentication,,what are the steps dont know anything about it,do i have to change all my login page settings in which user name and password are stored in database...what is the way kindly help....</p> 2013-06-20T08:53:18-04:002013-06-20T08:53:18.27-04:00urn:uuid:00000000-0000-0000-0000-000005430789http://forums.asp.net/p/1916246/5430789.aspx/1?insert+with+coulmns+and+without+columns+differenceinsert with coulmns and without columns -difference <p>Hi all,</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; below the two methods for insertion.</p> <p>&nbsp;</p> <pre class="prettyprint">insert into Customers values (val1, val2, val3......) insert into Customers(col1, col2, col3.....) values (val1, val2, val3......)</pre> <p>in first one I didn't mention the columns but in the second query I used columns. Which one is good, beetr? and which one we should use?<br> <br> </p> 2013-06-20T10:29:40-04:002013-06-20T10:29:40.873-04:00urn:uuid:00000000-0000-0000-0000-000005430816http://forums.asp.net/p/1916254/5430816.aspx/1?How+to+bind+img+control+to+gridview+How to bind img control to gridview. <p>my image is stored in database and i have to img control (html control) to show in database. and image is stored in varbinary(max) format.</p> <p>how to bind it to gridveiw???</p> 2013-06-20T10:43:43-04:002013-06-20T10:43:43.037-04:00urn:uuid:00000000-0000-0000-0000-000005428317http://forums.asp.net/p/1915694/5428317.aspx/1?jQuery+not+working+into+UpdatePanneljQuery not working into UpdatePannel <p>I have a Slider that is retrtived image from database. I also added 3 options so that user can filter slider image by category. Everything is working perfectly. but problem is, every click refresh the full page. That's why I applied the &quot;UpdatePannel&quot;. Now it's working except jQuery.</p> <p>the code is:&nbsp;</p> <pre class="prettyprint">&lt;script type=&quot;text/javascript&quot;&gt; $(document).ready(function () { $('.slideDisplay').cycle({ fx: 'fade' }); }); &lt;/script&gt;</pre> <p>for more detiail, here is the screenshot of hompage:</p> <p><img src="http://i1134.photobucket.com/albums/m601/graphic360/Programming/Imon%20Portfolio%20Site/UpdatePannel_zpsa438554c.jpg" width="1024" height="477"><br> <br> </p> 2013-06-18T10:03:50-04:002013-06-18T10:03:50.273-04:00urn:uuid:00000000-0000-0000-0000-000005430804http://forums.asp.net/p/1916249/5430804.aspx/1?string+split+based+on+specified+characterstring split based on specified character <p>Hi All,&nbsp;</p> <p>I want to split a string based on the character on the string lets say(B, and F)</p> <p>for example i want to break the string &quot;B001B0002B000005F0006&quot; to a string array like &nbsp;this {&quot;B001&quot;, &quot;B0002&quot;, &quot;B000005&quot;, &quot;F0006&quot; }</p> <p>&nbsp;</p> <p>how can i do this</p> 2013-06-20T10:34:52-04:002013-06-20T10:34:52.8-04:00urn:uuid:00000000-0000-0000-0000-000005430807http://forums.asp.net/p/1916251/5430807.aspx/1?how+to+change+text+in+javascripthow to change text in javascript <p>when clicked if text is read more then chaange &nbsp;to read less</p> <p>when again clicked the text is read less change it to read more..........</p> <p>function Show2() {</p> <p>var str=document.getElementById(&quot;readmore&quot;).innerHTML; <br> alert(str);<br> if(str == &quot;readmore&quot;)<br> {<br> alert(&quot;if&quot;);<br> var n=str.replace(&quot;more&quot;,&quot;less&quot;);<br> document.getElementById(&quot;readmore&quot;).innerHTML=n;<br> }<br> <br> else<br> {<br> alert(&quot;else&quot;);<br> var n=str.replace(&quot;less&quot;,&quot;more&quot;);<br> document.getElementById(&quot;readmore&quot;).innerHTML=n;<br> }<br> <br> </p> <p>}</p> <p>&lt;a href='#nav_a11' id=&quot;readmore&quot; onClick=&quot;Show2();&quot;&gt;read more...&lt;/a&gt;</p> <p>Above code change to read less but when clicked again not changing to Read more.plz suggest</p> 2013-06-20T10:35:56-04:002013-06-20T10:35:56.337-04:00urn:uuid:00000000-0000-0000-0000-000005430765http://forums.asp.net/p/1916239/5430765.aspx/1?I+want+to+view+Mark+Semester+Summary+in+gridview+asp+netI want to view Mark Semester Summary in gridview asp.net <p>Each Semester Mark to show Each Gridview in single page,</p> <p>I use this code&nbsp;</p> <p>GridView gvs = new GridView();<br> for (int k = 5; k &lt; 10; k&#43;&#43;)<br> {<br> gvs.ID = &quot;Gridview&quot; &#43; k.ToString();<br> gvs.DataSource = CreateSemesterSummary();<br> gvs.DataBind();<br> pnlTest.Controls.Add(gvs);<br> }</p> <pre class="prettyprint prettyprinted"><span class="tag">&lt;asp:Panel</span><span class="pln"> </span><span class="atn">runat</span><span class="pun">=</span><span class="atv">&quot;server&quot;</span><span class="pln"> </span><span class="atn">ID</span><span class="pun">=</span><span class="atv">&quot;pnlTest&quot;</span><span class="tag">&gt;&lt;/asp:Panel&gt;</span></pre> <p>its Working Only one gridview at that time , I want to view more than 5 based on Loop&nbsp;</p> <p>how to Show ???</p> <p>This theaming format i want to show&nbsp;</p> <p><span>&lt;asp:GridView ID=&quot;GridView3&quot; align=&quot;Center&quot; style=&quot;text-align:center;&quot; Width=&quot;750px&quot; runat=&quot;server&quot; CellPadding=&quot;2&quot; PageSize=&quot;6&quot;</span><br> <span>GridLines=&quot;None&quot; AllowPaging=&quot;False&quot; ForeColor=&quot;#333333&quot;&gt;&nbsp;</span><br> <span>&lt;AlternatingRowStyle BackColor=&quot;White&quot; /&gt;</span><br> <span>&lt;EditRowStyle BackColor=&quot;#7C6F57&quot; /&gt;</span><br> <span>&lt;FooterStyle BackColor=&quot;#1C5E55&quot; ForeColor=&quot;White&quot; Font-Bold=&quot;True&quot; /&gt;</span><br> <span>&lt;HeaderStyle BackColor=&quot;#1C5E55&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;White&quot; Font-Names=&quot;Cambria&quot;/&gt;</span><br> <span>&lt;PagerStyle BackColor=&quot;#666666&quot; ForeColor=&quot;White&quot; HorizontalAlign=&quot;Center&quot; Wrap=&quot;true&quot; /&gt;</span><br> <span>&lt;RowStyle BackColor=&quot;#E3EAEB&quot; /&gt;</span><br> <span>&lt;SelectedRowStyle BackColor=&quot;#C5BBAF&quot; Font-Bold=&quot;True&quot; ForeColor=&quot;#333333&quot; /&gt;</span><br> <span>&lt;SortedAscendingCellStyle BackColor=&quot;#F8FAFA&quot; /&gt;</span><br> <span>&lt;SortedAscendingHeaderStyle BackColor=&quot;#246B61&quot; /&gt;</span><br> <span>&lt;SortedDescendingCellStyle BackColor=&quot;#D4DFE1&quot; /&gt;</span><br> <span>&lt;SortedDescendingHeaderStyle BackColor=&quot;#15524A&quot; /&gt;</span><br> <span>&lt;/asp:GridView&gt;</span></p> 2013-06-20T09:53:52-04:002013-06-20T09:53:52.857-04:00urn:uuid:00000000-0000-0000-0000-000005430770http://forums.asp.net/p/1916241/5430770.aspx/1?How+do+you+detect+browser+from+APIController+How do you detect browser from APIController? <p>Questions in the title really, I have tried to use Request.Browser however APIController seems to be using a different object to the standard controllers.</p> 2013-06-20T10:00:53-04:002013-06-20T10:00:53.44-04:00urn:uuid:00000000-0000-0000-0000-000005430784http://forums.asp.net/p/1916244/5430784.aspx/1?Login+with+EMail+Id+or+Mobile+NumberLogin with EMail Id or Mobile Number <p>How to login with (EMail Id or Mobile Number as a user name) and password&nbsp;with authentication for this?</p> 2013-06-20T10:25:58-04:002013-06-20T10:25:58.357-04:00urn:uuid:00000000-0000-0000-0000-000005430594http://forums.asp.net/p/1916202/5430594.aspx/1?Can+t+see+code+behind+HELP+Can't see code behind. HELP! <p>I'm using VS2010 and working on a website.... I only see the markup of my content page... what I did is add a button, double clicked it to place some code behind and this is what happened...</p> <p></p> <pre class="prettyprint">&lt;%@ Page Title=&quot;&quot; Language=&quot;C#&quot; MasterPageFile=&quot;~/Site.master&quot; %&gt; &lt;script runat=&quot;server&quot;&gt; protected void SendMail() { // Gmail Address from where you send the mail var fromAddress = &quot;ml17.santos@gmail.com&quot;; // any address where the email will be sending var toAddress = YourEmail.Text.ToString(); //Password of your gmail address const string fromPassword = &quot;Password&quot;; // Passing the values and make a email formate to display string subject = YourSubject.Text.ToString(); string body = &quot;From: &quot; &#43; YourName.Text &#43; &quot;\n&quot;; body &#43;= &quot;Email: &quot; &#43; YourEmail.Text &#43; &quot;\n&quot;; body &#43;= &quot;Subject: &quot; &#43; YourSubject.Text &#43; &quot;\n&quot;; body &#43;= &quot;Question: \n&quot; &#43; Comments.Text &#43; &quot;\n&quot;; // smtp settings var smtp = new System.Net.Mail.SmtpClient(); { smtp.Host = &quot;smtp.gmail.com&quot;; smtp.Port = 587; smtp.EnableSsl = true; smtp.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network; //smtp.Credentials = new NetworkCredential(fromAddress, fromPassword); smtp.Timeout = 20000; } // Passing values to smtp object smtp.Send(fromAddress, toAddress, subject, body); } protected void Button1_Click(object sender, EventArgs e) { try { //here on button click what will done SendMail(); DisplayMessage.Text = &quot;Your Comments after sending the mail&quot;; DisplayMessage.Visible = true; YourSubject.Text = &quot;&quot;; YourEmail.Text = &quot;&quot;; YourName.Text = &quot;&quot;; Comments.Text = &quot;&quot;; } catch (Exception) { } } &lt;/script&gt; &lt;asp:Content ID=&quot;Content1&quot; ContentPlaceHolderID=&quot;HeadContent&quot; Runat=&quot;Server&quot;&gt; &lt;style type=&quot;text/css&quot;&gt; .style3 { width: 451px; } .style4 { width: 516px; } .style5 { height: 21px; } .style6 { height: 21px; width: 158px; } .style7 { height: 201px; } .style8 { width: 173px; } &lt;/style&gt; &lt;/asp:Content&gt; &lt;asp:Content ID=&quot;Content2&quot; ContentPlaceHolderID=&quot;MainContent&quot; Runat=&quot;Server&quot;&gt; &lt;table class=&quot;style1&quot;&gt; &lt;tr&gt; &lt;td&gt; &lt;table class=&quot;style1&quot;&gt; &lt;tr&gt; &lt;td align=&quot;center&quot; class=&quot;style4&quot;&gt; &lt;iframe width=&quot;450&quot; height=&quot;350&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;https://maps.google.com.ph/maps?ie=UTF8&amp;amp;q=olympia&#43;somerset&#43;towers,&#43;makati&amp;amp;fb=1&amp;amp;gl=ph&amp;amp;hq=olympia&#43;somerset&#43;towers,&#43;makati&amp;amp;cid=0,0,1321729403434567995&amp;amp;ll=14.556305,121.025788&amp;amp;spn=0.006295,0.006295&amp;amp;t=m&amp;amp;iwloc=A&amp;amp;output=embed&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;small&gt;&lt;a href=&quot;https://maps.google.com.ph/maps?ie=UTF8&amp;amp;q=olympia&#43;somerset&#43;towers,&#43;makati&amp;amp;fb=1&amp;amp;gl=ph&amp;amp;hq=olympia&#43;somerset&#43;towers,&#43;makati&amp;amp;cid=0,0,1321729403434567995&amp;amp;ll=14.556305,121.025788&amp;amp;spn=0.006295,0.006295&amp;amp;t=m&amp;amp;iwloc=A&amp;amp;source=embed&quot; style=&quot;color:#0000FF;text-align:left&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt; &lt;/td&gt; &lt;td style=&quot;font-family: georgia&quot;&gt; &lt;table class=&quot;style1&quot;&gt; &lt;tr&gt; &lt;td align=&quot;left&quot;&gt; &lt;table class=&quot;style1&quot;&gt; &lt;tr&gt; &lt;td class=&quot;style6&quot;&gt; Name:&lt;/td&gt; &lt;td class=&quot;style5&quot;&gt; &lt;asp:TextBox ID=&quot;YourName&quot; runat=&quot;server&quot; Width=&quot;225px&quot;&gt;&lt;/asp:TextBox&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class=&quot;style6&quot;&gt; Email Address:&lt;/td&gt; &lt;td class=&quot;style5&quot;&gt; &lt;asp:TextBox ID=&quot;YourEmail&quot; runat=&quot;server&quot; Width=&quot;225px&quot;&gt;&lt;/asp:TextBox&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class=&quot;style6&quot;&gt; Subject:&lt;/td&gt; &lt;td class=&quot;style5&quot;&gt; &lt;asp:TextBox ID=&quot;YourSubject&quot; runat=&quot;server&quot; Width=&quot;225px&quot;&gt;&lt;/asp:TextBox&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align=&quot;left&quot;&gt; Message:&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align=&quot;left&quot; class=&quot;style7&quot;&gt; &lt;asp:TextBox ID=&quot;Comments&quot; runat=&quot;server&quot; Height=&quot;193px&quot; TextMode=&quot;MultiLine&quot; Width=&quot;391px&quot;&gt;&lt;/asp:TextBox&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align=&quot;left&quot; id=&quot;text&quot;&gt; please do leave your contact info for future references*&lt;br /&gt; &lt;asp:Label ID=&quot;DisplayMessage&quot; runat=&quot;server&quot;&gt;&lt;/asp:Label&gt; &lt;br /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align=&quot;center&quot;&gt; &lt;asp:Button ID=&quot;Button1&quot; runat=&quot;server&quot; BackColor=&quot;#FF99CC&quot; Text=&quot;Submit&quot; onclick=&quot;Button1_Click&quot; /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;table class=&quot;style1&quot;&gt; &lt;tr&gt; &lt;td align=&quot;center&quot;&gt; &lt;br /&gt; &lt;asp:Image ID=&quot;Image1&quot; runat=&quot;server&quot; ImageUrl=&quot;~/Resources/content header/ContactInfo.png&quot; /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;table class=&quot;style1&quot; style=&quot;border: thin solid #999999&quot;&gt; &lt;tr&gt; &lt;td class=&quot;style3&quot; style=&quot;font-family: georgia; font-size: large;&quot; align=&quot;center&quot;&gt; &lt;span style=&quot;font-weight: bold; vertical-align: 10%; text-indent: 10px; line-height: normal;&quot;&gt; Carpio- Macalintal Dental Office&lt;/span&gt;&lt;p style=&quot;font-size: small&quot; align=&quot;center&quot;&gt; G/F Olympia Somerset Towers, Makati Avenue, Makati City&lt;/p&gt; &lt;/td&gt; &lt;td style=&quot;font-family: georgia; border-left-style: solid; border-left-width: 1px; border-left-color: #CCCCCC;&quot; align=&quot;left&quot;&gt; &lt;span style=&quot;font-weight: bold&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;table class=&quot;style1&quot;&gt; &lt;tr&gt; &lt;td class=&quot;style8&quot; align=&quot;left&quot;&gt; &lt;span style=&quot;font-weight: bold&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone no.: &lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/td&gt; &lt;td align=&quot;left&quot;&gt; (632) 813-1297&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class=&quot;style8&quot; align=&quot;left&quot;&gt; &lt;span style=&quot;font-weight: bold&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mobile:&lt;/span&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/td&gt; &lt;td align=&quot;left&quot;&gt; (&#43;63) 0905 4177 222&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class=&quot;style8&quot;&gt; &amp;nbsp;&lt;/td&gt; &lt;td align=&quot;left&quot;&gt; &lt;br /&gt; &lt;asp:ImageButton ID=&quot;ImageButton6&quot; runat=&quot;server&quot; ImageUrl=&quot;~/Resources/fb.png&quot; Width=&quot;32px&quot; /&gt; &amp;nbsp; &lt;asp:ImageButton ID=&quot;ImageButton7&quot; runat=&quot;server&quot; ImageUrl=&quot;~/Resources/twitter.png&quot; Width=&quot;32px&quot; /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; We are open for appointments from Monday to Saturday&lt;br /&gt;&lt;br /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/asp:Content&gt;</pre> <p>The mark-up and code behind are kinda mixed up... is that normal? also I can't find the ContactUs.aspx.cs file...&nbsp;<br> <br> </p> 2013-06-20T07:30:59-04:002013-06-20T07:30:59.903-04:00urn:uuid:00000000-0000-0000-0000-000005430808http://forums.asp.net/p/1916252/5430808.aspx/1?SQL+Query+requiredSQL Query required <p></p> &lt;div id=&quot;yui_3_7_2_1_1371724338414_2059&quot; style=&quot;background-color: #ddd; border-left: solid 5px #999999; margin: 15px; margin-left: 30px; width: 95%;&quot;&gt; &lt;div id=&quot;yui_3_7_2_1_1371724338414_2058&quot; style=&quot;border: solid 10px #ddd;&quot;&gt; <p id="yui_3_7_2_1_1371724338414_2079">I have following tables <br> <br> TABLE : A<br> <br> ENTERPRISE_MAIN_CODE&nbsp;&nbsp; &nbsp;ENTERPRISE_SUB_CODE&nbsp;&nbsp; &nbsp;ENTERPRISE_DESCRIPTION<br> 1&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; A<br> 2&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; B<br> 3&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C<br> 4&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; D<br> 5&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; E<br> 6&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; F<br> 7&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; G<br> 8&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; H<br> 9&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I<br> <br> TABLE : B<br> <br> ID_NO&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;ENTERPRISE_MAIN_CODE&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;ENTERPRISE_SUB_CODE<br> 1&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1<br> 2&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2<br> 3&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1<br> 4&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1<br> 5&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp; &nbsp;<br> 6&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1<br> 7&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 6&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5<br> <br> <br> TABLE : C<br> ID_NO&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;ENTERPRISE_ID_NO&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;ENTERPRISE_DATE&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;ENTERPRISE_AMT<br> 1&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20130109&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1000<br> 1&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20130315&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2000&nbsp;&nbsp; &nbsp;<br> 2&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20120120&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3000<br> 2&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20120305&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4000<br> 3&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20141111&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5000<br> 4&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20130115&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6000<br> 5&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20130320&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7000<br> <br> <br> the expected op is as follows. op is based on the year 201303.<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br> ENTERPRISE_DESCRIPTION&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;count&nbsp;&nbsp; &nbsp;amt&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; count&nbsp;&nbsp; &nbsp;amt&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; count&nbsp;&nbsp; &nbsp;amt&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; count&nbsp;&nbsp; &nbsp;amt&nbsp;&nbsp; &nbsp;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;A&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7000<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;B&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp;&nbsp; 0 <br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;C&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;D&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7000 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 13000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;E &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; <br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;F&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp;&nbsp; <br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;G &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp;&nbsp; <br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;H&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; <br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;I &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; 0</p> <p>&nbsp;</p> <p id="yui_3_7_2_1_1371724338414_2084">Thanks</p> <p id="yui_3_7_2_1_1371724338414_2083">Nick</p> &lt;/div&gt; &lt;/div&gt; 2013-06-20T10:36:47-04:002013-06-20T10:36:47.817-04:00urn:uuid:00000000-0000-0000-0000-000005430766http://forums.asp.net/p/1916240/5430766.aspx/1?required+field+validator+is+firing+but+without+writing+required+property+in+model+classrequired field validator is firing but without writing required property in model class <p>I am facing very strange problem in MVC4(Razor).</p> <p>I have a index view here is code below</p> <pre class="prettyprint">@model Test2.Models.PlatAnodeRetrofitModels @{ ViewBag.Title = &quot;Plat Anode Retrofit&quot;; } &lt;script type=&quot;text/javascript&quot;&gt; $(document).ready(function () { $(&quot;#RetroDate&quot;).datepicker({ changeMonth: true, changeYear: true }); }); &lt;/script&gt; @section featured { @if (TempData[&quot;Success&quot;] != null) { &lt;p class=&quot;success-message-info&quot;&gt; @TempData[&quot;Success&quot;].ToString()&lt;/p&gt; } @Html.ValidationSummary() @using (Html.BeginForm(&quot;Index&quot;, &quot;TestPage&quot;, FormMethod.Post, new { id = &quot;form&quot; })) { @*@using (Ajax.BeginForm(&quot;Index&quot;,&quot;TestPage&quot;,new AjaxOptions{HttpMethod=&quot;POST&quot;})) {*@ &lt;h2&gt; TestPage&lt;/h2&gt; @Html.Action(&quot;GridViewPartial&quot;) &lt;div id=&quot;div1&quot; class=&quot;formLayout&quot;&gt; &lt;div class=&quot;TabSectionL&quot; style=&quot;width: 95%&quot;&gt; &lt;span class=&quot;TabSectionHeader&quot;&gt;Anode Details&lt;/span&gt; &lt;table cellpadding=&quot;4&quot; cellspacing=&quot;4&quot;&gt; &lt;tr&gt; &lt;td&gt; Retrofit Date &lt;/td&gt; &lt;td&gt; No. of Anode &lt;/td&gt; &lt;td&gt; Wht. of Anode &lt;/td&gt; &lt;td&gt; Total Weight &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;@Html.TextBoxFor(m =&gt; m.RetroDate, &quot;{0:MM/dd/yyyy}&quot;, new { tabindex = &quot;1&quot; }) &lt;/td&gt; &lt;td&gt;@Html.TextBoxFor(m =&gt; m.NumberOfAnodes, new { @class = &quot;shortinput&quot;, maxlength = &quot;4&quot;, tabindex = &quot;2&quot; }) &lt;/td&gt; &lt;td&gt;@Html.TextBoxFor(m =&gt; m.WeightOfAnode, new { @class = &quot;shortinput&quot;, maxlength = &quot;4&quot;, tabindex = &quot;3&quot; }) &lt;/td&gt; &lt;td&gt;@Html.DisplayFor(m =&gt; m.TotalWeight) &lt;/td&gt; @Html.HiddenFor(m =&gt; m.lng_id) &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;div class=&quot;TabSectionL&quot; style=&quot;width: 95%&quot;&gt; &lt;span class=&quot;TabSectionHeader&quot;&gt;Comments&lt;/span&gt; &lt;div id=&quot;Div2&quot; class=&quot;multilineTextBoxPanel&quot;&gt; @Html.TextAreaFor(m =&gt; m.Comment, new { @class = &quot;multilineTextBox&quot;, tabindex = &quot;4&quot; }) &lt;/div&gt; &lt;/div&gt; @*&lt;input onclick=&quot;ProgressbarFunction();&quot; type=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;Save&quot; /&gt;*@ &lt;/div&gt; } }</pre> <p><br />and in model class i have following code</p> <pre class="prettyprint"> [Required(ErrorMessage = "Date is required")] [DataType(DataType.Date)] [DisplayFormat(ApplyFormatInEditMode = true)] public DateTime RetroDate { get; set; } [Required(ErrorMessage = "No. of Anode Required")] [RegularExpression(@"^[0-9]+&#36;", ErrorMessage = "Numbers only")] public double NumberOfAnodes { get; set; } public double WeightOfAnode { get; set; } public string Comment { get; set; } public double? TotalWeight = 0; public int lng_id { get; set; }</pre> <p>SO you can see i have set required attribute to first two properties only</p> <p>but when i run the code and click on save , i am getting validation error of other proprties too...which is very strange..&nbsp;</p> <p>please see the image below</p> <p><img src="http://img842.imageshack.us/img842/3128/bswr.jpg"></p> <p><br> <br> </p> 2013-06-20T09:55:13-04:002013-06-20T09:55:13.273-04:00urn:uuid:00000000-0000-0000-0000-000005430805http://forums.asp.net/p/1916250/5430805.aspx/1?resource+filesresource files <p>I have a website that uses a resource file to hold messages, button text, etc. &nbsp;In the project this has a build action of 'Embedded resource'</p> <p>in an .aspx page the resource string is displayed like this</p> <p>&lt;asp:Label ID=&quot;Label1&quot; runat=&quot;server&quot; Text=&quot;&lt;%&#36; Resources:DetailsRes, Message %&gt;&quot;&gt;&lt;/asp:Label&gt;</p> <p></p> <p>this works fine under development, but when I Publish the site (using msdeploy) &nbsp;the page falls over when it tries to access the Message resource string. &nbsp;The only way to get it to work is to manually copy DetailsRes.resx to the deployed website &nbsp;(app_GlobalResources)</p> <p></p> <p>why should this be ? &nbsp;Ive set it as an embedded resource so I shouldnt neeed to deploy the .resx file.</p> <p>can anyone see where Im going wrong ?</p> <p></p> 2013-06-20T10:34:53-04:002013-06-20T10:34:53.493-04:00urn:uuid:00000000-0000-0000-0000-000005430782http://forums.asp.net/p/1916243/5430782.aspx/1?IP+AddressIP Address <p>Hi,</p> <p>I want to get the ipaddress of the clientmachine in c#.</p> <p>&nbsp;public string getIp()<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IPHostEntry host;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string localIP = string.Empty;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; host = Dns.GetHostEntry(Dns.GetHostName());<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach (IPAddress ip in host.AddressList)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (ip.AddressFamily == AddressFamily.InterNetwork)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; localIP = ip.ToString();<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return localIP;</p> <p>}</p> <p></p> <p>I used this but it will give the hosted machine IP. I need user machine IP.</p> <p>Thanks</p> 2013-06-20T10:23:47-04:002013-06-20T10:23:47.327-04:00urn:uuid:00000000-0000-0000-0000-000005430781http://forums.asp.net/p/1916242/5430781.aspx/1?How+to+display+the+multiple+images+VS+2010+How to display the multiple images - VS 2010 ? <p>Hi, <br> It's my project in ASP.Net...Any how successfully learned to display the pag contents by text...<br> But when I try to display multiple Images, I don't know which control will help me...<br> &nbsp;<br> When I search Google for good design.. I found the below link has better, attarctive for me<br> <a href="http://areej-group.net/">http://areej-group.net</a><br> It displays 5 or 6 images alternatively changing the images on start-up page...<br> &nbsp;<br> So which control can achieve it ?<br> &nbsp;<br> Thanks for the ideas</p> 2013-06-20T10:22:24-04:002013-06-20T10:22:24.83-04:00urn:uuid:00000000-0000-0000-0000-000005430799http://forums.asp.net/p/1916248/5430799.aspx/1?Disabled+Asp+control+in+Javascript+but+not+in+NETDisabled Asp control in Javascript but not in .NET <p>Hi,</p> <p>I disable a TextBox with Javascript:</p> <p>if(fechaDate&lt;fechaDateHoy) {<br> &nbsp; &nbsp; &nbsp; txtFecha.disabled= true;&nbsp; &nbsp; &nbsp;&nbsp;<br> }else{ <br> &nbsp; &nbsp; &nbsp; txtFecha.disabled= false; <br> }</p> <p>I can see the disabled control in my screen but when I check in my code behind it is enabled:</p> <p>if (txtFecha.Enabled == false)</p> <p>{<br> // I never reach this</p> <p>}</p> <p>Any idea to disable a TextBox with Javascript and be disabled in code behind too?</p> 2013-06-20T10:33:01-04:002013-06-20T10:33:01.277-04:00urn:uuid:00000000-0000-0000-0000-000005430757http://forums.asp.net/p/1916236/5430757.aspx/1?Using+javascript+to+generate+a+list+of+links+that+use+window+open+and+pass+parameters+to+the+child+windowUsing javascript to generate a list of links that use window.open and pass parameters to the child window <p>I have a aspx file that is supposely to generate window.open links&nbsp;</p> <pre class="prettyprint">for (var i=0; i&lt; para.length; i&#43;&#43;){ &lt;a href=&quot;#&quot; onclick=&quot;window.open(&quot;ViewHistory.aspx?IID=&quot; &#43; para[i] &#43; &quot;&quot;, &quot;windowname1&quot;, &quot;toolbar=yes,location=no,menubar=no,width=450,height=200,resizable=yes,scrollbars=yes,top=200,left=250&quot;); return false;&quot;&gt;&lt;img src=&quot;images\\history.png&quot;&gt;&lt;/a&gt; }</pre> <p>However, it seems it is not working and it mention some syntax errors.</p> <p>When the child windows popup (a popup window that will open the ViewHistory.aspx) , I can't seems to read the value IID?</p> <p>So, how do I generate window.open link that will pass the IID parameters to the ViewHistory.aspx page and the ViewHistory.aspx will display the IID value for me to see?</p> <p>&nbsp;</p> <p></p> <p></p> <p>&nbsp;</p> 2013-06-20T09:48:39-04:002013-06-20T09:48:39.05-04:00urn:uuid:00000000-0000-0000-0000-000005430739http://forums.asp.net/p/1916232/5430739.aspx/1?How+to+Handle+DBNull+Values+in+loop+How to Handle DBNull Values in loop? <p>Hi</p> <p>I am fetaching data from a table some times it has null values some times it has values.</p> <p>I want to know what is the better way to handle dbnull values in loop.</p> <p>Here is my code that i have did but I want to know is there any better approach to handle this?</p> <p></p> <p>if (_DT.Rows.Count &gt; 0)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QualityRanking qr;<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach (DataRow DR in _DT.Rows)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (DR[&quot;ReportMonth&quot;] == DBNull.Value)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; qr = new QualityRanking();<br> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (string.IsNullOrEmpty(DR[&quot;ReportMonth&quot;].ToString()) == false)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; qr.month = Convert.ToInt32(DR[&quot;ReportMonth&quot;].ToString());</p> <p>}}}</p> 2013-06-20T09:27:49-04:002013-06-20T09:27:49.557-04:00