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
R

renjithmp

@renjithmp
About
Posts
3
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem with mage tag
    R renjithmp

    Add this code in your aspx page. <INPUT type="hidden" id="MyHiddenField" runat="server" value="http://tbn2.google.com/xy/ab.JPG"> <img runat="server" id="hiddenImg" alt="" /> and in code behind add this code HtmlInputHidden hidden = (HtmlInputHidden)Page.FindControl ("MyHiddenField"); Img.Src = hidden.Value; Hope this help.

    ASP.NET help

  • Unchecking and disabling checkboxes in asp.net
    R renjithmp

    Add the check boxes (except private check box ) to a checkbox group. and use this code foreach (CheckBox ch in CheckBoxList1.Items) { if(private.checked) { ch.Checked = false; ch.Enabled = false; } else { ch.Checked = true; ch.Enabled = true; } } If you want to do similar kind of operation to a group of items then this is the standard way of doing that. Hope this help

    ASP.NET csharp asp-net help tutorial question

  • How to set favicon for a mobile page .
    R renjithmp

    Hi , I have created simple web application in .net 2.0 C# . I have added this code to add a favicon. This is working fine, if I inherit my page from "System.Web.UI.Page". but it is not working if I inherit from "System.Web.UI.MobileControls.MobilePage" .Please tell me the reason and resolution for this?

    ASP.NET csharp design tutorial question
  • Login

  • Don't have an account? Register

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