﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - WebGrid bugs</title><link>http://www.intersoftsolutions.com/Community/WebGrid/WebGrid-bugs/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WebGrid bugs</title><link>http://www.intersoftsolutions.com/Community/WebGrid/WebGrid-bugs/</link><pubDate>Tue, 28 Sep 2010 02:46:38 GMT</pubDate><dc:creator>niven</dc:creator><description>&lt;p&gt;Hi Staffan,&lt;/p&gt;&lt;p style="text-align: left; "&gt;It works fine on my WebGrid 6 build 220 and Framework 3 build 705. I have attach a video of my sample.&lt;/p&gt;
&lt;p style="text-align: left; "&gt;Please apply the new hotfix for WebGrid and Framework, then please run my attach sample.&lt;/p&gt;
&lt;p style="text-align: left; "&gt;If the the issue still persist please change my sample which can replicate your issue.&lt;/p&gt;
&lt;p style="text-align: left; "&gt;Thank you and have a nice day.&lt;/p&gt;
&lt;p style="text-align: left; "&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style="text-align: left; "&gt;Best regards,&lt;/p&gt;
&lt;p style="text-align: left; "&gt;Niven Prasetya&lt;/p&gt;</description></item><item><title>WebGrid bugs</title><link>http://www.intersoftsolutions.com/Community/WebGrid/WebGrid-bugs/</link><pubDate>Mon, 27 Sep 2010 05:05:51 GMT</pubDate><dc:creator>staffan.eriksson@semita.se</dc:creator><description>&lt;p&gt;My sp has always looked like this:&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;DELETE&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; tblCustomer &lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;WHERE&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; CustomerID &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;=&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; @CustomerID&lt;br /&gt;&lt;br /&gt;I don't see where I can make any adjustments here.&lt;br /&gt;&lt;br /&gt;// Staffan&lt;/span&gt;&lt;/p&gt;</description></item><item><title>WebGrid bugs</title><link>http://www.intersoftsolutions.com/Community/WebGrid/WebGrid-bugs/</link><pubDate>Sun, 26 Sep 2010 23:47:05 GMT</pubDate><dc:creator>niven</dc:creator><description>&lt;p&gt;Hi Staffan,&lt;/p&gt;
&lt;p&gt;I believe this would be the code produce by the ISDataSource&lt;/p&gt;&lt;pre&gt;&lt;pre&gt;&amp;lt;asp:AccessDataSource ID="AccessDataSource1" runat="server" 
            DataFile="~/App_Data/NorthWind.mdb" 
            DeleteCommand="DELETE FROM [Customers] WHERE (([CustomerID] = ?) OR ([CustomerID] IS NULL AND ? IS NULL))" 
            InsertCommand="INSERT INTO [Customers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" 
            SelectCommand="SELECT * FROM [Customers]" 
            
            UpdateCommand="UPDATE [Customers] SET [CompanyName] = ?, [ContactName] = ?, [ContactTitle] = ?, [Address] = ?, [City] = ?, [Region] = ?, [PostalCode] = ?, [Country] = ?, [Phone] = ?, [Fax] = ? WHERE (([CustomerID] = ?) OR ([CustomerID] IS NULL AND ? IS NULL))"&amp;gt;&lt;/pre&gt;
&lt;/pre&gt;

&lt;p&gt;By deleting the &lt;strong&gt;OR ([CustomerID] IS NULL AND ? IS NULL)&lt;/strong&gt;. It will become like the code below&lt;/p&gt;&lt;pre&gt;&amp;lt;asp:AccessDataSource ID="AccessDataSource1" runat="server" 
            DataFile="~/App_Data/NorthWind.mdb" 
            DeleteCommand="DELETE FROM [Customers] WHERE (([CustomerID] = ?))" 
            InsertCommand="INSERT INTO [Customers] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" 
            SelectCommand="SELECT * FROM [Customers]" 
            UpdateCommand="UPDATE [Customers] SET [CompanyName] = ?, [ContactName] = ?, [ContactTitle] = ?, [Address] = ?, [City] = ?, [Region] = ?, [PostalCode] = ?, [Country] = ?, [Phone] = ?, [Fax] = ? WHERE (([CustomerID] = ?))"&amp;gt;&lt;/pre&gt;

&lt;p&gt;You can adjust this to your spCustomerDelete.&lt;/p&gt;
&lt;p&gt;Hows the second issue?&lt;/p&gt;
&lt;p&gt; Thank you and have a nice day.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Niven Prasetya&lt;/p&gt;</description></item><item><title>WebGrid bugs</title><link>http://www.intersoftsolutions.com/Community/WebGrid/WebGrid-bugs/</link><pubDate>Fri, 24 Sep 2010 04:53:52 GMT</pubDate><dc:creator>staffan.eriksson@semita.se</dc:creator><description>&lt;p&gt;Hi!&lt;br /&gt;&lt;br /&gt;Regarding the first issue: I'm calling a sp "spCustomerDelete". What is the solution then?&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;I come back with my response after testing your attached sample regarding the second issue.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;// Staffan&lt;/p&gt;</description></item><item><title>WebGrid bugs</title><link>http://www.intersoftsolutions.com/Community/WebGrid/WebGrid-bugs/</link><pubDate>Fri, 24 Sep 2010 04:41:22 GMT</pubDate><dc:creator>niven</dc:creator><description>&lt;p&gt;Hi Staffan,&lt;/p&gt;&lt;p&gt;For your first issue, please delete the "&lt;strong&gt;OR ([CustomerID] IS NULL AND ? IS NULL)&lt;/strong&gt;" inside the DeleteCommand, please also delete the UpdateCommand to make it work as well.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;For your second issue, please try my attach sample, let me know if the problem still persist. I can't replicate your second issue on my side.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thank you and have a nice day.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Niven Prasetya&lt;br /&gt;&lt;/p&gt;</description></item><item><title>WebGrid bugs</title><link>http://www.intersoftsolutions.com/Community/WebGrid/WebGrid-bugs/</link><pubDate>Thu, 23 Sep 2010 03:53:08 GMT</pubDate><dc:creator>staffan.eriksson@semita.se</dc:creator><description>&lt;p&gt;In WebGrid 6.0 (219) there are the following bugs:&lt;/p&gt;
&lt;p&gt;1. If I try to delete or update a record directly after insert an error message is shown. If I reload the page after insert then it is possible to delete or update the record.&lt;br /&gt;&lt;br /&gt;2. If AllowColumnFreezing="Default" and FreezePaneSettings ActiveFrozenColumns="1" IE hangs when the mouse pointer is moved to add new row. If AllowColumnFreezing="Yes" it works correctly.&lt;/p&gt;
&lt;p&gt;// Staffan &lt;br /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item></channel></rss>