Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

TylerBrinks

@TylerBrinks
About
Posts
105
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Linq + SQLMetal = Cool...
    T TylerBrinks

    You have TOTAL control of the generated code. You can use T4 templates to make the output code look however you want. It's built into VS2008... plenty of good info on it if you google it.

    The Lounge csharp database visual-studio sql-server linq

  • about asp
    T TylerBrinks

    umeshdaiya wrote:

    hi i am asp.net devloper and i never use asp

    Not sure what you mean... are you or are you not a developer? What do you mean you never use asp?

    ASP.NET csharp php asp-net workspace

  • I cant seem to generate an async postback.
    T TylerBrinks

    You should set up a update target in the update panel that points to your button control. That'll force the update panel to respond via callback to the button's click event.

    ASP.NET help tutorial csharp asp-net database

  • Treeview basic question
    T TylerBrinks

    something like this

    bool ContainsNode(string nodeText, Node treeNode){
    if(treeNode.Text.Equals(nodeText){
    return true;
    }

    bool contained = false;
    foreach(Node node in treeNode.Children){
    contained |= ContainsNode(nodeText, node);
    }

    return contained;
    }

    C# question

  • Treeview basic question
    T TylerBrinks

    Do you have a key or some kind of identifier that you're checking? Are you just checking the node text? Generally speaking, you can use recursion to check each tree node with a boolean value for whether the node exists.

    C# question

  • My dynamic table will not display...
    T TylerBrinks

    What happens if you enable viewstate? let's start there.

    C# csharp c++ question

  • Event for a class
    T TylerBrinks

    Text_Changed(Me, EventArgs.Empty)

    ASP.NET

  • connection string
    T TylerBrinks

    There are all kinds of examples on blog posts etc... http://solidcoding.blogspot.com/2008/01/linq-to-excel-provider-20.html[^]

    ASP.NET csharp asp-net tutorial

  • service
    T TylerBrinks

    It makes a huge difference. A windows service is totally different than a WCF service. Neither are like a COM service. You're not going to get a clear answer unless you explain what kind of service you're talking about.

    C# tutorial question

  • connection string
    T TylerBrinks

    you can also use linq. read the file in from the disk or memory stream and you can query it.

    ASP.NET csharp asp-net tutorial

  • service
    T TylerBrinks

    what kind of service?

    C# tutorial question

  • Quick 4Gb RAM Question...
    T TylerBrinks

    Windows (xp or vista) won't be able to use all 4 GB unless you use 64 bit. You can google it... I've personally tested it with exactly 4 GB - same system with x32 and x64. As long as you have drivers, you'll never turn back once you start using x64!!

    The Lounge question com

  • [newbie] Controls have to be aligned
    T TylerBrinks

    You can use the literals to write non-alpha characters. For example, "& a m p;" (without spaces) renders "&" on a page. That'll pass xhtml validation.

    ASP.NET csharp html visual-studio help question

  • What's your suggestion ?
    T TylerBrinks

    DB4O

    C# database xml tutorial question

  • Dynamically generated URL could not be opened in FireFox
    T TylerBrinks

    I was addressing this comment in particular: But I don't want to set those prefixes (protocol, host, virtual dir.) myself. I'm just suggesting that you should set them yourself to get around the issue.

    Web Development question help tutorial

  • Trying to redirect the parent page from popup
    T TylerBrinks

    Put a client side javascript function call in the onchange event of your field in the parent window. That should fire when your popup changes the field. You can force the postback in that function.

    ASP.NET javascript tools question

  • Trying to redirect the parent page from popup
    T TylerBrinks

    You can call the function __doPostback event in the parent window. Take a look at the parent's source and see what script the hidden field is invoking (in case it's not the default __doPostback). Add that code to your popup window script.

    ASP.NET javascript tools question

  • List(of Table name ) How to avoid , appending the duplicate records in this variable
    T TylerBrinks

    http://www.google.com/search?source=ig&hl=en&rlz=1W1GGLL_en&q=vb.net+predicate&aq=0&oq=vb.net+predi[^]

    LINQ csharp algorithms tutorial question

  • Dynamically generated URL could not be opened in FireFox
    T TylerBrinks

    What's wrong with prepending the http prefix?

    Web Development question help tutorial

  • LINQ orderby issue
    T TylerBrinks

    You can use the "let" keyword in linq to set a variable to a DateTime value and then do your ordering on that variable.

    var query ....
    where ...
    let D =
    ...
    orderby D
    ...

    LINQ help csharp database linq tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups