Category Archives: SharePoint উন্নয়ন

সহজ ব্যাখ্যা: “মান প্রত্যাশিত পরিসীমা মধ্যে না পড়া না.”

আপডেট: An anonymous poster left a great comment about internal names. Be sure to read it.

ঘটনা রিসিভার এবং অন্যান্য কোড যখন কাজ যে রেফারেন্স অবজেক্ট মডেল মাধ্যমে SharePoint তালিকা আইটেম, আমি প্রায়ই ভুল করে যে রানটাইমে এই ত্রুটি উৎপন্ন করা:

ত্রুটি লোড এবং চলমান xyzzy মধ্যে ইভেন্ট রিসিভার Conchango.xyzzyEventReceiver, সংস্করণ = 1.0.0.0, সংস্কৃতি = নিরপেক্ষ, PublicKeyToken = 0dc50a750396c3ac. Additional information is below. : Value does not fall within the expected range.

I think this is a fairly generic error that is potentially caused many different ways. কিন্তু, one simple explanation is that I’m referencing a field incorrectly. If the name of the field is "Due Date", আমি একটি ঘটনা রিসিভার ভালো লেগেছে তা উল্লেখ করা আবশ্যক:

properties.ListItem["Due Date"]

যদি ক্ষেত্রের কিছু r উল্লেখ যখন আমি ভুল ক্ষেত্রে misspell বা ব্যবহার করার সময়, SharePoint generates the above mentioned runtime error. উদাহরণস্বরূপ, এই ভুল:

properties.ListItem["due Date"]

</শেষ>

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন.

Technorati বিভাগ:

দ্রুত & সহজ: একটি ফোল্ডার তৈরি করুন, এবং একটি বিষয়বস্তু প্রকার ধার্য (বা, আপনার KPIs এবং তাদেরকে খুব খান)

In order to work around a KPI problem I wrote about here, I did some testing and discovered that KPI’s work against folders with meta data in the same way that they work against documents or list items. I proved it out by creating a new content type based on the folder content type and then added a few fields. I created some indicators and proved to myself that KPIs work as expected. This was welcome news. It’s not perfect, because the drill-down you get from the KPI against the folders is not exactly what you want. This isn’t too much a drawback in my case because 1) অন্তিম ব্যবহারকারীদের কোনো ভালো এবং জানি না 2) the drill-down goes to a folder. They click the folder name and they are at the item. It’s two clicks instead of one, যা বিশ্বের শেষ হয় না.

This flowed nicely with the work I was doing. I am creating a folder for every document that gets uploaded. This is done via an event receiver. ফলে, এটা রাখা সহজলভ্য এর মূল ফোল্ডার এর meta data in sync with the KPI-driven meta data from the file itself since the plumbing is already in place. This allows me to have my KPI’s and eat them too 🙂

I modified the event receiver to add the folder and then set this new folder’s content type to my custom KPI-friendly content type. This bit of code did the trick:

 SPFolderCollection srcFolders = targetWeb.GetFolder("Documents").SubFolders;
  SPFolder addedFolder = srcFolders.Add(properties.ListItem.ID.ToString());
  SPContentTypeId kpiCT = নতুন SPContentTypeId("0x0120002A666CAA9176DC4AA8CBAA9DC6B4039F");
  addedFolder.Item["Content Type ID"] = kpiCT;
  addedFolder.Item.Update();

To locate the actual Content Type ID, I accessed that content type via site settings and copy/pasted it from the URL as shown:

ইমেজ

</শেষ>

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন!

Technorati বিভাগ: ,

দ্রুত এবং সহজ: একটি ইভেন্ট রিসিভার একটি SPListItem এর SPFolder পেতে

আমি এটা সত্য বলিয়া স্বীকার করা ঘৃণা, but I struggled with this one all day. My event receiver needs to update a field of its parent folder. This little bit shows how to do it:

ব্যক্তিগত অনধিকৃত UpdateParentFolder(SPItemEventProperties বৈশিষ্ট্য)
{

SPFolder thisItemFolder = properties.ListItem.File.ParentFolder;
thisItemFolder.Item["ZZ Approval Status"] = "Good news, সবাই!";
thisItemFolder.Item.Update();


} // UpdateParentFolder

এই ক্ষেত্রে, আমি একটি নথি গ্রন্থাগারের সঙ্গে কাজ করছি এবং বৈশিষ্ট্যাবলী একটি ItemAdded ঘটনা থেকে আসছে.

