Search

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

Matching Posts

  • How to Bypass Forms Authentication

    Hi, I've created a web site that uses Forms Authentication; I perform my authetication in the 'OnAuthenticate' event handler if a user wants to manually log into the site. My problem is how to perform the authentication if the credentials are passed from another application. I am able to extract my credentials through the Request.QueryStrings collection is there a way to trigger the OnAuthenticate to perform the actual authentication? Please no guesses or remotely-related responses. Thanks
    Posted to Security (Forum) by aaminian on 7/29/2009
    Filed under: Forms authentication
  • Re: How to Retrieve the Hidden Cell value in GridView -- Urgent ************

    Great post, nitewalker! You saved my life, man. Thanks.
    Posted to Data Presentation Controls (Forum) by aaminian on 7/24/2009
  • Re: ScriptManager.RegisterStartupScript not executing script correctly

    Hi dsarauer, I was wondering why you're passing the updatepanel control; try passing the Page object instead. Also, it may not make a difference but try passing the whole script block inline: In C#: StringBuilder sb = new StringBuilder(); sb.Append("{"); sb.Append("myWin.Open();"); sb.Append("}"); ScriptManager.RegisterStartupScript(this, this.GetType(), "myScript", "OpenWindow()", true);
    Posted to Web Forms (Forum) by aaminian on 7/17/2009
    Filed under: javascript, ScriptManager.RegisterStartupScript, ASP.NET AJAX Control Toolkit
  • Re: MediaPlayer in Silverlight?!

    Alright, I finally figured this out by using a not-so-obvious method! I registered a javascript function block with the ScriptManager through the RegisterStartupScript method in my timer's Tick event handler. Essentially, what this does is call the javascript block to perform any other task such as user notifications (that new data has arrived, etc.). Here are the specifics: 1 . The javascript code block registration ( plays a background sound ): // Supporting only IE4 and above StringBuilder
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by aaminian on 7/17/2009
    Filed under: javascript, ScriptManager.RegisterStartupScript, Ajax Control Tookitoolkit
  • Re: Ajax enabled WCF Service stops working with Undefined error

    Hi Patel, Sorry for the late response. I usually get an email when someone updates a post but I didn't in this case! Anyhow, here is what I meant: 1. Right click on your ASP.NET application and select "Property Pages" at the bottom of the displayed context menu. 2. On the Property Pages form, select the "Startup Options" on the tree pane. 3. Select the "Start URL" radio button on the right (form) pane and put your url in the now-enabled text box; e.g., http://localhost
  • MediaPlayer in Silverlight?!

    I am not sure if this is the right place to leave this post so any help is greatly appreciated. Problem: I have an ASP.NET AJAX-Enabled Web Form that get's refreshed periodically (using a Timer) by a datafeed from a WCF service. Specifically, I make a call to my WCF method inside the Timer's Tick event and I update a GridView control residing on my form. All of that works smoothly without any problems. What I am trying to do now is play a sound file for a few seconds after a the grid gets
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by aaminian on 7/16/2009
    Filed under: AjaxControlToolkit Ajax MediaPlayer sound files
  • Re: MediaPlayer in Silverlight?!

    I've already tried the first one (last week); no dice! That works only once, when the page is loaded for the first time. I'll try the 2nd one and let you know... Thanks, Alex
  • Re: Ajax enabled WCF Service stops working with Undefined error

    Alright, I've found a workaround: 1. Create a virtual directory in IIS pointing to the (Ajax-Enabled WCF Service) ASP.NET directory of choice (also, make sure .svc extension is mapped to aspnet_isapi.dll). 2. Change the startup page for your web app by setting the Start URL (Property Pages | Start Options) to the one hosted by IIS. So, for instance, if your the page that makes the AJAX WCF call is Default.aspx your Start URL will be http://localhost/AjaxWebSite/Default.aspx. That way, once you
  • Re: Ajax enabled WCF Service stops working with Undefined error

    I am having the same problem. I have an Ajax-enabled WCF service and I get the "...'SomeService' undefined error message..." when I make a WCF service call from the JavaScript. At times the problem magically goes away but not because of any changes I've made! I have followed the development/configuration process per the MSDN article posted at http://msdn.microsoft.com/en-us/library/bb924552.aspx and yes the svc extension is associated with aspnet_isapi.dll, and the ScriptManager
    Posted to ASP.NET AJAX Networking and Web Services (Forum) by aaminian on 6/25/2009
    Filed under: ajax wcf service undefined error!
Page 1 of 1 (9 items)