Search

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

Matching Posts

  • Re: URL rewritting

    Thanks a lot. I implement it like the example but throws some compilation error Line 67: <httpModules> Line 68: <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> Line 69: <add name="FixURLs" type="FixURLs"/> Line 70: </httpModules> Line 71: </system.web>
    Posted to Web Forms (Forum) by biswal.srikant on 10/31/2008
  • URL rewritting

    can any one tell me how to rewrite the Url ? Ex: real url :www.example.aspx?InVoiceId=24&strPage=InvoiceSheet virtual url :www.example.aspx?InVoiceId=$1&strPage=$2 real url :www.support.aspx virtual url :www.example.com/support
    Posted to Web Forms (Forum) by biswal.srikant on 10/31/2008
  • Re: How to get Multiple table Through Store Procedure

    you have to fill dataset with different tables. hope this will help u public static void FillDataset(string connectionString, string spName, DataSet dataSet, string[] tableNames, params object[] parameterValues) string strSqlPeriod = "select PK_CONT_INV_ID, FK_PERSONNEL_ID, START_DATE, END_DATE, STATUS, MODIFIED_BY from M_CONT_INVOICE_PERIOD where FK_PERSONNEL_ID = "+NewUser.PersonnelId; DataSet dsPeriod = SqlHelper.ExecuteDataset(new DbConnections.Connection().GetCon, CommandType.Text
  • CalendarExtender popup should show

    Hi, I am using CalendarExtender in my site. CalenderExtender popup shows the current month. But my requirement is to CalenderPopup should display any month according to user's requirement i.e. in a infragistic grid there is a startday column . so the month display in the popup is according to start date of that column Thanx Srikant
  • Re: login with different privileges

    Login table- userId, user name, password role table - role_id, rlole _description,fk_userId At the time of login check users role type and retrive it. keep it in session, According to the role type give permission, display or hide controls
    Posted to Getting Started (Forum) by biswal.srikant on 10/1/2008
  • Re: ToString() and Convert.ToString()

    refer to http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=888996&SiteID=1
    Posted to Getting Started (Forum) by biswal.srikant on 9/9/2008
  • Re: refresh drop down list

    when the users uploaded the folder it added to the database but u have to rebind the dropdown after upload. --or u may add the new folder name from javascript after upload using ajax, the new folder name added to last place in dropdown. var ddobj = document.getElementById( "<%= ddUser.ClientID %>" ); var opt = document.createElement( "option" ); opt.text = newUserName; opt.value = result; //alert("ddLength = "+ddLength); document.getElementById( "<%= ddUser
    Posted to Web Forms (Forum) by biswal.srikant on 9/9/2008
  • Re: Is it possible to place a drop down in the gridview and direct the sorting from the drop down menu

    instead of defult sorting make it custom sortiing and take the value from the dropdown and rebind the gridview according to the new value. previous query + order by (new value of dropdown list)PK_BUG_ID desc and rebind the gridview
  • update panel with popup control extender

    Hi All, I am using a popup control extender inside a update panel and a save button for save data,and a datagrid to display those data. < asp : Button ID = "submitCompensation" runat = "server" Text = "Add" CssClass = "deepBlueBtn" OnClientClick = "return VerifyCompensation();" OnClick = "submitCompensation_ServerClick" /> and in cs page insert data into DB then Bind the grid by calluing a method DataGridBind(); my problem is that
    Posted to ASP.NET AJAX UI (Forum) by biswal.srikant on 8/28/2008
    Filed under: upadatepanel + popup control extender
  • to show the PopupControlExtender after add a new data to it

    Hello All, I am using a popup control extender. Inside this there are two asp text boxes, asp button, and a data grid. When i add data, the total page is loaded and the popup extender is not displayed. I want to display the extender after adding data. html part < asp : UpdatePanel ID = "uPanel" runat = "server"> < ContentTemplate > < div align = "center"> < table align = "center"> < tr id = "trSave" runat = "server"
    Posted to ASP.NET AJAX UI (Forum) by biswal.srikant on 8/26/2008
    Filed under: show popup control Extender
Page 1 of 2 (13 items) 1 2 Next >