Quantcast
Channel: SharePoint 2010 - Development and Programming forum
Viewing all 11571 articles
Browse latest View live

Using python to pull a table from Sharepoint

$
0
0

Hi,

I have full access to the resource I would like to connect to @ the Microsoft.sharepoint.c0m site

I can open it in my browser no problem.

I would like to know what is the easiest way to pull that table down in python? I am getting error code 403 with this code:

import requests
from requests_ntlm import HttpNtlmAuth
r = requests.get("https://microsoft.sharepoint.com", auth=HttpNtlmAuth('REDMOND\\v-mabird','**********'))
print r.status_code

>>> 403

And when I try this approach:


from sharepoint import SharePointSite, basic_auth_opener
server_url = "https://microsoft.sharepoint.com/"
site_url = server_url + "teams/esr/Lists/AEPeripherals%20List/AllItems.aspx"
opener = basic_auth_opener(server_url, "REDMOND\\v-mabird", "***********")
site = SharePointSite(site_url, opener)
print site.as_xml()

It gives me this:

>>> <Element {https://github.com/ox-it/python-sharepoint/}site at 0x2df7b88>Any ideas?


Alert not working for single site collection

$
0
0

I have a problem related alerts. It is working okay with all site collections I have tested except one. Interesting part is when I apply alert in any list of that site it sends mail that alert has been applied successfully but after that for any change nothing happens, I do not receive any mail for any change.

Sometimes it starts working automatically sometimes doesn't.

Do we have something on code level by which we can force an alert on particular site.

Any help regarding this.

Thanks in advance :)

sharepoint list details to be displayed in Table format using Jquery

$
0
0

Hi,

I need to display the list details in the below Table format:

name:aaa

phone number:111

address:aaa

when there are more items to display then it should have paging navigation


Blitz







Docker - Is really possible user Docker to SharePoint development environment?

$
0
0

Hi all,

Do you know if is possible use Docker for SharePoint 2010 development?

Do you know any article or tutorial about that?


Tarcísio Corte tarcisiocorte@gmail.com

Loader issue with Jquery

$
0
0

Hi All,

I am trying to add a loader which will be displayed till entire page is loaded, s 

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script><style type="text/css">


.no-js #loader { display: none;  }
.js #loader { display: block; ; left: 100px; top: 0; }
.se-pre-con {
	;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('/SiteAssets/Preloader_1.gif') 50% 50% no-repeat #ede9df;
}



</style><script type="text/javascript">

$(window).load(function(){

  $('.se-pre-con').fadeOut(2000);

});


</script><div class="se-pre-con"></div>

This works fine for chrome but does not work fine for Internet explorer.

Please guide


Sharepoint calculated column date stamp using Now() - syntax error

$
0
0

Hello, 

I wonder if someone can help me. I am trying to create a calculated column in a sharepoint list to date stamp a change in the status of one of the other attributes in the list. 

There is an attribute called 'Stage' and it can contain 10 different values (defined by pre-set choices). 

I want to date stamp when a change occurs to two of those values (using 2 separate new calculated columns). 

I am trying to do this using the following formula. 

=IF(Stage="Redundant", TEXT(NOW(),"dd/mm/yyyy"),"")

(and a second calculated column for the second data stamp required for the other value)

I have tried this as both a line of text data and as date & time data, but in both instances I get a syntax error ("The formula contains a snytax error or is not supported."). I have tried a couple of different variations also, and I get the feeling that its the NOW() function that sharpeoint isn't liking. Any ideas would be appreciated. I am using Sharepoint 2007

Many thanks, 


Drew

Show spinner until entire page is loaded

$
0
0

Hi All,

I have a home page which has a lot of different js files in content editor, all of the js file perform operation on different data and update different list so my page takes around 30 seconds to load.

So now I need to show jquery spinner until the page gets loaded. I have created a spinner as mentioned here 

http://smallenvelop.com/display-loading-icon-page-loads-completely/

I have already tried this http://sympmarc.com/2011/07/27/showing-a-spinning-icon-when-using-spservices/ this also did not work in my case 

please guide.

Unable to debug CentralAdmin feature

$
0
0

Hi everyone,

