I had a discussion with my friend Miel (Coolz0r) about spyware and their scanners for it. 6 months ago I did a test of several anti-spyware programs and MS antispyware became the winner. It found the most spyware and what I liked most about it was that it provide everything that Ad-aware and Spybot supplied all together. This and the spynet option. But in 6 months a lot can change and now I have whenU on my machine together with some other heavy duty spyware. More on the reasons for this you can ......
To get the subtotal of products in their own subcategory <Category> <SubCategory> <Products> <Product_Verkoopbasis>... <Product_Voorraad>233... </Products> <Products> <Product_Verkoopbasis>... <Product_Voorraad>23&... </Products> </SubCategory> <SubCategory> <Products> <Product_Verkoopbasis>... ......
Jenni tennison has a cool reference site for those who want to know more about xslt
http://www.jenitennison.com/xslt/index.xml
Thanks Jenni ;-)
Very cool series about the gridview, and hopefully also some answers to my previous wonderings
http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/GridViewEx05.asp
The snippet below will fill a label with all the cultures stored. Since india has 5 languages India will be in there five times. I will keep this as an emergency solution because it also misses out on some countries. Like where is mauritsius ? I was always wondering if I couldn't obtain this list from the OS. So this question is answerred.. I can :) But not correctly RegionInfo ri;foreach (CultureInfo ci in CultureInfo.GetCultures(Cul... string cu = ci.Name; cu = cu.Substring(cu.Length ......
It seems that because datetime is a value type it is impossible to save a null value. If you use 2-way databinding in formview for saving dates. You will have problems even when just using a calendar control. This is the solution I found to my problem In the html view change the Bind(”Date_ColumnR... into Eval(”Date_ColumnR... <asp:TextBox ID="Timesheet_DateTextBox" runat="server" Text='<%# Bind("Timesheet_Date") %>' Width="124px"></asp:T... should then become ......