This link is a more comprehensive link showing the wildcards available
If you know of any tips, tricks, sample code that you feel will help other ASP.NET developers please email them to me at chrisw_88@hotmail.com and I will post them.
This link is a more comprehensive link showing the wildcards available
If you know of any tips, tricks, sample code that you feel will help other ASP.NET developers please email them to me at chrisw_88@hotmail.com and I will post them.
.NET 1.1
If you have any additional links you would like me to add, please email them to me at
chrisw_88@hotmail.com
Hide Select Menus JavaScript: http://www.shawnolson.net/a/1198/
If you have any tips you would like to share please email them to me at chrisw_88@hotmail.com
Below is a list of links related to Flash Remoting:
If you have any more flash remoting links or other tips, tricks, code samples, etc that will help other ASP.NET developers please email them to me at chrisw_88@hotmail.com
Check out the full posting at http://www.cubido.net/Blog/tabid/176/EntryID/49/Default.aspxIn my case I had a prior
compiled version (a dll) of the web app itself in the bin directory, which is
not allowed any more. -> delete all compiled versions of all web applications
(the app itself and referenced web apps) from the bin directory !!If you have to
have the same
classname multiple times within your application (e.g a class
"DataAccess"
within each module subfolder in the app_code directory, you
could do the
following:1) Give each class a different namespace (e.g.
MODULENAME.DataAccess)2) Mark the classes as partial classes (!! this does not
work if the partial classes are spread accross different subfolders of the
app_code dir which are marked as codeSubDirectory in the web.config. The reason
is, that in this case, each subfolder results in a different assembly and
partial classes over multiple assemblies are not allowed. Also see my blog
entry
for creating multiple assemblies from the app_code directory
!!)
If you have any more custom web control links to share please email them to me at
chrisw_88@hotmail.com
ASPX:
@ Page MasterPageFile="~/MasterPage.master" Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div>
<asp:DropDownList ID="MasterSwitch" runat="server" AutoPostBack="true">
<asp:ListItem Text="Simple Layout" Value="MasterPage.master">asp:ListItem>
<asp:ListItem Text="Complex Style" Value="MasterPageComplex.master">asp:ListItem>
<asp<:DropDownList>
<div<>>
<asp<>:Content>
Codebeside:
http://blogs.imason.com/chris.chapman/archive/2005/10/05/1833.aspx
http://www.gridviewgirl.com/GridViewGirl/articles.aspx