Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:721795
More Search Options
RSS Available
Matching Posts
Get all Users from ADAM instance in asp.net
Hello users, I am stuggling with ADAM authentication / get all users from ADAM. I am using LDAP to authenticate/get all users from ADAM. ADAMadsiedit window configuration details are following: Server: localhost:50002 and cn=sandbox,dc=ITOrg I have created super user and its details are following, Password is : super12@ Name Class DistinguishedName SuperUser user CN=SuperUser,CN=People,CN=sandbox,DC=ITOrg My code: string strPath = "LDAP://localhost:50002/cn=sandbox,dc=ITOrg"; DirectoryEntry
Posted to
Active Directory and LDAP
(Forum)
by
hareshmca
on 7/28/2009
Filed under: ADAM authentication, LDAP authentication in ADAM
Re: Alignment of label inside a gridview
try this <asp:TemplateField HeaderText="Status" ItemStyle-HorizontalAlign="Center"> <ItemTemplate> <%# DataBinder.Eval(Container.DataItem,"Status") %> </ItemTemplate> </asp:TemplateField>
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 7/9/2008
Re: add "onclick" attribute to gridview data row.
design your hyperlink as i said in grid it will work as you want
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 7/9/2008
Re: add "onclick" attribute to gridview data row.
make one ImagePopUp.aspx form for display Image as popup <asp:GridView ID="gv" runat="server" OnRowDataBound="gv_RowDataBound"> <Columns> <asp:BoundField DataField="bookid" HeaderText="ID" /> <asp:TemplateField HeaderText="Title"> <ItemTemplate> <asp:LinkButton ID="lbtnTitle" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"Title") %>'></asp:LinkButton>
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 7/9/2008
Re: DropDown List: Want to concatenate two fields so it displays "Last Name, First Name" in the ddl text to the user. Sproc for datasource
//ddlEmployee is your dropdownlist ID DataTable TblData = new DataTable(); DataTable TblData1 = new DataTable(); //Fill TblData by getting all data from db using your storedproc TblData1.Columns.Add("EmployeeID"); TblData1.Columns.Add("Name"); for(int i=0;i<TblData.Rows.Count;i++) { DataRow DR = TblData1.NewRow(); DR["EmployeeID"]=TblData.Rows[i]["EmployeeID"].ToString(); DR["Name"]=TblData.Rows[i]["FirstNm"].ToString() +" "
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 7/9/2008
Re: FormView field is a date need to have Calendar assisted
Protected void Calendar1 _SelectionChanged(object sender, EventArgs e) { ((TextBox)YourFormViewID.FindControl(" Your TextBox ID in Form Veiw ")).Text= Calendar1 .SelectedDate.ToShortDateString(); }
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 7/9/2008
Re: RegularExpressions Validation IsNumeric
Use this <asp:RegularExpressionValidator runat=server ControlToValidate="YourTextBoxID" ErrorMessage="Enter numbers only." ValidationExpression="^[0-9]$" />
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 7/9/2008
Re: Looking for some help using a programatically created datagrid.
YourFormName.Controls.Add( resultsDG );
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 7/9/2008
Re: Report Tool for Delphi .NET 2007
Download CodeGear studio there is one RAVE Report tool for Delphi This will help you out definately
Posted to
Other
(Forum)
by
hareshmca
on 6/20/2008
Re: Paging
If you are using Gridview then its very easy to use paging suppose grid name is dg and set property AllowPaging=True and also set PageSize=20 or 40 Now you have to write some code in following events of your grid protected void dg_PageIndexChanged(object source, DataGridPageChangedEventArgs e) { dg.CurrentPageIndex = e.NewPageIndex; FillMealGrid(); } it will definately work, and is any other thing then ping me
Posted to
Data Presentation Controls
(Forum)
by
hareshmca
on 4/9/2008
Page 1 of 7 (67 items) 1
2
3
4
5
Next >
...
Last »
WindowsClient:
Windows Client Developer Roundup for 12/28/2009
WindowsClient:
Snoop with 64 bit support
ASP.NET:
jQuery Hide/Close Link
ASP.NET:
Merry Christmas
TechNet Edge:
FPE Customer Story
Silverlight:
Being a writer, and having an editor. A Short Rant.
Channel 9:
Channel 9 Live at PDC09: Dr Brian Brooks (3M)
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 13 of 13
Silverlight:
Information for Silverlight HVP Developers…
WindowsClient:
Custom Content Loaders in Silverlight 4.0
WindowsClient:
MVVM Links\Info
TechNet Edge:
Check out how Dolly Parton uses IE8 and Web slices!!!
Silverlight:
A Silverlight HVP Update
Channel 9:
Channel 9 Live at PDC09: This Week on Channel 9 - PDC09 Daily Show Edition Day 1
Channel 9:
Maria Klawe: Scholar, Scientist and Microsoft Board Member
Channel 10:
Play the Bing Sherlock Holmes Game
Channel 9:
Channel 9 Live at PDC09: Loic Le Meur
Channel 10:
How to Delete Jump List Items
Channel 10:
Roll Back to Classic Network Indicator in Win7
Channel 9:
Jafar Husain: Silverlight Toolkit and Rx, Part 2
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online