|
Posted to:
|
Since several people have asked, the new VPC’s are propping now. I suspect they should be up and available within the next 12 hours. Watch the IE or IETeam twitter accounts for updates. Read More...
|
|
Posted to:
|
1. Create a asp.net web application in Visual Studio Team Edition For Developers 2. Write some code inside Page_Load function protected void Page_Load( object sender, EventArgs e) { int sum = 0; for ( int i = 0; i...
|
|
Posted to:
|
I've avoided ASP.NET for a long time. Don't get me wrong, it's cool. I just haven't needed it. WinForms suits, and continues to serve me quite well. But still, as a developer who also does a lot of PHP (and other) web development. Sometimes I wanna use the "do it yourself" web dev model. Enter ASP.NET MVC Some of our guys wrote this book and it's now shipping from Amazon.com You can grab a free sample chapter HERE Technorati Tags: ASP.NET , MVC , Books ! Read More...
|
|
Posted to:
|
Do you copy/ paste a lot of unformatted HTML content in to your web forms? Do you always format HTML after pasting such content? There is an easy way to automatically format HTML on paste in VS. Here is how you do it. In Tools->Options dialog, go to...
|
|
Posted to:
|
Technorati Tags: ASP.NET , CMS , Graffiti Many folks have asked me to share the results of the evaluation that resulted in my choice of Graffiti to power MisfitGeek.com, so here it is. My blog ran on .text until it was orphaned when it’s author went to Telligent to work on Community Server. It’s since been forked by Microsoft’s own Phil Haack – see Subtext. I tried the 1 st version of Community Server but it was just way more than I needed for a blog. At the time I was doing some Podcast work and Subtext (at the time) lacked support for RSS Enclosures so I moved to DasBlog. At some point I migrated to BlogEngine.net – which I loved, but I had lots of little “issues”. I couldn’t find a theme that I liked; I also felt that, though it had many...
|
|
Posted to:
|
At long last, the book that I worked on with Scott Hanselman , Rob Conery , and Scott Guthrie is in stock at Amazon.com . To commemorate the book being available, the two Scotts worked very hard to convert the free eBook of chapter 1 (the end-to-end walkthrough) from the PDF into a series of HTML articles . This is a great series which walks through the construction of the NerdDinner website . It touches upon most of the day-to-day aspects of ASP.NET MVC that you’ll want to know. It’s a great way to start understanding how the pieces largely fit together. The rest of the book is for those who want to drill deep into the details of how the framework works. We tried to pepper the book with notes and anecdotes from the product team in a style similar...
|
|
Posted to:
|
I recently got an email with the following question: “Can you give me some very helpful hints with this one ? I am struggling with the following error in an asp.net application. Exception Message: Internal Error : Unable to load DLL 'RdbNet.dll': A dynamic link library (DLL) initialization routine failed. (Exception from HRESULT: 0x8007045A) The RdbNet.dll is an .NET dll from Oracle so I can't debug into it. If I use a windows forms application I never have the error. I have already used procmon, filemon and regmon to search for access denied, not found... and so but couldn't find a reasonable one.” My note: The actual .net Exception is System.DllNotFoundException I don’t really have a silver-bullet answer for this one, but I...
|
|
Posted to:
|
If you make a lot of customization to per tag options and you want import/ export these settings you could easily do so with Tools->Import/Export Settings dialog. To export your custom settings to a vssettings file, launch Import and Export Settings...
|
|
Posted to:
|
ASP.Net MVC 1.0 RTM has been out for a while and I noticed that people are still downloading an NUnit sample project I created for ASP.Net MVC Preview 3. Since then an AccountController class and a corresponding set of unit tests have been added to the MVC Application project. I created an updated set of NUnit templates with tests for the Home and Account controllers. To install the templates, just extract the zip file from the link below and run installNUnit.cmd . VWD Express is supported along with VSTS as well as support for x86 and x64 bit OS's. If you are installing on Vista or higher, run the cmd file as an admin. NUnit Test Templates Below is a screenshot of the NUnit AccountControllerTest class for Visual Basic. If you build a new...
|
|
Posted to:
|
If you’re still intimidated by jQuery or DOM manipulation in general, if you need to quickly build web animations, if you’re more a designer guy, if you think tooling makes sense, or a combination of the above, you should probably check out Glimmer . In a nutshell, Glimmer is a visual tool that builds HTML animations, menus, tooltips on jQuery. It builds all the code you need (HTML, CSS and JavaScript with jQuery) at the click of a button. Check it out! http://visitmix.com/Articles/Glimmer-a-jQuery-Interactive-Design-Tool Read More...
|