Search

You searched for the word(s): userid:5144

Matching Posts

  • Re: Another menu is not displaying in IE6 using css control adapters

    It's been a long time, but I'm having this problem with IE6 displaying vertically, I need this menu with proportional widths as you mentioned. any way how can I make it work with IE6 it's working for me with IE7,FF 1 . myMenu ul 2 { 3 background: # fff ; 4 5 } 6 7 /* Top tier */ 8 . myMenu . AspNet - Menu - Vertical ul . AspNet - Menu 9 { 10 width: 9 em ; 11 } 12 13 /* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */ 14 /* In other words, this
    Posted to CSS Friendly Control Adapters (Forum) by red on 3/15/2009
  • Re: file path couldn't acces from webserver

    Try to declare the connection in web.config try using this syntax: <connectionStrings> <add name="DbConn" connectionString="~/App_Data/my.mdb" providerName="System.Data.OleDb"/> </connectionStrings> code: ConfigurationManager.ConnectionStrings["DbConn"].ConnectionString HTH, Red
    Posted to Security (Forum) by red on 7/1/2008
  • ModalPopupExtender - update a label

    Hi all, I'm Trying to display the new added row id just added to DB using the ModalPopupExtender. I'm passing the value for the new id to a label inside a panel for the Popup, but I get the viewstate (old value) from the the label control. I can understand the reason for this, label will be updated when the page is loaded. I was trying to do it from generating javascript on the client and from code behind, but did not make it. is there a way to do this? Cheers. < cc1:ModalPopupExtender
    Posted to ASP.NET AJAX Control Toolkit (Forum) by red on 6/30/2008
  • Re: Linq ISingleResult

    I couldn't find anything about it on MSDN, but finally realised what to do: C# Example: NewsClassesDataContext newsClass = new NewsClassesDataContext (); var supplierResult = newsClass.NEWS_GetSupplierArticle(ArticleID).Single< sp_NEWS_GetSupplierArticleResult >(); ...set your controls.. HTH
  • Re: FormView Databound

    I guess it's a bit late for you, any way try: if (FormView1.Row != null ){....}
    Posted to Data Presentation Controls (Forum) by red on 12/25/2006
  • Re: Redirect causing login problems

    I have a similar problem, when login after authenticate the response.redirect didn't work on the host server finally I used one of those: Try to use " Server.Transfer", http://haacked.com/archive/2004/10/06/1308.aspx or this: RegisterClientScriptBlock("redirect", "<meta http-equiv='refresh' content='0; URL="+returnUrl+"'>"); Good luck.
    Posted to Community Starter Kit (Forum) by red on 7/6/2005
  • Re: XML on the fly...

    The XML is well formed since IE can parse it (tree view). I added your suggestion regarding Clear() and Content, but still I get the same error again. Here's part of my code: aspx.cs: (this is called on page_load) <code> DataSet ds = myCmd.GetAds(); DataTable dt = ds.Tables[0]; sb = new StringBuilder(); sb.Append("<Advertisements>"); foreach (DataRow row in dt.Rows) { sb.Append("<Ad>"); sb.Append("<ImageUrl>"); sb.Append(row["ImageUrl"].ToString()); sb.Append("</ImageUrl>
    Posted to XML and XmlDataSource Control (Forum) by red on 3/28/2005
  • XML on the fly...

    Hi I'm trying to output pure XML from aspx page, on IE I can see the XML parsed OK, but when referencing this page from AdRotator I'm getting an error: The '%' character, hexadecimal value 0x25, cannot begin with a name. Line 1, position 2. How can I output the XML on the fly, so AdRotator can read it as XML?
    Posted to XML and XmlDataSource Control (Forum) by red on 3/28/2005
  • Re: How to store XML into SQL with store procedure?

    Try using SQLXML 3.0 Bulk Load.
    Posted to XML and XmlDataSource Control (Forum) by red on 1/5/2005
  • Re: skmMenu & editing the xml file

    Have you found a solution to it?
    Posted to Getting Started (Forum) by red on 1/3/2005
Page 1 of 6 (52 items) 1 2 3 4 5 Next > ... Last »