My first day to start Behaviour Driven Development (BDD) with MSpec. After discussion within development we decided to go for Machine.Specifications (or MSpec for short) I used NuGet Package to install MSpec and I searched with word mspec but found nothing then searched with word Machine and found the mspec package (Machine.Specifications). I installed it. [...]
I was struggling to download pdf extension for open office and did some google searches all blogs and articles were taking me to http://extensions.services.openoffice.org/project/pdfimport but at this address it says “problem loading page” so i was unable to down load the pdf extension luckily i found following URL where from I was able to download [...]
Using MySql as Linked Server in Sql Server 2008 Recently I was given an assignment to create some Reports using SSRS. They system were in use was osTicket (its an open source php, mysql) ticket management system. I decided to use SQL server linked server object. By doing this I can easily query and write [...]
What is chatroulette ? Word “rou – lette” [roo-let] Show IPA noun, verb, -let·ted, -let·ting. What is Roulette? Roulette is a game of chance played at a table marked off with numbers from 1 to 36, one or two zeros, and several other sections affording the players a variety of betting opportunities, and having in [...]
How to generate XML website map for free using IIS If you want to create a sitemap for your website, it’s very very easy and free of cost. You can do it in your own time at your own computer. So as it’s on your computer its your property and you can play with it [...]
A Quick solution when trying to format a textbox with CSS, and currency format is a bit tricky in ASP.NET MVC You can’t put CSS on a Html.EditorFor like you can on a TextBoxFor like so <%= Html.TextBoxFor(x => x.CostPrice, new { @class = “textShort”, maxlength = “50″ })%> And you cant put a tag [...]
First Install Idol Server from the installation package: Go through the wizard and install IDOL ensure you have license file, and specify install folder right at the start of the wizard. http://127.0.0.1:9000/action=getstatus is working. Run http://127.0.0.1:9000/action=indexergetstatus Get this error: <?xml version=”1.0″ encoding=”UTF-8″ ?> – <autnresponse xmlns:autn=”http://schemas.autonomy.com/aci/”> <action>LICENSEINFO</action> <response>ERROR</response> – <responsedata> – <error> <errorid>IDOLPROXYLICENSEINFO1</errorid> <rawerrorid>0×1</rawerrorid> <errorstring>ERROR</errorstring> [...]
Often you want to debug a website hosted in IIS from your visal studio. Requirement: Visual Studio, Website (you want to debug) must have the same source code. Now web browser (Internet explorer, Firefox , Google chrome etc) type the URL of your website hosted in IIS (Internet Infomration Server). Open the Source code in [...]
Recently I was working on to create XML menu from SQL table. We have two tables one table is NavigationSystem and second table is Navigation Item. Following was required to show Parent Child relation ship. <Navigation> <NavigationSystem> <systemid>1</systemid> <Title>Top Menu</Title> <Items> <Item> <systemid>1</systemid> <ItemId>1</ItemId> <label>Home</label> <Url>http://www.isolutionteam.co.uk</Url> </Item> <Item> <systemid>1</systemid> <ItemId>2</ItemId> <label>Database</label> <Url>http://www.isolutionteam.co.uk/Database</Url> </Item> </Items [...]
The other day I copied a working website solution onto a different machine and attempted to compile and run it in debug mode. It compiled fine and started to run, the browser attempted to load the page up in debug mode running of a port (as is normal), but then I got a Page Not [...]
Let me explain the following code and what i think about the topic “Blessings of Jquery “each” and Jquery selectors – asp.net mvc form validation” <script type=”text/javascript”> $(document).ready(function() { var isValid = false; $(‘input:text’).each(function() { if ($(this).val() == “0″) { $(this).val(“”); } }); $(“#btSubmit”).click(function() { $(‘input:text’).each(function() { if ($(this).val().length > 0) { isValid = true; [...]