Search

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

Matching Posts

  • Intranet Application with Integrated Windows Authentication and UNC shares

    We are developing a web site for our company in which all the users will be authenticated via Windows i.e. if they are logged into the domain, then they dont have to enter the username/password in order to enter the application. We want to display all the shares on the server (web server/File server which we need to decide) to the user who has permissions to it. Lets suppose UserA has Read Permission to Share1, Read/Write permissions to Share2, When User1 logs into the app, then the Share1 files
    Posted to Security (Forum) by vikaskolluri on 8/15/2009
    Filed under: AD UNC Permissions
  • Web application projects

    Hi all, I am working with Web application projects for the first time. The web application project has a Website with aspx and ascx files and I beleive it compiles into a single dll in the BIN folder. In the same solution, I have one class library file which compiles and generates a dll file. The page directive in my aspx pages are: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WAP1.Default" %> The aspx pages use
  • Re: dropdownlist in datagrid header losing its state after dropdownlist change event fires

    the dropdown list selectedindex changed event is some thing like this: DropDownList ddl = (DropDownList)sender; string condition = "[" + ddl.ID + "] = '" + ddl.SelectedValue; //ID is set to the column name of the datatable when it is binded for the first time. DataTable dt= ds.Tables[0].Select(condition); gridtest.DataSource = dt; gridtest.DataBind(); If the grid is binded twice, then the data will not load with the filter value I select in the drop down list. But the grid
    Posted to Data Presentation Controls (Forum) by vikaskolluri on 11/7/2008
  • dropdownlist in datagrid header losing its state after dropdownlist change event fires

    I have a datagrid on a pge in which I have placed dropdownlist control inside the header and populated with the distinct row values for that column so that user can sort the data based on that value. The problem is sorting works fine.. But when the grid is loaded back with the sorted data, the dropdown selected value is lost and its set to the first value. I have tried to put the dropdownlist id and selected value. I have tried to put the ID of the dropdownlist control and its selected value in session
    Posted to Data Presentation Controls (Forum) by vikaskolluri on 11/7/2008
  • Re: loop through all the rows in a datagrid and get the selected checkbox values

    Thanks a lot for your reply... Actually, that was my coding mistake.... I was loading the grid at postback also. And thats the reason, checkbox state was lost. I solved it by including the following code: if(!page.ispostback) bindgrid(); But I have one more query. I have a radio button inside a grid and I have to make sure multiple radio buttons are not selected (with out doing a postback) using javascript. Can you help me with this. Thanks for your time.
  • Re: hidden asp panel as collapsible panel extender targetcontrolid

    I have made all the label text inside the panels to empty and that did the trick for me. I have the following panels in the header row. [Add Users| Edit Users| Delete Records|View Records| Add New Record| Logout] I wanted to give the add, edit and delete permissions to administrators. So, I made the label text to nothing and it worked for me. For normal users, its displayed as: [View Records| Logout] And for admins, its now displayed as: [Add Users| Edit Users| Delete Records|View Records| Add New
  • loop through all the rows in a datagrid and get the selected checkbox values

    I have a datagrid on the page in which checkboxes are displayed in the first column. I have a delete button, upon clicking it, all the selected checkbox rows should be deleted. But for some reason, I am not getting the check box checked values in my code. In the following code snippet, I am not getting true values for the checkbox even if the check box is changed. string mIDs = "" ; bool chkChecked = false ; foreach ( DataGridItem i in GridView1.Items) { CheckBox deleteChkBxItem = ( CheckBox
  • hidden asp panel as collapsible panel extender targetcontrolid

    Hello, I have number of links on my page of which few are link buttons and few are panels containing label controls (for collapsible panel extenders). I want to hide some of the panels (which are collapsible panel target control ids) so that I can show only those panels to administrations using the site, But I am not able to acheive this in my scenario. Can you pls help me with this. I have tried to set panel width to ZERO from javascript, but that didnt work. Any ideas??? Thanks, VK
  • Re: Problem adding existing Webservice to a Web Application Project

    sorry about my poor terminology. I have added the web service application to the project, added web reference.After doing this, a new folder is created "App_WebReferences" under that a localhost folder is created and 3 files are there. AutoComplete.disco AutoComplete.discomap AutoComplete.wsdl I can access the web service in a browser, the web service returns the data which is expected. I am using it with a autocompleteextender. Which path do I need to mention in the ScriptManager tag:
  • Re: Problem adding existing Webservice to a Web Application Project

    missed your question in the previous post: I have tried to access the web service in browser and I still get the same error. As I said, I have created one Web service application from File> New > Project> ASP.NET Web Services Application , I have successfully created and can run and get the data using the web service. I have added that to my solution. Can u pls advise on how to consume that web service in my Web Application Project.. Thanks for all your help..
Page 1 of 7 (66 items) 1 2 3 4 5 Next > ... Last »