I want to add a new feature under Central Admin in SharePoint 2010.

I followed this tutorial: https://msdn.microsoft.com/en-us/library/ff798467.aspx

All its working excepts the debugging: when i set a breakpoint in the Aspx code behind, VisualStudio doesn't load the pdb files.

How can I enable the debugging?

Thanks in advance


SharePoint 2010, SCA rights required to see ECMAScript JavaScript results.

$
0
0

I have a page in SP2010 with some JavaScript similar to the code here, using ClientContext -  get_web().get_lists().getByTitle.

I have found that only users with SCA rights can open the page and see the results returned from the "retrievelistitem" function.

Even users with Full Control access to the site will not see the returned result.  Only by adding them to the SCA, will they be able to see the results.

I have switch my code over to use AJAX REST, and now all users with only general permissions can see the results without issue.  No SCA rights needed.

What is it with ClientContext get_web().get_lists().getByTitle  that it requires SCA rights to run?  Is there an authentication parameter that I'm missing?.

Any Ideas?

Puzzled,

Sharepoint Connection to Infopath Isues

$
0
0
I have two diffrent sharepoint websites and only one is currently hooked up to infopath. I was wondering why that is? My fellow employee was the one who set it up and he no longer works here. How can I set it up so that the first website is also hooked up with sharepoint when I try to make a form out of a list I have made.

How to get "Additional lock information" using powershell

$
0
0
I like to get all "No Access" SharePoint site collection list along with "Additional lock information" using powershell. Please let me know how to get the "Additional lock information" details using powershell

ascx.g.cs is empty

$
0
0
I know this has been an ongoing problem in VS2012 and VS2013  When I was using 2012, I changed the visual web part from 2012 back to 2010, but now I have migrated to VS2015, and that is no longer an option.  I have inherited an old project and need to be able to create new visual web parts for SP2010.  Is there any work around for this issue?  And why hasn't it been corrected prior to this?

SPservices get URL/Description

$
0
0

I have Sharepoint List with URL Column. Does anyone how to get "Type of Description" using SPservices?

I was trying using as bellow, But I am only getting URL not the "Description"

var MyUrl= $(this).attr("ows_URL");

best Regards

Lasantha

add a new-line / line-break to a multi line field using workflow string builder in sharepoint designer 2010

$
0
0
From SharePoint Designer 2010, how can I add a new line or line break using the String Builder. I tried <br /> and that didn't work. I tried put the new lines right in the string builder and that didn't work. Any idea?

timer job to export to excel a list and send email to users automatically

$
0
0

Is there any way to get an excel export from a SharePoint list and email to users in SharePoint 2010?

We have a list which update weekly and I want to email all users in format of Excel


What is the best storage solution for SharePoint

$
0
0

Hi ,

   Which Storage type is the best for SharePoint 2010 and SharePoint 2013

I mean SAN/ NAS/ RAID ?

Localized Resource-file not updating, tried everything!

$
0
0

Hi,

I have two resource files in my project (CompanyX.ApplicationY.ProjectZ):

CompanyX.ApplicationY.ProjectZ.en-us.resx
CompanyX.ApplicationY.ProjectZ.sv-se.resx

They have worked fine before, and I have been able to use the resource strings as follows in for instance my powershell scripts:

$Resources:CompanyX.ApplicationY.ProjectZ,QLStartPage;

Now, all of a sudden after trying lots of deploys and what not, sharepoint will no longer acknowledge any changes in the "sv-se" resource file, however, the en-us resource file still updates for every rebuild/package/deploy session.

This is what it looks like for newly added strings when adding links in sharepoint quick launch via powershell script (before you would se the text instead "Start Page"):

Problem when adding links via powershell using resource strings.

Strange is that old strings still work fine, it is just the newly added strings in the "sv-se" file that won't work.

Clue 1

The resource file on disk, in the hive is updated exactly as it should, I can see the new entry:

<data name="QLStartPage" xml:space="preserve">
  <value>Start Page</value>
</data>

Clue 2

If I try to fetch older resource strings, they work exactly as they should.

Clue 3

My SharePoint Log tells me the following:

