Search

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

Matching Posts

  • Re: Modelpopup showing behind flash animation, any solution?

    In case anyone else has this same issue, I wanted to post an alternative solution that was better for our situation. Simply set the wmode parameter for Flash to transparent. Examples: TRADITIONAL EMBED: <param name=" wmode " value=" transparent " /> AC_FL_RUNCONTENT: AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','900','height','1000','title'
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Jalias on 7/16/2009
    Filed under: flash object, modaldalpopupextender
  • Re: Check file existence on seperate machine/server

    Nope, unfortunately, it is outside. I am thinking we will just have to have a folder locally for development and test, but I was hoping to just be able to call the images that exist. I want to look for an image with the culture appended and if it doesn't exist, return the base image. Or, find an image where the size is included in the name. If that size doesn't exist for the image, I want to create it. I was just hoping to not have to bring down all of the images we have on the external web
    Posted to Web Forms (Forum) by Jalias on 5/21/2009
  • Check file existence on seperate machine/server

    From the local dev environment, I want to check if an image exists on the external web server (i.e images are only stored at the web server, not locally). If I try to do a Server.MapPath on the file I get an error that it is not a valid virtual path (clearly because it has http://www.ourdomain.com/images/myimage.jpg ). Is it possible for me to check existence of a file on an external server? I find that Server.MapPath and a System.IO.File.Exists(path) only works if your folder is within your current
    Posted to Web Forms (Forum) by Jalias on 5/21/2009
    Filed under: file exists
  • Re: Multiple Authentication Methods / Storing Connection Strings outside web.config

    Thank you for the tip on the SqlProviders, we will look into that... We previously extended the authentication module and ended up just building on top of that by doing a check for which site we are on. The regular site does not use membership, so we end up just swapping the config files for each site once it is published (i.e. the regular site stays as is, the edit site uses the new config with membership).
    Posted to Security (Forum) by Jalias on 6/24/2008
  • Gridview button with ModalPopupExtender UpdatePanel and Placeholder

    I am stuck with this one and am sure the issue is somewhere in the order of rendering and where I have things set. My issue is that my Modal Popup is not allowing the data collected in the user control to be submitted to the database, instead it acts the same as if the cancel button was clicked. Here are the details: I have an aspx page with an Update panel that contains a gridview. The gridview contains a button with an onClick event which is used to manually set the Modal.Show(). < asp : updatepanel
    Posted to ASP.NET AJAX UI (Forum) by Jalias on 6/24/2008
  • Multiple Authentication Methods / Storing Connection Strings outside web.config

    I have 2 questions: 1) We have an existing website with its own rules for authenitcation for our customers. We now want to add membership for use with our employees for the CMS section of the site. Is it possible to have these 2 authentication methods or is there an easy way for us to switch the authentication pieces based on domain (i.e. we have the regular domain and an edit.mysite.com domain)? 2) Using Membership, the connection strings, role information, etc is stored in the web.config out of
    Posted to Security (Forum) by Jalias on 5/28/2008
    Filed under: authentication, membership authentication, membership
  • Custom Repeater Control?

    I have a user control that I want to be able to plug into a variety of web applications. All of the applications have the same UI and code. The UI is a repeater with a hyperlink and a div: <asp:repeater id="MyItems" runat="server"> <itemtemplate> <h2><a id="title" href="\wa\home\details.aspx" runat="server"></a></h2> <div id="summary" runat="server"></div> </itemtemplate> <
    Posted to Data Presentation Controls (Forum) by Jalias on 6/13/2007
  • Find Previous or Next Record in a DataTable

    I have a dataset that contains an Item ID, Item TItle, Item Date, and Item Description. The page using this data has a menu control (i.e. navigation) that passes the ItemID in the querystring so we know which data to display on the page. We only want to display one record at a time, but want to show previous and next buttons to navigate through the dataset. The number of records for the dataset is very small (about 20), so I wanted to just fill the Dataset with the data and use this same information
    Posted to Data Presentation Controls (Forum) by Jalias on 6/5/2007
  • Re: capture redirect url prior to redirect

    Thank you for taking the time to reply. Its a user-friendly path that simply does a response.redirect(siteB) and we have hundreds. I ended up capturing the information on EndRequest and using the Response header information to grab the current url and the url we are redirecting to. 'Record url in database prior to redirect Dim context As HttpContext = HttpContext.Current 'Get current and destination pages Dim curpage As String = context.Request.Url.AbsoluteUri.ToString Dim destpage As String = context
    Posted to Web Forms (Forum) by Jalias on 6/15/2006
  • Re: How to get value from first dropdown list to second dropdown list

    If you want to have the same functionality as with a postback, but don't want the user to see the entire flashback of the page posting back, you can use the callback functionality. See Dino Esposito's article on A Crash Course on ASP.NET Control Development: Building Callback Capabilities in ASP.NET Rich Controls: http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/CCCSctCall.asp Otherwise you can do this using javascript. This article might get you started in the right
    Posted to Web Forms (Forum) by Jalias on 6/14/2006
Page 1 of 2 (11 items) 1 2 Next >