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 SkipVought 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: *

  1. DotNetGnat

    Programmatically set sharepoint group owner

    Hello All, Could someone please provide some sample code that demostrates the following. I am trying to set sharepoint group mygroup1 as a owner of the newly created sharepoint group mygroup2. I know how to set users and members...but I am not sure how to set a group as a owner of another...
  2. DotNetGnat

    site template to use for knowledge mining

    Hello All, Which template should I use for Knowledge Mining – where each user defines their own subjects of expertise and can be effectively searched for based on skill and skill level. Thanks for any suggestions... -DNG
  3. DotNetGnat

    showing loding image...

    thanks for the suggestions guys... Jason, I am not a web developer. I always frame questions in a easy way in order to get some ideas... Thanks again... -DNG
  4. DotNetGnat

    showing loding image...

    Guys, I am opening a new page on a button click event to show the search results. This new window comes up blank not giving the user any obvious message to the user that the process is running...sometimes the page takes 30 seconds to load... I was wondering what is the easiest way to show/hide...
  5. DotNetGnat

    unable access MasterPage member

    I just used FindControl and it worked fine for me... also page inheritance is little complicated in VB.net project that I am currently working with...so thats the reason I was getting member not found error... Thanks -DNG
  6. DotNetGnat

    unable access MasterPage member

    Guys, I have this working in C# project but not in VB project... in the MasterPage.master.vb file, I have Public Overridable ReadOnly Property MainBody() As HtmlGenericControl Get Return Me.maintop End Get End Property in the content page, I am trying to...
  7. DotNetGnat

    extract data from xml

    Thanks Patrick. There is no method called SelectNode. There are SelectNodes and SelectSingleNode methods that I am looking into. -DNG
  8. DotNetGnat

    extract data from xml

    Guys, Need some help on parsing xml file. Below is the line I have in my code: XmlNodeList xmlnode = xmldoc.GetElementsByTagName("G_NEW_DATE"); and the outerxml that I get looks like below for xmlnode[i].OuterXml <G_NEW_DATE> <DAY>THURSDAY</DAY> <LIST_G_CAT> <G_CAT> <1MONTH>100</1MONTH>...
  9. DotNetGnat

    reading xml file

    Guys, Need some help on parsing xml file. Below is the line I have in my code: XmlNodeList xmlnode = xmldoc.GetElementsByTagName("G_NEW_DATE"); and the outerxml that I get looks like below for xmlnode[i].OuterXml <G_NEW_DATE> <DAY>THURSDAY</DAY> <LIST_G_CAT> <G_CAT> <1MONTH>100</1MONTH>...
  10. DotNetGnat

    Get Third Friday of a month

    here is what I did: public static DateTime GetThirdFriday(DateTime sdate) { DateTime thirdFriday = new DateTime(sdate.Year, sdate.Month, 1); while (thirdFriday.DayOfWeek != DayOfWeek.Friday) { thirdFriday = thirdFriday.AddDays(1); }...
  11. DotNetGnat

    Get Third Friday of a month

    Hi Guys, Ignore this post. I figured how to find the third friday of the month. Let me know if someone needs it. Thanks for looking... -DNG
  12. DotNetGnat

    Get Third Friday of a month

    Hello Given a date. How can we get third friday of that month. Any suggestions.. -DNG
  13. DotNetGnat

    add calculated column to datatable

    Thank you Jason...with little tweaking it worked fine... ca8msm, thanks for the info. -DNG
  14. DotNetGnat

    add calculated column to datatable

    by the way the datatable I generating is sorted by date asc... -DNG
  15. DotNetGnat

    add calculated column to datatable

    thanks for your input. I also intially thought of doing this at the database level but later changed my mind. Currently in my web app, I generate Datatable on the fly specific for each user based on their inputs. If I could save this table on the database and run sp's on it and return calculated...
  16. DotNetGnat

    add calculated column to datatable

    Hello All, I have a datatable as shown below Date | price _________________ 1/1/2010 | 10 1/2/2010 | 11 1/3/2010 | 9 1/4/2010 | 12 I want to add a column to this datatable to result Date | price | change ______________________ 1/1/2010 | 10 | 1/2/2010 | 11 | 1 1/3/2010 | 9...
  17. DotNetGnat

    check for 404 page not found code

    Thank you guys. WebResponse and WebRequest methods worked for me. Stars for you. -DNG
  18. DotNetGnat

    check for 404 page not found code

    Thanks Jason. Can I use ajax or any other javascript libraries such as jquery to do this task? I have a form ( a very big one) and one of the first user entry is the main part of the URL. I was hoping to do some client-side validation of the user entry to quickly return a invalid link...
  19. DotNetGnat

    check for 404 page not found code

    Guys, I need to programmatically access/hit a URL and find out the response code before procedding any further. I need to check for 404 page not found error and validate user entry and show the error message. Any suggestions for achieving this... Thanks -DNG
  20. DotNetGnat

    combination algorithm

    I mostly got the code taken from below link http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=4587&lngWId=10 -DNG

Part and Inventory Search

Back
Top