Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tperri
  • Content: Threads
  • Order by date
  1. tperri

    proper way to query active directory by whenCreated

    Hello everyone, I'm trying to get a list of users created within the past 2 days in Active Directory. here is my search filter: search.Filter = "(&(objectClass=user)(objectCategory=person))"; This is what I think I'm aiming for: search.Filter =...
  2. tperri

    Need help with creating an XPath

    Here is my XML file <?xml version="1.0" encoding="utf-8" ?> <Settings> <Hotels> <Hotel ID="1" Name="Hotel1" WingType="V"/> <Hotel ID="2" Name="Hotel2" WingType="P"/> </Hotels> <ColorSchemes> <Scheme ID="1" HotelID="1" Weekday="true"> <Color>#DOA256</Color> </Scheme> <Scheme...
  3. tperri

    Creating Custom Server Controls

    I'm creating custom server controls, one of them is inheriting from a textbox. I want to create a property, say for example, Color, and in the designer, I want the use to be able to choose from a list of colors in a drop down in the property window for this control. How do I do the dropdown...
  4. tperri

    Advanced GridView question/issue

    Please help me if I'm being dense... I'm building a datagrid by hand. The columns will represent Privilege's and the Rows represent FunctionID's. Here is the Gridview HTML <asp:GridView ID="grdSecurity" runat="server" AutoGenerateColumns="false" GridLines="None"...
  5. tperri

    Custom Server Control's click event not firing

    I created a few custom server controls, where I basically added some property fields to an ImageButton, LinkButton, so on and so forth. When I am in debug mode in VS.Net 2008 express web edition, and set break points on the code within the click event, it never gets hit. However, if I place a...
  6. tperri

    need help connecting to Active Directory from my web app

    I've never interacted with Active Directory and ASP.Net before, so I need a little help. I've read the Patterns and Practices artice for use the ActiveDirectoryMembership provider - however, I'm unsure how to find my LDAP:// address and my DC settings (I'm not sure how to refer to these). The...
  7. tperri

    sql server 2005 - on delete cascade

    hi everyone, I have a table that has already been created. Its a user table, and i have other tables with child records that need deleted when i delete a user. I'm reading that the on delete cascade is what I need to use, but I dont know how to implement it. Can anyone help me with this...
  8. tperri

    help dynamically setting the style of a div

    I've posted in the Javascript forum, but my problem involves asp.net and javascript. Here is the post in the JS forum: http://www.tek-tips.com/viewthread.cfm?qid=1397030&page=1 If anyone has any suggestions on how I can implement what I need to do (fix/adjust what I have), it is greatly...
  9. tperri

    help dynamically setting the style of a div

    Here is what I'm trying to do I have a hidden div, and when a link is clicked, that div will unhide (this is working). The data on the page is dynamic, so I want to dynamically position that div to unhide near the location of the link that is clicked. Here is the function to dynmaically set...
  10. tperri

    Need to get position of a rendered control and return it's location

    I have a page where I have links that pop open div's when clicked. I want to be able to figure out the location on the page (top and left values) of the link that is generated so I can use tha value when I set the style of on the div. Any suggestions on how to best do this? Thanks in advance!
  11. tperri

    ASP.Net and inline javascript popups

    Has anyone used Javascript pop ups with an ASP.Net Ajax page as the pop up? Here is the obstacle I am encountering: I have a page for a user to add a guest to an itinerary. They click on the Add Guest link, and it popups an asp.net window in a javascript inline pop up. Now, in this pop up...
  12. tperri

    Getting errors when updating a reference to a 3rd party server control

    I've been asked to do maintanence on an application, and it uses an old version of this control: http://www.eworldui.net/CustomControls/MaskedTextBox.aspx Anyhow, I installed this new version and added the control to my toolbox, dragged and dropped the textbox onto my form, and now I'm getting...
  13. tperri

    Crystal Reports - Getting login to server screen when I run page

    I'm trying to get a Crystal Report to work on an ASP.Net page. When I run the page, I get what looks to be a pre-made CR page for me to log in. I can't even click on the server name textbox or database box to input the information to see if a logging in will run the report. Here is my code -...
  14. tperri

    javascript events/behaviors in text boxes

    I have an ASP.Net page that has two text box controls on it. One if to collect an email address, and the other to collect a home airport code. When the page loads, in the text boxes, I want to have appear "Enter e-mail address" and "Enter Airport Code", respectively. I've set the Text...
  15. tperri

    JS and Textboxes

    I have an ASP.Net page that has two text box controls on it. One if to collect an email address, and the other to collect a home airport code. When the page loads, in the text boxes, I want to have appear "Enter e-mail address" and "Enter Airport Code", respectively. I've set the Text...
  16. tperri

    Dynamically Loading User controls

    I'm dynamically loading user controls into a place holder, which is working fine, but the properties I've created aren't available. Control avgRateControl = (Control)Page.LoadControl("_controls/AverageRates.ascx"); phRatesList.Controls.Add(avgRateControl); avgRateControl.hotelList =...
  17. tperri

    javascript problem within my asp.net page

    Im generating a GridView with some links, when the link is clicked it runs the following javascript function function changeElementStyleOn(elementName, styleName) { for (i=0; i < document.form1.elements.length; i++) { // do some...
  18. tperri

    Need help executing a javascript event and server-side event

    I need some help executing a javascript event and server-side event when a link button is pressed..... Or better yet, let me describe my scenario and maybe you can help me with a better solution. I have a DataGridView that lists out types of hotel rooms and descriptions. I have some...
  19. tperri

    Cant get values from TextBoxes in GridViewRows

    I'm hoping I'm missing something good here because this problem is driving me crazy. Here is my what my little web page does. 1. Imports a ^ delimited text file 2. Sorts through the data and places it into a datatable 3. Bind DataTable to the GridView so I can do some data entry at that point...
  20. tperri

    need help with getting selected row values in a GridView

    Just started to mess around with these - I have a bunch of TemplateColumns in my table, not bound columns, and when I select a row, I need to extract the value out of Cell[2] - but when I try, I'm getting Empty string ?myGridView.Rows[0].Cells[0].Text "" I'm supposing I'm having this...

Part and Inventory Search

Back
Top