realnero

Stories submitted by realnero

VS 2005 Error 1: "Could not load type..."(realnero.blogspot.com)

submitted by realnerorealnero(95) 3 years, 9 months ago

You can receive this error "Could not load type" error message in your ASP.NET Application, when you browse to .aspx page by using Visual C# .NET or running from local IIS. SYMPTOMS When you browse to an .aspx page, you may receive one of the following error messages: Could not load type 'Namespace.Global'. -or- Could not load type 'Namespace.PageName'. read more...

add a comment |category: |Views: 10

tags: another

ASP.NET data binding essentials(realnero.blogspot.com)

submitted by realnerorealnero(95) 3 years, 9 months ago

ASP.NET introduces a new declarative syntax, <%# %>. This syntax is the basis for using data binding in an .aspx page. All data binding expressions must be contained within these characters. The following list includes examples of simple data binding from multiple sources... read more...

add a comment |category: |Views: 19

tags: another

More information about ASP.NET Page life-cycle and common events(realnero.blogspot.com)

submitted by realnerorealnero(95) 3 years, 9 months ago

I’ve found wonderful document about ASP.NET Page lifecycle events on http://john-sheehan.com/blog. Little information about general page Life-cycle stages and events... read more...

add a comment |category: |Views: 13

tags: another

What's the difference between Bind and Eval(realnero.blogspot.com)

submitted by realnerorealnero(95) 3 years, 9 months ago

Data-binding expressions are contained within delimiters and use the Eval and Bind functions. The Eval function is used to define one-way (read-only) binding. The Bind function is used for two-way (updatable) binding. In addition to calling Eval and Bind methods to perform data binding in a data-binding expression, you can call any publicly scoped code within the delimiters to execute that code and return a value during page processing. read more...

add a comment |category: |Views: 34

tags: another

How to check for hidden/system files and folders.(realnero.blogspot.com)

submitted by realnerorealnero(95) 3 years, 9 months ago

Maybe not everybody knows how to check whether file or folder is hidden/system. This code returns array of FileInfo and DirectoryInfo objects. read more...

add a comment |category: |Views: 4

tags: another

Outlook Programming: how to find the parent message for a reply or...(realnero.blogspot.com)

submitted by realnerorealnero(95) 3 years, 9 months ago

I'm currently involved in developing Outlook add-in. During that I've faced the problem how to find the parent message for a reply or forward message. The idea is that all messages in a conversation have the same ConversationTopic value, while the ConversationIndex is increased by 5 bytes with each change. read more...

add a comment |category: |Views: 10

tags: another