Search

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

Matching Posts

  • Custom authorization in WCF using X509 certificate fails

    Hi all, I am facing an issue with Custom authorization in WCF using X509 certificate. Certificate has been made using makecert tool provided by microsoft. The exact error is - The X.509 certificate CN=jhoward-5160 chain building failed. The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateValidationMode. The revocation function was unable to check revocation for the certificate.
    Posted to Security (Forum) by sanchita_ind on 4/17/2009
    Filed under: X509 certificate
  • Re: Dynamic GridView SelectCommand problem

    [quote user="Samu Zhang - MSFT"] Hi sanchita_ind , I think when you first enter the page , the RowDataBound event do execute and LinkButton's click event is bound to it's event handler. But when you click the linkbutton , can you ensure the LinkButton's click event is bound to it's event handler again ? I think the solution is to write some code in prerender event of GridView to loop through the Gridview' row collection and bind the linkbutton's click event to event
  • Re: Button click does not fire inside a user control which is added dynamically to a ModalPopupExtender target

    i face the same problem too. i have a button inside my panel, added dynamically to the page. my button's click event doesn't get fired!!
  • Dynamic GridView SelectCommand problem

    Hi I have a GridView that I add dynamically. CommandField btnField = new CommandField(); btnField.SelectText = "Edit"; btnField.ShowSelectButton = true; gvUserList.RowDataBound += new GridViewRowEventHandler(gvUserList_RowDataBound); gvUserList.Columns.Add(btnField); And its Row Data Bound as follows - void gvUserList_RowDataBound(object sender, GridViewRowEventArgs e) { GridView thisGridView = (GridView)sender; if (e.Row.RowType == DataControlRowType.DataRow) { LinkButton li = (LinkButton
    Posted to Data Presentation Controls (Forum) by sanchita_ind on 7/31/2008
  • Re: Application to Application

    What kind of information are you sending to the other application? If you are just trying to avail some service can't you do through web services, the other app can expose some functionality and your app will just invoke the resp method and send the data etc. Please let me know if I was unable to get your query.
    Posted to State Management (Forum) by sanchita_ind on 7/3/2008
  • Re: Passwords and Sessions

    [quote user="3rror404"] @ SanjaySutar , did you mean to put the code into the btnNext_OnClick ? I tried that but got the following: Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30311: Value of type 'System.Web.SessionState.HttpSessionState' cannot be converted to 'Boolean'. Source
    Posted to State Management (Forum) by sanchita_ind on 7/3/2008
  • Re: can we do with sessions ?

    [quote user="anas"] You can use the cache , Please Refer to this article http://www.eggheadcafe.com/articles/20030416.asp and http://www.eggheadcafe.com/articles/20030418.asp [/quote] Thanks for the informative links. But isn't there a way we could handle these locks in SQL? If the user leaves the site by crossing out the browser we can handle that by having information like - "Last Login DateTime", "Last Page Visited At DateTime" and the "Lock". So in
    Posted to State Management (Forum) by sanchita_ind on 7/3/2008
  • Re: Forms timeout question

    A post on persistent cookies in case you want to take a look - http://forums.asp.net/t/1090836.aspx
    Posted to State Management (Forum) by sanchita_ind on 7/3/2008
  • Re: Forms timeout question

    boolean RememberMe - will just tell asp.net to persist the cookie for this user but the timeout of this cookie will be taken from "forms timeout" in the web.config Coming to your second question session variables timeout is specified in your IIS and will be picked up if your session state mode is InProc. Letting "SqlServer" and "StateServer" manage your web application sessions are best when you have large web application with several users and so on. Just adding a note
    Posted to State Management (Forum) by sanchita_ind on 7/3/2008
  • Re: How to display data from multiple tables in a single form

    [quote user="dotty"] however i think am doing something wrong while binding it to dropdownlist as the dropdown is empty :( ...pls temme what are the values i should set the dropdown to [/quote] Are you binding to the dropdown in your code? DropDownList1.DataBind()
    Posted to Web Forms (Forum) by sanchita_ind on 7/3/2008
Page 1 of 7 (62 items) 1 2 3 4 5 Next > ... Last »