Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Introduction:
ItemMetadata.xml is the file used to store/transfer the data from one Infopath to another. The name of the file is case - sensitive.
For example, in a sharepoint workflow, there are 10 steps, in each step we are using infopath and we want send some information from one to the n...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Give anonymous access to the Application.
1. Go to IIS.
2. Select reports application –> properties –> Directory Security –> Authentication and Access control –> Edit –> Enable Anonymous access
Give anonymous access to a report.
...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Here is a small code snippet which does terminating currently running wokflow and start a new instance of the workflow on the same item.
SPListItem listItem = workflowProperties.Item;
SPList spList = workflowProperties.List;
string initData = workflowProperties.InitiationData;
const ...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
i want to show all the sites and pages in sites in a tree view control in SharePoint.
Below is the complete code of the treeview functionality.
in my case, tree view has 3 levels.
<asp:TreeView ID=”treeviewLeftNav” runat=”server”
Width=&rdq...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Introduction
i configured every thing fine in My Calendar web part. i.e. Mail server address, Mailbox.
when i open the page which contains calendar web part, it prompts for user name and password. i.e. login page of OWA application.
when i give credentials it’s working very fine.
...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Problem:
Ajax is not working well in the SharePoint 2007.
Solution:
After installed Ajax in server, update the web.config file, Copy all the dlls to GAC and bin of your application [not needed] and then follow the instructions below.
I solved this problem after a long r...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Problem:
Not complete understanding of Page Life Cycle in ASP.NET.
This is very helpful in big projects, that we need to initialize some object in Master page, page load and try to access the same object in aspx page load, it will give error [Because aspx page load will execure fir...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Problem:
I faced a small problem to add Show Desktop icon to quick launch in Windows server 2003.
Finally, i added it to the quick launch area.
Solution:
Here are the steps to follow.
Open notepad, and Copy the below code.
[Shell]
Command=2
IconFile=explorer.exe,3
[Task...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Here is a small code, to set specific permissions to a user.
System.Collections.Specialized.
HybridDictionary taskPermissions = new System.Collections.Specialized.HybridDictionary();
taskPermissions[workflowProperties.Originator] =
SPRoleType.Administrator;
taskPe...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Follow the steps below to check SMTP server is working or not.
1. open command prompt and type : telnet <servername> 25
Note: 25 is the port used by SMTP.
you will get the output like
220 <servername> Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at...
[More]
Currently rated 5.0 by 1 people
- Currently 5/5 Stars.
- 1
- 2
- 3
- 4
- 5
Many times i have a requirement to get the number of days in a given month. Here is a small script that will give you the number of days.
declare @numberOfDaysInMonth int;
set @numberOfDaysInMonth = DAY(DATEADD (m, 1, DATEADD (d, 1 - DAY(getdate()), getdate())) - 1);
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
In css we have a keyword called important.
For example, in some of the projects, it’s very difficult to maintain css like sharepoint sites or biggest projects.
We have a scenario like this, we need to overwrite all of the styles to a perticular control, there this property will h...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5