কৌতুক আপনি আইটেমটি নিজেই থেকে সরাসরি আইটেমের SPFolder পেতে পারে না যে (I.E. properties.ListItem.Folder নাল হয়). পরিবর্তে, তালিকার আইটেম যুক্ত ফাইল যান এবং ফাইল এর ফোল্ডার পাবেন.

</শেষ>

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন!

Technorati বিভাগ:

তবুও অন্য ইভেন্ট রিসিভার ডিবাগ কৌতুক

I’m sure I’m not the first person to come up with this. কিন্তু, I haven’t noticed anyone publish a trick like this since I started paying close attention to the community last July. সুতরাং, আমি এটা এই দ্রুত এবং সহজ ডিবাগ ডগা পোস্ট চাই.

I’m working on an event receiver that started to generate this error in the 12 মধুচক্র:

ত্রুটি লোড এবং চলমান xyzzy মধ্যে ইভেন্ট রিসিভার Conchango.xyzzyEventReceiver, সংস্করণ = 1.0.0.0, সংস্কৃতি = নিরপেক্ষ, PublicKeyToken=blahbalhbalh. Additional information is below. : অবজেক্ট রেফারেন্স একটি বস্তুর উদাহরণ সেট না.

I didn’t know where I had introduced this bug because I had done too many things in one of my code/deploy/test cycles.

I tried this solution to get my pdb in there with hopes that SharePoint’s 12 hive would show the stack trace, but no luck. I don’t know if it’s possible and if someone does, please let me know 🙂

I know it’s possible to write your own log messages to the 12 মধুচক্র. Frankly, I wanted something a little less scary and quicker to implement.

It occurred to me that I could at least get some basic trace information by catching and re-throwing generic exceptions like this:

  চেষ্টা {
    UpdateEditionDate(বৈশিষ্ট্য);
  }
  ধরা (ব্যতিক্রম e)
  {
    নিক্ষেপ নতুন ব্যতিক্রম("Dispatcher, UpdateEditionDate(): ব্যতিক্রম: [" + e.ToString() + "].");
  }

This showed up in the 12 hive thusly:

ত্রুটি লোড এবং চলমান xyzzy মধ্যে ইভেন্ট রিসিভার Conchango.xyzzyEventReceiver, সংস্করণ = 1.0.0.0, সংস্কৃতি = নিরপেক্ষ, PublicKeyToken=blahblahblah. Additional information is below. : Dispatcher, UpdateEditionDate(): ব্যতিক্রম: [System.NullReferenceException: অবজেক্ট রেফারেন্স একটি বস্তুর উদাহরণ সেট না. at Conchango.xyzzyManagementEventReceiver.UpdateEditionDate(SPItemEventProperties বৈশিষ্ট্যাবলী) at Conchango.xyzzyManagementEventReceiver.Dispatcher(SPItemEventProperties বৈশিষ্ট্যাবলী, String eventDescription)].

That gave me all the detail I needed to track down that particular problem and I expect to use it a lot going forward.

</শেষ>

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন!

সমাধান: SPQuery ফোল্ডার অনুসন্ধান করে

This past week I was implementing an "evolving" solution for a client that uses BDC and SPQuery and ran into some difficulty using SPQuery against a document library containing folders. পাদ - পংক্তি: assign "recursive" কোয়্যারীর ভিউ অ্যাট্রিবিউট.

আমার দৃশ্যকল্প:

  • সোমবার, আমি একটা ডকুমেন্ট আপলোড এবং কিছু মেটা তথ্য সরবরাহ.
  • পরের সপ্তাহে, I upload a new document. Much of this new document’s meta data is based on the document I uploaded on Monday (which we call the "master document").
  • ব্যবহারকারীরা সহজেই একটি শিরোনাম খোঁজো মাধ্যমে সোমবার ডকুমেন্ট সনাক্ত করতে পারেন, যাতে আমরা এটা তালিকায় একটি BDC বান্ধব ইন্টারফেস উপলব্ধ করা হয় এমন একটি ওয়েব পরিষেবা বাইরের অংশটা তৈরি করেছি.
  • A BDC data column provides a friendly user interface. (এটি একটি আরো বন্ধুত্বপূর্ণ লুকআপ কলামের জন্য BDC ব্যবহার করে আমার প্রয়াস অংশ).

