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
C

charmis

@charmis
About
Posts
2
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Runtime hyperlink of datagrid
    C charmis

    Hi tayyab_mit, One method is you can write code in datagrid itemdatabound event handler. There you can create a hyperlink control and can set its text and link. Finally add the hyperlink control to the datagrid column. (this is c# code, make changes accordingly) if( e.Item.ItemType == ListItemType.Item e.Item.ItemType == ListItemType.AlternatingItem ) { HyperLink hlc = new HyperLink(); hlc.NavigateUrl = "http://www.codeproject.com"; hlc.Text = "codeproject"; //finally we add the created control to datagrid cell control collection e.Item.Cells[0].Controls.Add(hlc); } charmis

    .NET (Core and Framework) csharp visual-studio question

  • .net certifications
    C charmis

    Hi neoms21 When you pass one exam you will get MCP credential. Next is MCAD(Microsoft Certified Application Developer) which requires 3 exams. Then MCSD(Microsoft Certified Solution Developer) which requires 5 exams. ie MCAD + 2 more exams. A good site is Microsoft's own site http://www.microsoft.com/learning/mcp/default.asp[^] Charmis

    Work Issues csharp asp-net workspace
  • Login

  • Don't have an account? Register

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