Sign in
Mikhail Arkhipov (MSFT)'s WebLog
Visual Web Developer stuff
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Personal
Rants
Archive
Archives
June 2012
(1)
July 2010
(1)
January 2009
(1)
December 2008
(5)
June 2008
(2)
April 2008
(1)
March 2008
(3)
January 2008
(1)
December 2007
(5)
November 2007
(3)
October 2007
(4)
September 2007
(3)
August 2007
(3)
April 2007
(5)
February 2007
(3)
January 2007
(3)
December 2006
(7)
November 2006
(3)
October 2006
(2)
September 2006
(2)
July 2006
(4)
June 2006
(4)
May 2006
(7)
April 2006
(8)
March 2006
(5)
February 2006
(3)
January 2006
(2)
December 2005
(6)
November 2005
(4)
October 2005
(3)
September 2005
(1)
August 2005
(6)
July 2005
(2)
June 2005
(15)
May 2005
(3)
April 2005
(6)
March 2005
(2)
January 2005
(7)
December 2004
(3)
November 2004
(1)
October 2004
(3)
September 2004
(4)
August 2004
(13)
July 2004
(6)
June 2004
(16)
May 2004
(15)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Mikhail Arkhipov (MSFT)'s WebLog
Weather Forecast ASP.NET user control
Posted
over 9 years ago
by
Mikhail Arkhipov
25
Comments
I am posting source code for the weather report control that I am using on my Web site. It looks like this: It fetches weather forecast data from a free XML Web service provided by US National Oceanic and Atmospheric Administration (NOAA). There is...
Mikhail Arkhipov (MSFT)'s WebLog
Why overflow:auto requires element to have fixed width or height?
Posted
over 9 years ago
by
Mikhail Arkhipov
5
Comments
While editing my Web site the other day I encountered an interesting problem. For some reason W3C decided that overlow property for some reason should only provide scroll if element has fixed size and/or absolutely positioned (I guess that's what is the...
Mikhail Arkhipov (MSFT)'s WebLog
Why there is no charset property in ASPX pages
Posted
over 9 years ago
by
Mikhail Arkhipov
1
Comments
...or how HTML editor handles file encoding. First, Visual Studio is a Unicode application and actually even supports Unicode Surrogates Pairs . Most of Web pages, however, are not stored in Unicode. Therefore when opening a Web page VS has to figure...
Mikhail Arkhipov (MSFT)'s WebLog
How do you see markup syntax of ASP.NET controls with generics?
Posted
over 9 years ago
by
Mikhail Arkhipov
32
Comments
Reading this post made me thinking how exactly markup for a generic control should look like. It would be nice to have something that is SGML-compiliant syntax so we won't have to special case anything in our parser. For example < vc : SomeGenericControl...
Mikhail Arkhipov (MSFT)'s WebLog
HTML editor based on Gecko
Posted
over 9 years ago
by
Mikhail Arkhipov
15
Comments
This weekend I downloaded NVU which is HTML editor based on Gecko engine.I played with a bit and quickly figure out that it exhibits the same problem as editor based on MSHTML: lack of preservation of user formatting and lack of XHTML compliance. Which...
Mikhail Arkhipov (MSFT)'s WebLog
Adding custom DOM to the VS client script intellisense
Posted
over 9 years ago
by
Mikhail Arkhipov
8
Comments
Did you know that you can add your own document object model to Visual Studio client script intellisense? Here is how. The technique works in VS 2002 and VS 2003, but I will use VS 2005 for simplicity. In order to provide client script intellisense we...
Mikhail Arkhipov (MSFT)'s WebLog
Naming conventions: I don't like camel and I do like Hungarian
Posted
over 9 years ago
by
Mikhail Arkhipov
17
Comments
This post made me thinking about naming convention in managed code. I tend to disagree with naming guidelines on MSDN since names in them sound names in a typeless language such as Javascript. Hungarian is still useful since it is about code readability...
Mikhail Arkhipov (MSFT)'s WebLog
Adding custom DOM to the VS client script intellisense. Part 2: Events.
Posted
over 9 years ago
by
Mikhail Arkhipov
2
Comments
In my previous post I showed how to create a simple client script intellisense schema. I recei ved some feedback that this stuff is complex. Yes, I have to admit it might look scary. However, there are very few ways exist to describe objects, their methods...
Mikhail Arkhipov (MSFT)'s WebLog
Your product feedback votes at work
Posted
over 9 years ago
by
Mikhail Arkhipov
6
Comments
Last week a few DCRs (design change requests) have been approved the Visual Web Developer area for implementation in VS 2005 Beta 2. You may like the fact that 80% are based on the user feedback posted at MSDN Product Feedback Center . I implemented an...
Mikhail Arkhipov (MSFT)'s WebLog
A few things that ASP.NET runtime supports while Visual Studio editor doesn't
Posted
over 9 years ago
by
Mikhail Arkhipov
1
Comments
There are a few features that are supported by ASP.NET runtime, but are not supported by Visual Studio Web forms editor. Therefore you do can create pages that will run just fine, but VS will refuse to provide intellisense or validation. Here is a list...
Mikhail Arkhipov (MSFT)'s WebLog
Using W3C DTDs for XHTML validation in Whidbey
Posted
over 9 years ago
by
Mikhail Arkhipov
0
Comments
There is good article on new XML tools in VS 2005. Our team used to own VS XML editor back in VS 2003, but now we concentrate on HTML ans ASP.NET. Whidbey XML editor is brand new code written in C# on top of VS native text editor by a different team....
Mikhail Arkhipov (MSFT)'s WebLog
ASP.NET 2.0 feature cuts
Posted
over 9 years ago
by
Mikhail Arkhipov
0
Comments
Shanku, our GPM, posted official ASP.NET 2.0 runtime feature cuts . You may expect corresponding feature cuts from tools. For example, ASIX file support will be removed as well as Device Customization toolbar and related features. Same information is...
Mikhail Arkhipov (MSFT)'s WebLog
Compiler nanny, take 2.
Posted
over 9 years ago
by
Mikhail Arkhipov
2
Comments
I found a better way than to use a function which I described earlier . The drawback of the function was that in some cases it requred the function to exist even in retail bits. So, now I do static volatile bool s_fFalse = false; #define ASSERT...
Page 1 of 1 (13 items)