Failed to look up string with key "QLStartPage", keyfile CompanyX.ApplicationY.ProjectZ.
Localized resource for token 'QLStartPage' could not be found for file with path: "(unavailable)".

-----

My assumption is that some how the file is cached or similar in some place other than the hive, or possibly read and stored in to SharePoint database or someting like that. 

I have spent hours troubleshooting this, and yes... also scanned the Google! Please help me out and I would very much appreciate it! Thanks in advance!

Jesper Wilfing


May Day! We need YOU as a TechNet SharePoint 2010 Guru!

$
0
0
May is under way!

And the Guru early birds are showing the way!

Could this be the month that we see the best ever TechNet article in the WORLD!!?

You could be thinking it right now words of wisdom that enrich people's lives!

Technical truths and wise words of widgets and wizardry!

So many upper eyes within Microsoft adjudicate this competition, yet so few stumble on this small community and realise the potential of getting their name known in such circles!

Some of our biggest community voices and many MVPs have passed through these halls, on their way to fame and fortune.

Come and see who is making waves in all your favourite technologies.

Maybe it will be you!

All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white paper, or just something you had to solve for your own day's work today.

Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!

This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!

HOW TO WIN

1) Please copy over your Microsoft technical solutions and revelations toTechNet Wiki.

2) Add a link to it on THIS WIKI COMPETITION PAGE (so we know you've contributed)

3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.

If you win, we will sing your praises in blogs and forums, similar to the weekly contributor awards. Once "on our radar" and making your mark, you will probably be interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!

Winning this award in your favoured technology will help us learn the active members in each community.

April's articles are off with the Judges. We hope to have enough votes by mid-month. They're all busy people.

Below are March's mighty winners! The full list of winners and contenders is here.

Guru Award BizTalk Technical Guru – March 2016  

Gold Award Winner

 

Johns-305BizTalk Server: Detecting a Missing Message or Orchestration, V2LG: "It is very deep investigation and advanced implementation. It is very helpful in real-life scenarios."
Sandro Pereira: "Good article and another great Solutions, I really prefer to avoid convoys if I can."

Silver Award Winner

 

Eldert GrootenboerUsing static port with dynamic behaviourSandro Pereira: "Once again great job Eldert! Excelent tip, well explain and in clearly way. Excellent addition to the TechNet Wiki!"
LG: "The article is somehow unclear."

Bronze Award Winner

 

Lex HegtBizTalk Tracking Cheat SheetLG: "It is really unknown feature, discovered by author. Kudos!"
Sandro Pereira: "Binding files are now more easy to understand thanks to you Lex. Great article."

Guru Award Forefront Identity Manager Technical Guru – March 2016  

Gold Award Winner

 

Jeff IngallsFIM2010/MIM2016: How to Bulk Export Connector and Disconnector Status from an AD DomainPG: "A nice piece of "FIM/MIM bit", quick practical solution for a practical problem. Keep up the good work!"
AM: "Great article!"

Guru Award Microsoft Azure Technical Guru – March 2016 

Gold Award Winner

Emiliano MussoCreate Azure Database and use it via C#JH: "Good introduction on creating, managing and connecting to good old Azure SQL DB."
TN: "Good article helping developer working with Azure programmatically"

Silver Award Winner

Samir FarhatAzure IaaS V2 (ARM) Design Series : Azure SubscriptionsJH: "Everyone working with Azure uses a subscription, but do not think about seem more deply. Good overview of Azure subscriptions."
TN: "A good read, nice work"

Bronze Award Winner

Kia Zhi Tang (Ryen Tang)Microsoft Azure: Deploying Site to Site VPN Connection with Citrix NetScaler CloudBridgeTN: "This article is extremely helpful and provides real-world scenario. "
JH: "Nice overview about using the Citrix NetScaler VPX to connect your private cloud to Azure."

 

Guru Award Miscellaneous Technical Guru – March 2016 

Gold Award Winner

SYEDSHANUEASY KIDS LEARN using MVC and AngularJSPeter Laker: "Great article Syed, some good work this month!"
Richard Mueller: "Lots of code and detailed steps. Good use of Wiki guidelines."

Silver Award Winner

Santhakumar MunuswamyGetting Started With Agent SmartWatch AppsPeter Laker: "Very interesting! Just the kind of thing we love. I'm gonna go try!"
Richard Mueller: "Great images. Good detailed steps. Perhaps this could use a TOC."

Bronze Award Winner

Carmelo La Monicanternet-of-things-part-3-our-first-application.aspxPeter Laker: "Great introduction Carmelo, thanks for sharing!"
Richard Mueller: "Great images and detailed steps."

  

Guru Award Small Basic Technical Guru – March 2016 

Gold Award Winner

Yvan LeducHow to produce a complete music chord using SoundPlay.Music in Small BasicDEVA: "Great Music app Yvan :)"
Michiel Van Hoorn: "Great, music!"

Silver Award Winner

Nonki TakahashiSmall Basic: ProgramDEVA: "Great Stuff Nonki :)"
Michiel Van Hoorn: "Thanks Nonki!"

 

Guru Award SQL BI and Power BI Technical Guru – March 2016 

Gold Award Winner

Greg DecklerDAX the LanguageRB: "Good article"
PT: "Both entries this month are fantastic, concise articles on useful DAX applications… and since you submitted both, I don't have to pick a winner! They BOTH win! Greg, thank you for this contribution to the TechNet Wiki. "

Silver Award Winner

Greg DecklerAggregating Duration/Time in DAXRB: "Another very good article"
PT: "Both entries this month are fantastic, concise articles on useful DAX applications… and since you submitted both, I don't have to pick a winner! They BOTH win! Greg, thank you for this contribution to the TechNet Wiki."

 

Guru Award SQL Server General and Database Engine Technical Guru – March 2016 

Gold Award Winner

ChervineQuery Unstructured Data from SQL Server using PolybasePeter Laker: "An awesome article Chervine, beautifully laid out and illustrated too."
AN: "Very nice article!"

Silver Award Winner

FLaufferSQL Server Storage: Checking Volumes Block SizesPeter Laker: "Short but concise! Good comment from Shanky re code snippets, would improve it more."
AN: "Thanks for the tip!"

 

Guru Award Transact-SQL Technical Guru – March 2016 

Gold Award Winner

DiegoctnHow to recover views and procedures dropped by mistake>Richard Mueller: "Great information that can be useful. Good example to demonstrate. Would be good to explain how the code works. Also, avoid first person and try not to write as if it is a blog post."
CA: "A good start!"

 

Guru Award Universal Windows Apps Technical Guru – March 2016 

Gold Award Winner

Manuel CotaHow to Use Microsoft's Direct Music Producer to create Music for a UWP Video GameJH: "Music is something that makes good games great ones. Nice introduction to Microsoft's DirectMusic Producer."
BE: "Great article!"

 

Guru Award Visual Basic Technical Guru – March 2016 

Gold Award Winner

.paul.VB.Net OOP Areas and Volumes CalculatorCarmelo La Monica: "Very useful article and very good vb net code. Congrats !"
Richard Mueller: "Nicely done, with good use of Wiki guidelines and images."

 

Guru Award Visual C# Technical Guru – March 2016 

Gold Award Winner

Sibeesh VenuCaching In Web APICarmelo La Monica: "Fantastic topics, very detailed in all parts."
AP: "Great article!"

Silver Award Winner

Emiliano MussoCreate Azure Database and use it via C#Carmelo La Monica: "Great work and very useful. Congrats for your sample."
AP: "Nice sample Emiliano"

Bronze Award Winner

Sibeesh VenuChart Widgets With Server Side Data In MVC Using Angular JS And Web APICarmelo La Monica: "Very good sample, images and code, very detailed."
AP: "Very nice article!"

 

Guru Award Wiki and Portals Technical Guru – March 2016 

Gold Award Winner

Richard MuellerWiki: Glossary of Acronyms Specific to MicrosoftPeter Laker: "A very useful list, thank you Richard!"
AN: "Great article!"

Silver Award Winner

Ed Price – MSFTExcel PortalPeter Laker: "A great jumping in point, worth a bookmark! Thanks Ed!"
AN: "Thanks Edwardo!"

 

Guru Award Windows PowerShell Technical Guru – March 2016 

Gold Award Winner

VGSandzWindows Auto Logon with PowerShellJan Egil Ring: "Thanks VGS"
Alan Carlos: "Nice article! Congrats!"
Richard Mueller: "Good use of Wiki guidelines. Good code examples. We can use some links to references."

 

Guru Award Windows Server Technical Guru – March 2016 

Gold Award Winner

Nathanaël StassartBuild a SharePoint Server 2016 Reference Image (Sysprep)JM: "This is a thorough, well presented and excellent article on SharePoint server deployment. Thanks for your contribution"
Mark Parris: "Good Reference article."
Alan Carlos: "Wow! Great article!"
Richard Mueller: "Very detailed steps and recommendations. The images help. Grammar needs work."

Silver Award Winner

Kia Zhi Tang (Ryen Tang)Nano Server: Deploying ASP.NET 5 site on Internet Information Services (IIS) Web ServerJM: "This article on deploying an ASP.NET site on IIS in Nano server is excellent! Thanks for your contribution"
Mark Parris: "Nice Nano Server article, the library of information is growing."
Alan Carlos: ""
Richard Mueller: "Detailed steps with PowerShell code. Good use of Wiki guidelines, but the "See Also" should be links to other Wiki articles."

A huge thank you to EVERYONE who contributed an article to March's competition.

Good Luck May Gurus

Pete Laker


#PEJL
Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over toTechNet Wiki, for future generations to benefit from! You'll never get archived again, and you could win weekly awards!

Have you got what it takes o become this month's TechNet Technical Guru? Join a long list of well known community big hitters, show your knowledge and prowess in your favoured technologies!

Reusable WFs

$
0
0

Hello,

Is their a way to get list of reusable WFs via Powershell? The Powershell that I have written does not give me list of reusable WFs.

Thanks,

Anand


Thanks and Regards, Anand R. Deshpande

Filtering is not working for columns(Label Number,Sequence Number & Media Type) in SharePoint Gridview

$
0
0

Hi,

I have gridview data where i am applying sorting and filtering.Sorting is working fine.But filtering have some issue for few columns,few columns are working for filtering.working Filtering columns(Description & Address).Not working Filtering columns(Label Number,Sequence Number & Media Type)

Below are my code.

<table>
    <tr>
        <td>
            <SharePoint:SPGridView Width="100%" ID="grdInventoryByCycle" CellSpacing="2" runat="server"
                AutoGenerateColumns="false">
                <Columns>
                    <SharePoint:SPBoundField HeaderStyle-BackColor="#BDA65A" HeaderText="Label Number"
                        DataField="Label Number" HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Left">
                    </SharePoint:SPBoundField>
                    <asp:BoundField HeaderStyle-BackColor="#BDA65A" HeaderText="Description" HtmlEncode="false"
                        HeaderStyle-HorizontalAlign="Center" DataField="Description" ItemStyle-HorizontalAlign="Left" />
                    <SharePoint:SPBoundField HeaderStyle-BackColor="#BDA65A" HeaderText="Sequence Number"
                        HeaderStyle-HorizontalAlign="Center" DataField="Sequence Number" ItemStyle-HorizontalAlign="Left">
                    </SharePoint:SPBoundField>
                    <SharePoint:SPBoundField HeaderStyle-BackColor="#BDA65A" HeaderText="Backup Date"
                        HeaderStyle-HorizontalAlign="Center" DataField="Backup Date" ItemStyle-HorizontalAlign="Left">
                    </SharePoint:SPBoundField>                   
                    <SharePoint:SPBoundField HeaderStyle-BackColor="#BDA65A" HeaderText="Address" HeaderStyle-HorizontalAlign="Center"
                        DataField="Address" ItemStyle-HorizontalAlign="Left">
                    </SharePoint:SPBoundField>
                    <SharePoint:SPBoundField HeaderStyle-BackColor="#BDA65A" HeaderText="Media Type"
                        HeaderStyle-HorizontalAlign="Center" DataField="Media Type" ItemStyle-HorizontalAlign="Left">
                    </SharePoint:SPBoundField>
                </Columns>
            </SharePoint:SPGridView>
            <asp:ObjectDataSource ID="gdrsDataSource" runat="server"></asp:ObjectDataSource>
        </td>
    </tr>
</table>

protected voidPage_Load(objectsender,EventArgse)

        {

            grdInventoryByCycle.DataSourceID = gdrsDataSource.ID;

            gdrsDataSource.SelectMethod =

"BindGrid";

            gdrsDataSource.TypeName =

this.GetType().AssemblyQualifiedName;

            gdrsDataSource.ObjectCreating +=

newObjectDataSourceObjectEventHandler(gdrsDataSource_ObjectCreating);

       

           

//Filtering


            gdrsDataSource.Filtering +=

newObjectDataSourceFilteringEventHandler(gdrsDataSource_Filtering);                                   

            grdInventoryByCycle.AllowFiltering =

true;

            grdInventoryByCycle.FilterDataFields =

"Label Number,Description,Batch Number,Backup Date,Address,Media Type";

            grdInventoryByCycle.FilteredDataSourcePropertyName =

"FilterExpression";

            grdInventoryByCycle.FilteredDataSourcePropertyFormat =

"{1} = '{0}'";

            grdInventoryByCycle.PagerTemplate =

null;

           

//Sorting


            grdInventoryByCycle.AllowSorting =

true;

            grdInventoryByCycle.Sorting +=

newGridViewSortEventHandler(grdInventoryByCycle_Sorting);

            btnExportToExcel.ImageUrl =

SPContext.Current.Web.Url +"/Style%20Library/BMS/Images/Excel-icon.png";

        }

public DataTable BindGrid()
        {
            try
            {
                SPSecurity.RunWithElevatedPrivileges(delegate()
                {
                    using (SPSite site = new SPSite(SPContext.Current.Site.ID))
                    {
                        using (SPWeb web = site.OpenWeb())
                        {
                            #region Datatable creation

                            dtInventory.Columns.Add("Label Number", typeof(string));
                            dtInventory.Columns.Add("Description", typeof(string));
                            dtInventory.Columns.Add("Sequence Number", typeof(string));
                            dtInventory.Columns.Add("Backup Date", typeof(string));
                            dtInventory.Columns.Add("Address", typeof(string));                                                       
                            dtInventory.Columns.Add("Media Type", typeof(string));
                                                       
                            #endregion

                            SPList list = web.Lists.TryGetList("Tape Inventory");

                            if (list != null)
                            {
                                SPListItemCollection items = list.GetItems();                               

                                foreach (SPListItem item in items)
                                {
                                    DataRow dr = dtInventory.NewRow();
                                    dr["Label Number"] = item["Title"].ToString();
                                    dr["Description"] = item["Description"].ToString();
                                    dr["Sequence Number"] = item["Batch_x0020_Number"].ToString();
                                    dr["Backup Date"] = Convert.ToDateTime(item["Backup_x0020_Date"]).ToShortDateString();                                   
                                    dr["Address"] = item["Address"].ToString();
                                    dr["Media Type"] = item["Media_x0020_Type"].ToString();                                   
                                                                       
                                    dtInventory.Rows.Add(dr);
                                }
                            }
                        }
                    }
                });
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
            }
            if (dtInventory.Rows.Count > 0)
            {
                return dtInventory;
            }
            else
            {
                grdInventoryByCycle.EmptyDataText = "No Records found based on the selection..";
                return null;
            }
        }

protected

voidgdrsDataSource_ObjectCreating(objectsender,ObjectDataSourceEventArgse)

        {

            e.ObjectInstance =

this;

        }

       

privatevoidgdrsDataSource_Filtering(objectsender,ObjectDataSourceFilteringEventArgse)

        {

            ViewState[

"FilterExpression"] = ((ObjectDataSourceView)sender).FilterExpression;

        }

       

protectedvoidgrdInventoryByCycle_Sorting(objectsender,GridViewSortEventArgse)

        {

           

try


            {

               

if(ViewState["FilterExpression"] != null)

                {

                    gdrsDataSource.FilterExpression = (

string)ViewState["FilterExpression"];

                }

            }

           

catch(Exceptionex)

            {

               

//Logger.LogException("Occurred in grdTADashboard_Sorting() of TAOAFDashboardUserControl -- " + ex);


            }

        }

Viewing all 11571 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>