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...
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
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
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...
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
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...
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>...
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>...
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);
}...
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...
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...
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.