চূড়ান্ত BDC বাইরের অংশটা পরিষেবা লুকআপ করতে ভালো একটি ক্যোয়ারী ব্যবহার করে:

 // এই CAML ক্যোয়ারী উৎপাদিত সহযোগিতা ব্যবহৃত U2U হাতিয়ার.
      oQuery.Query =
        "<যেখানে>";

      যদি (titleFilter.Length > 0)
        oQuery.Query     =
          "  <এবং>";

      oQuery.Query     =
        "    <এবং>" +
        "      <Geq>" +
        "        <FieldRef Name=\"DocumentId\" />" +
        "        <Value Type=\"Text\">" + MinID + "</মান>" +
        "      </Geq>" +
        "      <Leq>" +
        "        <FieldRef Name=\"DocumentId\" />" +
        "        <Value Type=\"Text\">" + maxId + "</মান>" +
        "      </Leq>" +
        "    </এবং>";

      যদি (titleFilter.Length > 0)
        oQuery.Query     =
          "    <উপস্থিত>" +
          "      <FieldRef Name=\"Title\" />" +
          "      <Value Type=\"Text\">" + titleFilter + "</মান>" +
          "    </উপস্থিত>" +
          "  </এবং>";
      oQuery.Query     =
        "</যেখানে>";

উন্নয়নের প্রাথমিক পর্যায়ে, this worked great. কিন্তু, আমরা হঠাৎ কিছু সমস্যার সমাধান এবং ডিরেক্টরির মধ্যে ফোল্ডার চালু, my BDC picker wouldn’t return any results. I tracked this down to the fact that the SPQuery would never return any results. We used folders primarily to allow multiple files with the same name to be uploaded but with different meta data. When the file is uploaded, আমরা তালিকা আইটেম এর আইডি উপর ভিত্তি করে একটি ফোল্ডার তৈরি করুন এবং তারপর ফাইল সরাতে (আমি যে বিষয়ে লিখেছে এখানে; আমরা করেছি মিশ্র ফলাফল এই পদ্ধতির সঙ্গে কিন্তু গোটা নেভিগেশন, এটা ভাল কাজ করছে). The user don’t care about folders and in fact, don’t really understand that there are any folders. We have configured all the views on the library to show items without regard to folders.

I hit this problem twice as the technical implementation evolved and solved it differently each time. The first time, I wasn’t using the CONTAINS operator in the query. Without a CONTAINS operator, I was able to solve the problem by specifying the view on the SPQuery’s contructor. Instead of using the default constructor:

SPList oList = web.Lists["Documents"];

SPQuery oQuery = নতুন SPQuery();

আমি এর পরিবর্তে একটি ভিউ নির্দিষ্ট একটি রচয়িতা ব্যবহৃত:

SPList oList = web.Lists["Documents"];

SPQuery oQuery = নতুন SPQuery(oList.Views["All Documents"]);

যে সমস্যার সমাধান এবং আমি আমার ফলাফল পেতে শুরু.

I then added the CONTAINS operator into the mix and it broke again. It turns out that the CONTAINS operator, যতদূর আমি বলতে পারেন, একটি সহজ GEQ হিসেবে ভিউ সঙ্গে একই ভাবে কাজ করে না / LEQ operators. I did some searching and learned that the query’s ViewAttributes should be set to "Recursive", যেমন:

oQuery.ViewAttributes = "Scope=\"Recursive\"";

That solved the problem for CONTAINS. বাস্তবিকই, এটি আমার মূল খোঁজো সমস্যার সমাধান এবং আমি recursive অ্যাট্রিবিউট প্রথমবার উল্লিখিত ছিল, আমি আবার সমস্যা পাতিত হবে না.

একটি দৃশ্য ভিত্তিক SPQuery কিছু অপারেটরদের জন্য কাজ করে যে (GEQ/LEQ) এবং অন্যদের (উপস্থিত), KPIs ফোল্ডার-সম্বলিত ডকুমেন্ট লাইব্রেরী সঙ্গে এ সব কাজ করে না বলে মনে হচ্ছে যে সঙ্গে মিলিত সম্পর্কে যে SPQuery কিছু orthogonality বিষয় আছে বিশ্বাস জন্মাতে.

বিশেষ ধন্যবাদ:

  • ভাল ভাবেন U2U এবং তাদের ক্যোয়ারী হাতিয়ার.
  • মাইকেল Hoffer এর মহান "করে শেখার" ব্লগ পোস্ট, মন্তব্য এবং প্রতিক্রিয়া.

