User Sergiu Damian - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T03:06:31Zhttp://stackoverflow.com/feeds/user/41345http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/639894/how-to-bind-a-list-count-to-a-label-in-winforms/639976#6399761Answer by Sergiu Damian for How to bind a list count to a label in WinForms?Sergiu Damian2009-03-12T18:49:51Z2009-03-12T18:49:51Z<p>Bindings listen to the PropertyChanged event of the IPropertyChanged interface. I don't think that List.Count is reported as a PropertyChanged event when it is changed.</p>
<p>What you could do is to implement your custom List or to find a collection that notifies when the Count is changed.</p>
http://stackoverflow.com/questions/629189/best-way-to-design-a-multi-type-object/629247#6292470Answer by Sergiu Damian for Best way to design a multi-type objectSergiu Damian2009-03-10T07:43:29Z2009-03-10T07:43:29Z<p>One thing is to store any type in your internal state of the class, and another is to expose it externally. When you write a class, you are actually declaring a contract for its behavior. The way you write it will influence greatly how client code will look like when using the class.</p>
<p>For example, by implementing the <a href="http://msdn.microsoft.com/en-us/library/system.iconvertible.aspx" rel="nofollow">IConvertible</a> interface you state that your type can be converted to any CLR type as an equivalent value.</p>
<p>I have also seen implementations where a Value class was used to store results of calculations, results that could represent either a string, double, int or boolean. But, the problem was that client code had to check a Value.Type property of an enum {String, Integer, Double, Boolean} and then either cast the Value.Value property (which was exposed externally by the Value class as an Object type) or use the specific ValueString, ValueDouble, ValueInt, ValueBoolean getters.</p>
http://stackoverflow.com/questions/627996/how-do-you-bind-a-gridview-column-to-a-subclass-value/628026#6280262Answer by Sergiu Damian for How do you bind a gridview column to a subclass value?Sergiu Damian2009-03-09T20:59:55Z2009-03-10T07:29:47Z<p>The data binding mechanism behind ASP.NET GridView supports only one level bindings. (as opposed to its WinForms Binding counterpart that supports multi-level in the case of binding to a DataSet / DataTable / DataView).</p>
<p>You have three possible solutions:</p>
<ol>
<li>Handling the ItemDataBound event for each row</li>
<li>Extending your root level entities with properties that expose the child object properties and using these properties for the binding expressions</li>
<li>Instead of using a BoundField you could use a Template Field and generate the content using a <%= %> expression that accesses the Data Item.</li>
</ol>
http://stackoverflow.com/questions/626613/wpf-event-property-changed/626633#6266332Answer by Sergiu Damian for WPF event property changed?Sergiu Damian2009-03-09T15:14:52Z2009-03-09T15:14:52Z<p>WPF controls inherit DependencyObject class. See: <a href="http://msdn.microsoft.com/en-us/library/system.windows.dependencyobject.aspx" rel="nofollow">MSDN</a></p>
<p>For business entities, you could still implement INotifyPropertyChanged.</p>
http://stackoverflow.com/questions/555889/compositewpf-eventaggregator-when-to-use/560050#5600504Answer by Sergiu Damian for CompositeWPF: EventAggregator - when to use?Sergiu Damian2009-02-18T06:35:29Z2009-02-18T06:35:29Z<p>This is a good question. In Composite WPF (Prism) there are 3 possible ways to communicate between parts of your app. One way is to use Commanding, which is used only to pass UI-triggered actions down the road to the actual code implementing that action. Another way is to use Shared Services, where multiple parts hold a reference to the same Service (Singleton) and they handle various events on that service in the classical way. For disconnected and asynchronous communication, as you already stated, the best way is to use the Event Aggregator (which follows closely Martin Fowler's pattern).</p>
<p>Now, when to and not to use it:</p>
<ol>
<li>Use it when you need to communicate between modules. (for example, a Task module needs to be notified when a Task is created by any other module).</li>
<li>Use it when you have multiple possible receivers or sources of the same event. For example, you have a list of objects and you want to refresh it whenever an object of that type is saved or created. Instead of holding references to all open edit/create screens, you just subscribe to this specific event.</li>
<li>Don't use it when you only have to subscribe to normal events in the Model View Presenter area. For example, if your presenter listens to changes in the Model (for example the Model implements INotifyPropertyChanged) and your Presenter needs to react on such changes, it's better that your Presenter handles directly the PropertyChanged event of the Model instead of diverting such events through the Event Aggregator. So, if both the sender and receiver are in the same unit, there's no need to "broadcast" such events to the whole application.</li>
</ol>
<p>I hope this answers your question.</p>
http://stackoverflow.com/questions/558315/what-is-the-easiest-way-to-get-4or-any-count-random-unique-ids-from-an-id-colle/558358#558358-2Answer by Sergiu Damian for What is the easiest way to get 4(or any count) random unique ids from an id collection with c#?Sergiu Damian2009-02-17T19:24:12Z2009-02-17T19:24:12Z<pre><code>Random random = new Random();
long firstOne = idCollection[random.Next(idCollection.Count)];
long secondOne = idCollection[random.NExt(idCollection.Count)];
</code></pre>
<p>...and so on</p>
http://stackoverflow.com/questions/550210/uses-for-machinekey-in-asp-net/551210#5512102Answer by Sergiu Damian for Uses for MachineKey in ASP.NETSergiu Damian2009-02-15T17:03:34Z2009-02-15T17:03:34Z<p>MachineKey is used for:</p>
<ul>
<li>ViewState encryption and validation</li>
<li>Forms Authentication uses this key for signing the authentication ticket</li>
</ul>
<p>Having a Web App installed on multiple servers requires same Machine Key configured on all of them in order for Load Balancing to work.</p>
<p>To see all details, please refer to: <a href="http://msdn.microsoft.com/en-us/library/ms998288.aspx#paght000007_machinekeyexplained" rel="nofollow">MSDN How To: Configure MachineKey in ASP.NET 2.0</a></p>
http://stackoverflow.com/questions/522574/submitting-data-from-a-web-application-to-c-console-application/523610#5236100Answer by Sergiu Damian for Submitting data from a web application to C# console applicationSergiu Damian2009-02-07T11:01:44Z2009-02-07T11:31:38Z<p>Using the simplest technologies, your Console App could connect to the database in a loop controlled by a Timer or a BackgroundWorker. You would need a way to know what records are new and which aren't. If you can delete the records from that table when you poll them, it means each time you do it, you'll get only new records. If you can't delete them, use a TimeStamp field in that table and each time you poll you select the recrods with that time stamp greater than the maximum time stamp of the previous batch. If you need to mark those records as processed, then you can set that flag and forget about the timestamp.</p>
http://stackoverflow.com/questions/446600/how-to-populate-each-datagridviewcomboboxcell-with-different-data/477510#4775101Answer by Sergiu Damian for How to populate each DataGridViewComboBoxCell with different data?Sergiu Damian2009-01-25T10:34:38Z2009-01-25T10:34:38Z<p>One idea would be to use a secondary Binding Source for the "SubLocations" column. This BindingSource can be filtered by the LocationId selected in the "Locations" column. The key to do this is to use the EditingControlShowing and CellValueChanged events of the grid to set the proper filtering on the SubLocations column when the selected Location changes.</p>
<p>There is one example <a href="http://groups.google.com/group/microsoft.public.dotnet.general/msg/5f318fb8fafc6249" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/461842/pre-compile-website-in-setup-deployment/471049#4710494Answer by Sergiu Damian for pre compile website in Setup & DeploymentSergiu Damian2009-01-22T22:13:57Z2009-01-22T22:19:56Z<p>I see you tried the standard Web Setup project from VS.
Scott Gu's blog post takes you to this page: </p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0aa30ae8-c73b-4bdd-bb1b-fe697256c459&DisplayLang=en" rel="nofollow">Visual Studio 2008 Web Deployment Projects</a></p>
<p>which is a plugin for Visual Studio that activates an additional "right click" option to any Web Site project to add such a deployment project. You can see here what I created.... And the output is a pre-compiled web application. Now, if you add a regular Web Setup project to your solution, and point it to the previously created Web Deploy project as its content, ... I got a valid build, no errors and an MSI file was created...with dlls inside it. </p>
<p><img src="http://img222.imageshack.us/img222/6177/71881923mj9.jpg"/></p>
<p>I hope this helps you.</p>
http://stackoverflow.com/questions/459046/c-winforms-linq-to-sql-datacontext-lifecycle/463151#4631511Answer by Sergiu Damian for C#, Winforms & LINQ to SQL.. Datacontext lifecycle?Sergiu Damian2009-01-20T21:16:42Z2009-01-20T21:16:42Z<p>If you are thinking to choose between having a long-lived DataContext (for example as a Singleton in your app) or having short-lived DataContexts, I would choose the second. I would new() a DataContext for each "Unit Of Work" and make sure to keep it alive for as short a period as possible. Creating a new DataContext is not a big issue, since they cache metadata anyway. Having a long lived DataContext gives you a bit of a nightmare when it starts tracking to many objects.</p>
http://stackoverflow.com/questions/430955/what-is-the-fastest-way-to-open-a-form-from-a-form/431423#4314232Answer by Sergiu Damian for What is the fastest way to open a form from a form?Sergiu Damian2009-01-10T17:52:17Z2009-01-10T17:52:17Z<p>Depending on your requirements, you might trick your users to see a splash screen when your application loads. During this time, you instantiate important forms in the background. This approach should give you a few extra seconds that most users don't think of as "being slow". Users usually accept that an app starts slower if it works reasonably fast afterwards.</p>
http://stackoverflow.com/questions/415309/efficiency-of-persistence-methods-for-large-asp-net-cache-store/416192#4161920Answer by Sergiu Damian for Efficiency of persistence methods for large asp.net cache storeSergiu Damian2009-01-06T11:34:02Z2009-01-06T11:34:02Z<p>We have built an application that uses Caching for storing all resources. The application is multi-language, so for each label in the application we have at least three translations. We load a (Label,Culture) combination when first needed and then expire it from cache only if it was changed by and admin in the database. This scenario worked perfectly well even when the cache contained 100000 items in it. We only took care to configure the cache and the expiry policies such that we really benefit of the Cache. We use no-expiration, so the items are cached until the worker process is reset or until the item is intentionally expired. We also took care to define a domain for the values of the keys in such a way to uniquely identify a label in a specific culture with the least amount of characters.</p>
http://stackoverflow.com/questions/407756/internationalization-in-the-database/407808#4078080Answer by Sergiu Damian for Internationalization in the databaseSergiu Damian2009-01-02T19:32:11Z2009-01-02T19:32:11Z<p>If you refer to making your app support multiple languages at the UI level, then there are more possibilities. If the labels never change, unless when you release a new version, then resource files that get embedded in the executable or assembly itself are your best bet, since they work faster. If your labels, on the other hand, need to be adjusted at runtime by the users, then storing the translations in the database is a good choice. As far as the code itself, the names of tables & fields in the database, we keep them in English as much as possible, since English is the "de facto" standard for IT people.</p>
http://stackoverflow.com/questions/315758/asp-net-based-workflow-engine/350816#3508160Answer by Sergiu Damian for ASP.NET based Workflow EngineSergiu Damian2008-12-08T20:41:51Z2008-12-08T20:41:51Z<p>While browsing the web for some workflow & BPM resources, I found this project: <a href="http://www.netbpm.org/" rel="nofollow">NetBPM</a>. Unfortunatelly, the project seems to be stopped.</p>
http://stackoverflow.com/questions/350655/how-do-i-associate-the-enter-key-with-a-button-on-an-aspx-page/350674#3506740Answer by Sergiu Damian for How do I associate the Enter key with a button on an aspx page?Sergiu Damian2008-12-08T19:57:48Z2008-12-08T19:57:48Z<p>Page.Form.DefaultButton - msdn link <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.htmlcontrols.htmlform.defaultbutton.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/350303/web-forwarding-proxy-in-c-or-php-available/350564#3505641Answer by Sergiu Damian for Web forwarding proxy in C# or PHP available?Sergiu Damian2008-12-08T19:24:03Z2008-12-08T19:24:03Z<p>Although quite old, the Org.Mentalis.Proxy could be a good starting point for an example proxy implementation in C#. You can find it here: <a href="http://www.mentalis.org/soft/projects/proxy/" rel="nofollow">http://www.mentalis.org/soft/projects/proxy/</a></p>
http://stackoverflow.com/questions/315758/asp-net-based-workflow-engine/348094#3480941Answer by Sergiu Damian for ASP.NET based Workflow EngineSergiu Damian2008-12-07T21:22:31Z2008-12-07T21:22:31Z<p>Building a custom workflow engine is not trivial, although it may seem simple at first. We've tried that. It depends a lot on the complexity of the logic you need it to cover.</p>
<p>Given the current state of the Windows Workflow Foundation and the lack of another framework that abstracts the workflow concepts, I would choose WF if you need complex logic, asynchronous handling or branches in your workflows.</p>
<p>Tracking your state through the workflow can be accomplished by carrying some kind of xml payload or storing the state in a database,</p>
<p>If your workflow is actually a sequential set of forms that need to be filled in by the user, tracking the steps and guiding the user to the next step can be accomplished with some simple custom solution.</p>
http://stackoverflow.com/questions/347910/is-there-a-c-library-for-wrapping-multiple-scm-providers-apis/348081#3480811Answer by Sergiu Damian for Is there a c# library for wrapping multiple SCM provider's APIs?Sergiu Damian2008-12-07T21:08:54Z2008-12-07T21:08:54Z<p>MSSCCI would help many source control products to be directly accessible from Visual Studio, but not necessarily usable from .NET code. To my knowledge, there is no .NET library that abstracts access to all the source control products, not even to more than one.</p>
<p>It would be interesting if you could wrap a MSSCCI provider (probably you have to implement some C++ headers) as a .NET assembly.</p>
http://stackoverflow.com/questions/342325/why-are-commas-inserted-when-innerhtml-is-copied-after-postback/343161#3431613Answer by Sergiu Damian for Why are commas inserted when innerHTML is copied after Postback?Sergiu Damian2008-12-05T08:00:58Z2008-12-05T08:00:58Z<p>I don't have time to read your entire code, but please pay attention to the following: you may be copying a HTML chunk and creating a clone of it in your code. This way, you actually get two textboxes with the same Id, although you see only one of them. At postback, the browser concatenates the values as a comma-separated list. For example, if you enter "Test1" and "Test2" in the textboxes, respectively, and then submit, both textboxes get the value doubled. Now, if you only expand one of them (the first, let's say), and submit, only the expanded one gets doubled again, while the one not expanded stays the same over postbacks.</p>
<p>For a solution, if you only need to show or hide a div, the best way is to do it from javascript, client side, by changing the style (visibility) of that div, and not by cloning it. This way, your function could be reduced to one line of code.</p>
http://stackoverflow.com/questions/333484/can-the-postbackurl-be-set-for-a-gridview-commandfield/334062#3340621Answer by Sergiu Damian for Can the PostbackUrl be set for a GridView CommandField?Sergiu Damian2008-12-02T14:18:59Z2008-12-04T21:13:37Z<p>Leppie is right. The GridView has no PostbackUrl property. However, you can do what you want by using a standard control, which has a PostbackUrl property.</p>
<pre><code><asp:TemplateField AccessibleHeaderText="Edit">
<ItemTemplate>
<asp:Button runat="server" ID="btnEdit" PostBackUrl="~/Default.aspx" OnClientClick='form1.ActivityId.value = this.Tag;' Tag='<%# Eval("ActivityId") %>' Text="Edit"/>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>In this sample code, I added a TemplateColumn to the GridView. I use a dynamically added Tag attribute for the button to pass the Id, then I use Javascript code to put the value in a hidden field, and then the button simply postsback to the page specified in the PostbackUrl property.</p>
http://stackoverflow.com/questions/340608/dynamic-paramter-count-for-sql-with-c/340630#3406301Answer by Sergiu Damian for Dynamic Paramter Count for SQL with C#Sergiu Damian2008-12-04T13:49:57Z2008-12-04T13:49:57Z<p>I hear that SQL Server 2008 has a feature called Table Parameters, so you can pass a Table as a parameter to a Function or Stored Procedure.</p>
<p>Until then, you could use the classic:</p>
<pre><code>SELECT UserId FROM NameTable WHERE CHARINDEX( '|' + Name + '|', '|Filip Ekberg|Filip|Ekberg Filip|') > 0
</code></pre>
<p>This means that column name can be any of the values you have in the list.</p>
<p>You can also pass an XML parameter into the stored procedure and then use it as a table in your code, via the OPENXML command.</p>
http://stackoverflow.com/questions/338940/how-to-create-a-listener-for-wcf-servicehost-events-when-service-is-hosted-under/340119#3401191Answer by Sergiu Damian for How to Create a Listener for WCF ServiceHost events when service is hosted under IIS?Sergiu Damian2008-12-04T10:15:15Z2008-12-04T10:15:15Z<p>Well, I'm out of ideas, but I think that <a href="http://msdn.microsoft.com/en-us/library/bb332338.aspx" rel="nofollow">this article</a> contains your answer in the chapter: "Accessing ServiceHost in IIS". It seems you need to build your own HostFactory because out of the box IIS uses the standard HostFactory and practically controls the creation and destruction of Hosts. By providing your own HostFactory you can add your own code to control the initialization and destruction...</p>
http://stackoverflow.com/questions/338935/binding-to-datagridview-is-there-a-way-to-bind-the-background-color-of-a-cell/340063#3400631Answer by Sergiu Damian for Binding to DataGridView - Is there a way to "bind" the background color of a cell?Sergiu Damian2008-12-04T09:49:43Z2008-12-04T09:49:43Z<p>Out of the box, any DataGridViewColumn can be bound to only one property of the objects in the DataSource, the name of the property being given by the DataPropertyName of each DataGridViewColumn (you'll have specific column types like: DataGridViewTextBoxColumn, ...). </p>
<p>You could use the DataGridView.CellFormatting event to change the style of the cell depending on the databound item. In the In the DataGridViewCellFormattingEventArgs of this event you get the row index, from there you can get the current object (the source of the row). From there, you could use any property of the object to influence your cell.</p>
<p>A good starting point (similar idea): <a href="http://www.developer-corner.com/Resources/KnowledgeBase/tabid/118/articleType/ArticleView/articleId/28/DataGridView-how-to-bind-nested-objects.aspx" rel="nofollow">here</a></p>
<p>A second idea would be do develop your own DataGridViewColumn type and add properties for other things you need to bind to. For example, the same way it has the built in DataPropertyName, you could add your own: BackgroundColorPropertyName. A starting point for building custom DataGridViewColumns can be found <a href="http://msdn.microsoft.com/en-us/library/ms180996.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/339709/what-is-the-equivalent-of-javas-abstractmap-in-c/339770#3397704Answer by Sergiu Damian for What is the equivalent of Java's AbstractMap in C#?Sergiu Damian2008-12-04T07:09:45Z2008-12-04T07:09:45Z<p><code>System.Collections.Generic</code> namespace contains three implementations of <code>IDictionary<K,V></code>: <code>Dictionary<TKey, TValue></code>, <code>SortedDictionary<TKey, TValue></code> and <code>SortedList<TKey, TValue></code>.</p>
http://stackoverflow.com/questions/338366/c-vs-net-2008-changing-settings-per-configuration/339032#3390320Answer by Sergiu Damian for C# VS.NET 2008 Changing settings per configurationSergiu Damian2008-12-03T22:50:09Z2008-12-03T22:50:09Z<p>Besides all these, MS promised to add this feature in VS 2010.</p>
http://stackoverflow.com/questions/338940/how-to-create-a-listener-for-wcf-servicehost-events-when-service-is-hosted-under/339009#3390090Answer by Sergiu Damian for How to Create a Listener for WCF ServiceHost events when service is hosted under IIS?Sergiu Damian2008-12-03T22:40:53Z2008-12-03T22:40:53Z<p>The whole point of WCF services and IIS hosting is to achieve scalability and allow easy hosting. Although you could connect to events exposed by the ServiceHostBase class (see <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.servicehostbase_events.aspx" rel="nofollow">here</a>), I would recommend against it and analyzing if you really need those shared resources. The main reasons for asking you to re-think are: shared resources need to be thread safe (IIS can serve many requests simultaneously), so this creates a bottleneck for the scalability of your application and secondly, it's best if your services are stateless, and this includes (I guess) the usage of share resources (or application wide resources).</p>
http://stackoverflow.com/questions/336526/is-there-a-library-for-notification-alert-in-net/336945#3369452Answer by Sergiu Damian for Is there a library for notification/alert in .NET?Sergiu Damian2008-12-03T12:20:44Z2008-12-03T12:20:44Z<p>I think it's worth looking to frameworks like Windows Live Alerts: <a href="http://dev.live.com/alerts/" rel="nofollow">http://dev.live.com/alerts/</a></p>
http://stackoverflow.com/questions/336884/how-to-compare-two-elements-of-the-same-but-unconstrained-generic-type-for-equali/336913#3369137Answer by Sergiu Damian for How to compare two elements of the same but unconstrained generic type for equality?Sergiu Damian2008-12-03T12:02:00Z2008-12-03T12:12:15Z<p>Did you try something like this?</p>
<pre><code>public class Example<TValue>
{
private TValue _value;
public TValue Value
{
get { return _value; }
set
{
if (!object.Equals(_value, value))
{
_value = value;
OnPropertyChanged("Value");
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/336813/server-transfer-vs-context-rewritepath/336847#3368471Answer by Sergiu Damian for Server.Transfer vs. Context.RewritePathSergiu Damian2008-12-03T11:18:23Z2008-12-03T11:18:23Z<p>To avoid the exception thrown by Server.Transfer, you can use Server.Execute. Both Server.Transfer and Server.Execute DO NOT issue an 302 HTTP message. Only Response.Redirect issues this header and asks the browser to go to the new destination, claiming that it was temporarily moved. Both Server.Transfer and Server.Execute allow you to execute a different page to service current request.</p>
http://stackoverflow.com/questions/887154/what-identity-provider-does-the-majority-of-stackoverflow-users-useComment by Sergiu Damian on What identity provider does the majority of Stackoverflow users use?Sergiu Damian2009-05-20T10:23:35Z2009-05-20T10:23:35ZHow is this not programming related? can't you share your experience on the subject? I consider it very important that somebody who want to build a new web site can benefit of this knowledge. What identity provider to use.http://stackoverflow.com/questions/461842/pre-compile-website-in-setup-deployment/463128#463128Comment by Sergiu Damian on pre compile website in Setup & DeploymentSergiu Damian2009-01-22T22:03:59Z2009-01-22T22:03:59ZHi, it's not nice to trash the only peer who actually answered your question. Please read below. If it helps, please undo your marks.http://stackoverflow.com/questions/431296/how-can-i-take-more-control-in-asp-net/431360#431360Comment by Sergiu Damian on How can I take more control in ASP.NET?Sergiu Damian2009-01-10T17:48:18Z2009-01-10T17:48:18ZIndeed, a <form runat="server"> would add the __VIEWSTATE (and some other) hidden field even when you set EnableViewState="False" at page level. This is the way to go if you want to loose the ViewState on the page. As for Url friendliness, urlrewriting might be an option.http://stackoverflow.com/questions/384755/linq-to-sql-one-to-many-databinding-deleting-problemComment by Sergiu Damian on LINQ-to-SQL + One-to-Many + DataBinding deleting problemSergiu Damian2008-12-22T08:00:11Z2008-12-22T08:00:11ZDoes your new Reciepe object belong to a DataContext when you add/delete Ingredient objects to it?http://stackoverflow.com/questions/350303/web-forwarding-proxy-in-c-or-php-available/350564#350564Comment by Sergiu Damian on Web forwarding proxy in C# or PHP available?Sergiu Damian2008-12-08T19:52:05Z2008-12-08T19:52:05ZYou're welcome. Generally speaking, a HTTP proxy is a server. Of course it can be used on a normal machine, can be used for debugging HTTP headers or intercepting & analyzing traffic (there are specialized tools for this purpose). It's very well written anyway, so it's a good starting point.http://stackoverflow.com/questions/323064/how-to-convert-gridview-to-datatable/323615#323615Comment by Sergiu Damian on how to convert Gridview to DatatableSergiu Damian2008-12-08T19:48:15Z2008-12-08T19:48:15ZWhat do you mean by using two sessions?http://stackoverflow.com/questions/333484/can-the-postbackurl-be-set-for-a-gridview-commandfield/334062#334062Comment by Sergiu Damian on Can the PostbackUrl be set for a GridView CommandField?Sergiu Damian2008-12-04T21:14:49Z2008-12-04T21:14:49ZTested in IE only!
http://stackoverflow.com/questions/340608/dynamic-paramter-count-for-sql-with-c/340630#340630Comment by Sergiu Damian on Dynamic Paramter Count for SQL with C#Sergiu Damian2008-12-04T14:31:00Z2008-12-04T14:31:00ZI did not test it yet, but I read it will be a new feature of SQL Server 2008!http://stackoverflow.com/questions/323064/how-to-convert-gridview-to-datatable/323615#323615Comment by Sergiu Damian on how to convert Gridview to DatatableSergiu Damian2008-12-02T13:54:39Z2008-12-02T13:54:39ZYou can Bind data to a GridView, you can edit one record at a time. Basically, after each row is edited, it has to be saved before being able to edit another row.
A good starting point: <a href="http://msdn.microsoft.com/en-us/magazine/cc163933.aspx" rel="nofollow">msdn.microsoft.com/en-us/magazine/…</a>