All Tags » C# (RSS)

Browse Forum Posts by Tags

Showing related tags and posts for the Forums application. See all tags in the site
  • ASP.Net Context.Cache

    Here's some code to set a cache variable in the global.asax. http://www.developer.com/net/net/article.php/1477771 static Cache _cache = null; protected void Application_Start(object sender, EventArgs e) { _cache = Context.Cache; _cache.Insert("UserCount", BusinessObjects.ActiveUserCounter...
    Posted to ASP.NET (Forum) by Pat on 09-26-2008
  • represent double quote \" in string using C#

    use \ before a double quote to literally represent it in a string
    Posted to ASP.NET (Forum) by Pat on 05-24-2008
  • Nested Repeaters to look like gridview with total columns

    code behind protected void Bind() { rptTotCommentTypes.DataSource = ResultsWrapper.CommentTypes; rptTotCommentTypes.DataBind(); rptTotEmployees.DataSource = ResultsWrapper.Employees; rptTotEmployees.DataBind(); } protected void rptTotEmployees_ItemDataBound(object sender, RepeaterItemEventArgs e) { if...
    Posted to ASP.NET (Forum) by Pat on 04-28-2008
  • Show and Hide panel with nested gridview inside C# Repeater item

    Code Behind protected void bindRepeater() { rptDays.DataSource = ResultsWrapper.Dates; rptDays.DataBind(); } protected void rptDays_ItemDataBound(object sender, RepeaterItemEventArgs e) { DateTime date = Convert.ToDateTime(e.Item.DataItem); LinkButton btnDateHeader = e.Item.FindControl("btnDateHeader"...
    Posted to ASP.NET (Forum) by Pat on 04-28-2008
Page 1 of 1 (4 items)
Forums to discuss Microsoft ASP.Net Development and SQL
Powered by Community Server (Non-Commercial Edition), by Telligent Systems