</শেষ>

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন!

MOSS KPI বাগ? তালিকা ইনডিকেটর ফোল্ডার সঙ্গে ডকুমেন্ট লাইব্রেরিতে বাঁধা

আপডেট 02/29/08: I solved this problem by creating a folder and then assigning a content type to the folder which has the meta data I need for the KPIs. আমি এখানে একটু বিস্তারিত যে বর্ণনা.

We have implemented a technical solution where users upload documents to a document library. An event receiver creates a directory and moves the file to that directory (আমি লিখেছে কি অনুরূপ একটি কৌশল ব্যবহার করে এখানে). We’ve successfully navigated around the potential issues caused by event receivers that rename uploaded files (mainly because users never start their document by clicking on "New" কিন্তু এর পরিবর্তে স্থানীয়ভাবে ডক্স তৈরি এবং তারপর তাদের আপলোড).

The meta data for these documents includes a Yes/No site column called "Urgent" and another site column called "Status". We need to meet a business requirement that shows the percentage of "Urgent" documents whose status is "Pending".

এই কাজ করতে সাধারণত সহজ এবং আমি SharePoint Beagle এ খুব ভালো কিছু বর্ণনা স্ক্রিন শট প্রচুর আপনি আগ্রহী হলে সঙ্গে.

সংক্ষেপে, আমি নিম্নলিখিত করেনি:

  • Create a view on the doc library called "Pending".
  • ফোল্ডার গঠন উপেক্ষা করার ভিউ কনফিগার করুন.
  • একটি KPI তালিকা তৈরি করুন.
  • Create an indicator in the list that points to the doc lib and that "Pending" দেখা.

This simply does not work. The KPI shows my target (e.g. পাঁচটি জরুরি নথি) but always shows the actual number of urgent documents as zero. Paradoxically, আপনি বিবরণ নিচে কসরত যদি, it shows the five urgent documents in the list. I created a very simple scenario with two documents, one in a folder and one not. Here is the screen shot:

ইমেজ

The above screen shot clearly shows there are two documents in the view but the "value" is one. The "CamlSchema" with blank document Id is in the root folder and the other is in a folder named "84".

এটি এমনকি যদিও আপনি একটি দৃশ্য নির্দিষ্ট করে আমাকে প্রদর্শিত, the KPI doesn’t honor the "show all items without folders" সেটিং এর পরিবর্তে, রুট ফোল্ডারে অবরোধ নিজেকে.

আমি ভুল করছি, আমার সম্পর্কে একটি লাইন ড্রপ বা একটি মন্তব্য করুন.

</শেষ>

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন!

Technorati বিভাগ:

সমস্যার সমাধান: “FileNotFoundException” সঙ্গে আমার বৈশিষ্ট্য রিসিভার.

I was working on a feature last week that would add some event receivers to a specific list instance. (আমি যে তালিকা রিসিভার সম্পর্কে একটি বিট এখানে ব্লগ).

কমান্ড লাইন ব্যবহার, আমি কোন ত্রুটি সঙ্গে বৈশিষ্ট্য ইনস্টল পারে (কিন্তু নিচে লুকানো ত্রুটির জন্য দেখুন). When I tried to deploy the feature on the site, MOSS complained of a "FileNotFoundException" ত্রুটি. This blog entry describes how I solved it.

এই ত্রুটি পানা ওয়েব ব্রাউজারের আমাকে দেশে:

