India

mozilla frefox enter button problem in asp.net AJAX

clock September 4, 2008 19:27 by author Praveen Battula
praveens post [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


To access html control without runat=”server” in C# code

clock September 4, 2008 19:26 by author Praveen Battula
praveens post [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Conditional Statement example in Shareoint workflow

clock September 4, 2008 19:25 by author Praveen Battula
praveens post [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Role of ItemMetadata.xml in Infopath forms [SharePoint workflow]

clock September 4, 2008 19:24 by author Praveen Battula
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


How to give anonymous access to the reports

clock September 4, 2008 19:22 by author Praveen Battula
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


Creating new instance of workflow through C# code

clock September 4, 2008 19:20 by author Praveen Battula
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


How to display Site pages/ Subsites using Treeview control in sharepoint applicartion

clock September 4, 2008 19:19 by author Praveen Battula
  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


MOSS My Calendar web part login problem for different accounts

clock September 4, 2008 19:17 by author Praveen Battula
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


Ajax,Master page problem in Sharepoint 2007 [MOSS]

clock September 4, 2008 19:15 by author Praveen Battula
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


Magic of Page Load and Page Init execution

clock September 4, 2008 19:11 by author Praveen Battula
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


Show Desktop icon in Quick launch area in Windows server 2003

clock September 4, 2008 19:10 by author Praveen Battula
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


How to give specific permissions through C# to a user in Sharepoint custom workflow

clock September 4, 2008 19:09 by author Praveen Battula
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


How to check SMTP is working or not

clock September 4, 2008 19:08 by author Praveen Battula
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


Knowing the number of days in a month in t-sql

clock September 4, 2008 19:07 by author Praveen Battula
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


Importance of important property in CSS

clock September 4, 2008 19:07 by author Praveen Battula
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


MugShot

Sign in