Feature ‘b2cb42e3-4f0a-4380-aaba-1ef9cd526f20’ could not be installed because the loading of event receiver assembly "xyzzyFeatureReceiver_0" ব্যর্থ: System.IO.FileNotFoundException: Could not load file or assembly ‘xyzzyFeatureReceiver_0’ ডিপেন্ডেন্সি বা এক. সিস্টেম ফাইল উল্লিখিত না জানতে পারেন.
ফাইলের নাম: ‘xyzzyFeatureReceiver_0’
at System.Reflection.Assembly.nLoad(ফাইলের নাম AssemblyName, স্ট্রিং codeBase, প্রমাণ assemblySecurity, এসেম্বলি locationHint, StackCrawlMark& লক্ষ্য গাদা, বুলিয়ান throwOnFileNotFound, বুলিয়ান forIntrospection)
at System.Reflection.Assembly.InternalLoad(AssemblyRef AssemblyName, প্রমাণ assemblySecurity, StackCrawlMark& লক্ষ্য গাদা, বুলিয়ান forIntrospection)
at System.Reflection.Assembly.InternalLoad(পংক্তি স্ট্রিং সমাবেশ, প্রমাণ assemblySecurity, StackCrawlMark& লক্ষ্য গাদা, বুলিয়ান forIntrospection)
at System.Reflection.Assembly.Load(পংক্তি স্ট্রিং সমাবেশ)
at Microsoft.SharePoint.Administration.SPFeatureDefinition.get_ReceiverObject()
WRN: এসেম্বলি বাঁধাই লগিং বন্ধ পরিণত হয়.
থেকে সমাবেশ বাঁধাই করা ব্যর্থতা কর্মের লগ নির্মাণ করা, রেজিস্ট্রি ভ্যালু সেট [HKLM সফটওয়্যার মাইক্রোসফট Fusion!EnableLog] (DWORD) থেকে 1.
নোট: কয়েকটি কার্যকারিতা শাস্তি সমাবেশ বাঁধাই করা ব্যর্থতা লগিং সঙ্গে যুক্ত আছে.
এই বৈশিষ্ট্যটি বন্ধ করিয়া দেওয়া, রেজিস্ট্রি মান মুছে ফেলুন [HKLM সফটওয়্যার মাইক্রোসফট Fusion!EnableLog].

উইন্ডোজ SharePoint পরিষেবাদি বিষয় ট্রাবলশুট করুন.

আমি জানি কিভাবে ইচ্ছাকৃতভাবে যে ভুল হতে পারে: don’t install the assembly in the GAC. কিন্তু, it was in the GAC. I normally install assemblies into the GAC by dragging them into the c:\windows\assembly folder using windows explorer. I’ve never felt 100% আরামদায়ক যে করছেন কারণ সবসময় আমি যে gacutil কারণ লগগুলি … so I tried that. It made no difference.

আমি Internets অনুসন্ধান এবং এই পোস্ট পাওয়া গেছে: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2243677&SiteID=1

পোস্টার ঘটেছে একই কোড অর্থাৎ root বিট ব্যবহার করা (ভেতরে এই তালিকা থেকে WSS বই) so that was a hopeful sign. কিন্তু, শোভাকর সমাবেশ একটি সঙ্গে পরামর্শ [সমাবেশ: ] directive didn’t make sense to me. I tried it anyway and I was right. It made no difference.

Then I noticed that my class definition was not public. I made it public and that made no difference.

পরবর্তী, I went to the trouble of enabling the "assembly bind failure log" (নিম্নলিখিত বড় এবং সঠিক প্রদত্ত নির্দেশাবলী) and this is where things started to get interesting. That log shows me that the runtime is searching everywhere on that server for my assembly. It even appears to be searching for it in my medicine cabinet. কিন্তু … তা অনুসন্ধান করবে GAC না.

I put on my winter jacket and go searching the Internets again and find that someone has had this problem too. The lengthy discussion in that posting peters off into nothing and I can’t find a solution.

I move my assembly into one of the places the log claims it’s searching and I make a little more progress. I’m rewarded with a new error in the browser when I try to activate the feature:

Failed to create feature receiver object from assembly "xyzzyFeatureReceiver_0", type "Conchango.xyzzyFeatureReceiver" জন্য বৈশিষ্ট্য b2cb42e3-4f0a-4380-aaba-1ef9cd526f20: System.ArgumentNullException: মান বাতিল করা সম্ভব নয়.
পরামিতি ফাইলের নাম: টাইপ
at System.Activator.CreateInstance(প্রকার টাইপ, বুলিয়ান nonPublic)
at System.Activator.CreateInstance(প্রকার টাইপ)
at Microsoft.SharePoint.Administration.SPFeatureDefinition.get_ReceiverObject()

উইন্ডোজ SharePoint পরিষেবাদি বিষয় ট্রাবলশুট করুন.

এক Internets থেকে শেষ ট্রিপ জন্য সময়!

এই সময় আমি জানতে, predictably যথেষ্ট, that MOSS issues this error because the assembly is not in GAC.

আমি এই কিছু ইতিবাচক এবং পেতে একটু গর্বিত যে আমি তৈরী করেছি যেটা মনে চেষ্টা করতে চান MSIL assemblies এর পলায়নপর, but it’s not working. I’m just plain annoyed. I find myself muttering "chicken or the egg" অধীন আমার দম.

I finally decide to punt. I create an entirely new project and copy/paste the code from the incredible-cloaked-from-the-GAC-assembly non-working project over to this new project. (I look for a build flag called something like "hide from assembly binding if installed in the GAC" কিন্তু এক না জানতে পারেন).

আমি বৈশিষ্ট্য ইনস্টল করা এবং তা সক্রিয় করা এবং … এটি কাজ করে! সুতরাং, পরে সমস্ত যে, I had to basically ‘reboot’ my project. এটি আরেকটি কারণ আমি কম্পিউটার ঘৃণা.

I did learn something useful from this. I had been installing features using the stsadm command line all day long and been using the "-force" option out of habit. কিছু কারণে, I did not use the -force option when I installed the new project. এইবার, আমি আসলে করেনি, truly forget to copy this new project’s assembly into the GAC. ফলে, I received that "FielNotFoundException" ত্রুটি. এইবার, আমি stsadm থেকে এটা পেয়েছিলাম, not when I tried to activate the feature via the web browser. সুতরাং, -force actually plays two roles. It allows you to re-install an existing feature. It also allows you to install a buggy feature that cannot work at runtime by suppressing the error. It probably says as much in the help somewhere but I never noticed it.

</শেষ>

দ্রুত & সহজ: আপলোড করা ফাইল একটি ইভেন্ট রিসিভার মাধ্যমে SharePoint অবজেক্ট মডেল ব্যবহার পুনঃনামকরণ

আপডেট: This works but there are significant limitations which are described in the comments. This may still be useful in some cirumstances.

আপডেট 2: আমার বর্তমান প্রকল্প, users always upload documents. ফলে, I don’t run into a problem where MS Word is running and thinks that the file was renamed on it. I did run into a problem, "the file was modified by someone else" and solved this via a simple semaphore type flag. Users need to change a meta data field from its default value to something else. The itemupdated() একটি বৈধ মান জন্য রিসিভার দেখায় সেখানে আসলে নামান্তর সঞ্চালনের পূর্বে এবং তদবধি, I have not had any problems. Your mileage may vary.

I have a client requirement to change the name of files uploaded to a specific document library to conform with a particular naming convention. The API does not provide a "rename()" পদ্ধতি. পরিবর্তে, আমরা ব্যবহার "MoveTo(…)". Here is a minimal bit of code to accomplish this:

 জনসাধারণের অগ্রাহ্য করা অনধিকৃত ItemAdded(SPItemEventProperties বৈশিষ্ট্য)
        {
            Spfile চ = properties.ListItem.File;

            f.MoveTo(properties.ListItem.ParentList.RootFolder.Url + "/xyzzy.doc");
            f.Update();

        }

The only tricky bit is the "properties.ListItem.ParentList.RootFolder.Url". The MoveTo() method requires a URL. That mashed up string points me to the root folder of my current document library. This allows me to avoid any hard coding in my event receiver.

এটি একটি কার্যকর সংস্করণ যে একই জিনিস না, but assigns the name of the file to "Title":

 জনসাধারণের অগ্রাহ্য করা অনধিকৃত ItemAdded(SPItemEventProperties বৈশিষ্ট্য)
        {
            DisableEventFiring();

            // ফাইল নিজেই নামের এই আইটেমটি শিরোনাম ধার্য করুন.
 // উল্লেখ্য: এই নিয়োগ সঞ্চালিত আগে আমরা ফাইল নিজেকে পরিবর্তন করা আবশ্যক.
 // আপডেট কলিং() SPFile উপর মধ্যে সম্পত্তি মনে অসিদ্ধ
 // কিছু জ্ঞান.  Updates to "Title" যে পরিবর্তন পর্যন্ত ব্যর্থ (এবং আপডেট() কল)
 // পরিবর্তন সামনে ফাইলের নাম থেকে সরানো হয়েছে.
            properties.ListItem["Title"] = Properties.ListItem.File.Name;

            properties.ListItem.Update();

            Spfile চ = properties.ListItem.File;

            // ফাইলের এক্সটেনশান পান.  আমরা যে পরে প্রয়োজন.
 স্ট্রিং spfileExt = নতুন ফাইল তথ্য(f.Name).প্রসার;

            // তালিকার আইটেম এর ID-র ফাইল এবং পুনঃনামকরণ ফাইল এক্সটেনশন রাখতে ব্যবহার
 // এটা যে অংশ অক্ষত.
            f.MoveTo(properties.ListItem.ParentList.RootFolder.Url +
                "/" + properties.ListItem["ID"] + spfileExt);

            // পদক্ষেপ করা.
            f.Update();

            EnableEventFiring();
        }

দ্রুত টিপ: বিষয়বস্তু প্রশ্নের ওয়েব পার্ট, কলাম মূল্য এবং XSL দেখুন

আমি একটি কনটেন্ট টাইপ যার নাম "আবাসন অবস্থান" একটি কলামের নাম আছে.

যে কলামের ধরণ "লুকআপ" হল.

আমি পরিবর্তন করেছি <CommonViewFields> এবং ItemStyle.xsl প্রদর্শন কলামে.

সহজ <xsl:মান-এর = নির্বাচন…> অভ্যন্তরীণ মান যে পূরণবাচক অবস্থান তথ্য অন্তর্ভুক্ত ফিরে ফেরত্, যেমন:

1;#মিয়ামি

মানুষের বন্ধু মান পাওয়া, xsl সাবস্ট্রিং-পরে ব্যবহার, চিত্রের:

<xsl:valuxslf সিলেক্ট = "সাবস্ট্রিং-পরে(@ Real_x005F_x0020_Estate_x005F_x0020_Location,'#')"></xsl:মান-এর>

এই টেকনিক যখনই আপনি XSL রূপান্তরিত মধ্যে লুকআপ মান এবং কাজ করতে মানব বন্ধুত্বপূর্ণ মান প্রয়োজন ব্যবহার.

<শেষ />

Technorati বিভাগ: , ,

দ্রুত এবং সহজ: অভ্যন্তরীণ একটি সাইটের কলামের কলাম নামের নির্ধারণ

আপডেট: জেরেমি Thake এই বিষয়ে এবং ব্লগে করা কিছু আপ হয়েছে একটি কনসোল অ্যাপ্লিকেশন জন্য কোড যে অভ্যন্তরীণ নাম দেখায়.

আমি একটা বিষয়বস্তু প্রশ্ন ওয়েব অংশ থেকে একটি একটি টাস্ক থেকে নির্দিষ্ট তারিখ প্রদর্শন পেতে চেষ্টা এবং কারণ পর্দা লেবেল হল "নির্ধারিত মেয়াদ" ছিল, আমি কপট যে কলামের নাম ব্যবহারের জন্য <CommonViewFields> হল "Due_x0020_Date".

ভুল!

বাস্তব এই ক্ষেত্রে কলামের নাম ছিল "DueDate".

কিভাবে আমি তা খুঁজে? I re-read Heather সলোমন এর CQWP পরিবর্তন ব্লগে ভুক্তি to show additional columns of data. She describes this process at step #13. Trust it. It’s correct. অন্তত, it was correct for me. I did not trust it at first for another column with a much longer name.

আমি বলে "এটি আস্থা" because I did not trust it and probably wasted near two hours butting my head up against a wall. After I resolved the "DueDate" নাম, আমি অন্য একটি ক্ষেত্র যোগ চেয়েছিলেন <CommonViewFields>. Using the Solomon technique, আমি মত "XYZ_x0020_Project_x0020_Due_x00" ছিল একটি কলামের নাম পাওয়ার.

আমি নিজেকে করার চিন্তা, that’s clearly a truncated name. I went ahead and un-truncated it with no success. I finally used the seemingly truncated name and it worked.

বোনাস ডগা: যখন আমি CQWP সঙ্গে কাজ ছিল, যদি আমি একটা খারাপ অভ্যন্তরীণ নাম যোগ করা <CommonViewFields>, the CQWP would tell me that the query had returned no results. কিন্তু, যদি আমি ক্ষেত্রের নামের একটি ডাটা টাইপ যোগ, it would return a result. Adding the data type actually masked a problem since I was referencing a non-existent field. I could add it, কিন্তু যখন আমি তার মান প্রদর্শন চেষ্টা, I would always get a blank.

এই ত্রুটি করেনি মাস্ক না:

<CommonViewFields>Due_x0020_Date;</CommonViewfields>

এই ত্রুটি করেনি মাস্ক:

<CommonViewFields>Due_x0020_Date,DateTime;</CommonViewfields>

</শেষ>