Tuesday, November 23, 2004 8:11 PM Jan Tielens

SmartPart for SharePoint Version 1.0.0.0 Released

Finally I’ve managed to finish a new release for the SmartPart for SharePoint; version 1.0.0.0. This release has some really cool new features, but I'm really excited about the first one: connectable web parts with ASP.NET user controls!

  • Create connectable web parts
    In SharePoint you can connect web parts, so they can exchange data. For example you could create a web part that displays a list of invoices, and another web part that displays the details of the selected invoice (master/detail view). Normally you’d have to create your Invoice and InvoiceDetails web parts by hand, implementing the ICellProvider and ICellConsumer interfaces (see Patrick’s excellent article about this topic). With the new version of the SmartPart you can do the same, but instead of coding everything by hand, you can create ASP.NET user controls! Just implement the ICellProviderUserControl or ICellConsumerUserControl on your user control, and you’re done.
  • CAS Optimization
    Maxim Karpov did a great job on fine-tuning the Code Access Security for the SmartPart. For running the previous versions of the SmartPart, you’d had to increase the trust level in the web.config to WSS_Medium. In this version this is not required anymore. Of course if your user controls require a higher trust level, you can raise the trust level as usual.
  • Hiding the user control selection
    Once you’re finished building your user controls, maybe you’d want to ship the finished web parts/user controls to a customer for example. In that case you don’t want the user to select the user controls from the dropdown listbox of the SmartPart, or filling out the user control name by hand. With the new version of the SmartPart you can create a DWP file which contains all the settings for an instance of the SmartPart showing a specific user control. The nice part is that you can hide the dropdown listbox or textbox for selecting the user control by adding the following node in the DWP after you’ve exported an instance of the SmarPart: <ShowUserControlList xmlns="SmartPart">false</ShowUserControlList>.

You can download the latest version from the Releases section on the GotDotNet Workspace. In the coming days I’ll create an example for each of the new features. Additionally keep an eye on Maxim’s blog, he has promised a post about the CAS issues. Also make sure you’ve read Readme file before deploying the SmartPart, since you now have two deployment scenarios (in the GAC or not). Of course if you have any comments, problems, questions, … let me know!

Filed under:

Comments

# Alcuni ottimi articoli su SharePoint

Tuesday, November 23, 2004 10:02 AM by TrackBack

# SmartPart for SharePoint released

Tuesday, November 23, 2004 10:30 AM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Tuesday, November 23, 2004 4:00 PM by Patrick Tisseghem

Proud of you! Good job! May the force be with you!

# SmartPart for SharePoint Version 1.0.0.0 Released

Tuesday, November 23, 2004 6:45 PM by TrackBack

# SmartPart for SharePoint Version 1.0.0.0 est LA !!!!

Tuesday, November 23, 2004 10:22 PM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, November 24, 2004 12:37 AM by Arno Nel (Sharepoint Guy)

Great stuff Jan, ill be sure to check it out !

# SharePoint SmartPart v1.0.0.0 released

Wednesday, November 24, 2004 3:51 AM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, November 24, 2004 7:07 AM by Michael Christensen

Apparently no documentation exists for upgrading SmartParts which are already in use (without removing and re-adding them to the pages where they are used, which is quite impractical if you have thousands of instances spanning hundreds of users :-)

So I thought I would share what I did (as it is a bit tricky):

- remove old SmartPart.dll from GAC
- install new SmartPart.dll to GAC
- ensure the presence of SafeControl entries for both versions in Sharepoint web.config, like this:
<SafeControl Assembly="SmartPart, Version=0.2.0.1, Culture=neutral, PublicKeyToken=dd064a5b12b5277a" Namespace="SmartPart" TypeName="*" Safe="True" />
<SafeControl Assembly="SmartPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=dd064a5b12b5277a" Namespace="SmartPart" TypeName="*" Safe="True" />

- set up Assembly Redirection from old versions to 1.0.0.0, as seen here
http://totalannihilation.dk/temp/smartpart_upgrade.png

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, November 24, 2004 12:20 PM by Mads

That's it. I'm throwing away our implementation of the "UserControlHost".. SmartPart is the way. Great work guys!

# SmartPart v1.0

Wednesday, November 24, 2004 2:56 PM by TrackBack

One of my favorite SharePoint developers (and also one of the first people to jump in and offer to help with our Virtual SharePoint User Group), Jan Tielens has released version 1.0 of his SmartPart. SmartPart is a way to bring your ASP.net controls into...

# SmartPart for SharePoint v1

Thursday, November 25, 2004 2:31 AM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, November 25, 2004 4:19 AM by Mike Walsh Helsinki

Jan, should this go into the "Free WSS Web Parts" section (08.xx) part of the WSS FAQ's section VII or the "Free WSS-relevant programs" section (10.xx)?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, November 25, 2004 4:45 AM by Mike Walsh Helsinki

Jan, should this go into the "Free WSS Web Parts" section (08.xx) part of the WSS FAQ's section VII or the "Free WSS-relevant programs" section (10.xx)?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Saturday, November 27, 2004 9:30 AM by Tom

Nice work Jan. :-)

# Release: SmartPart for SharePoint

Tuesday, November 30, 2004 7:16 AM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Tuesday, November 30, 2004 1:14 PM by Daniel McPherson

Congratulations Jan, seriously good work...

# SmartPart for Sharepoint V1 Release

Tuesday, November 30, 2004 11:23 PM by TrackBack

# SmartPart for Sharepoint V1 Release

Tuesday, November 30, 2004 11:25 PM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Friday, December 03, 2004 9:15 AM by John Meyers

I might miss something but I cannot find the source code on GotDotNet. Any clues?

# SmartPart Architecture and Code Access Security (CAS)

Sunday, December 05, 2004 7:15 PM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Sunday, December 05, 2004 11:20 PM by Maxim V. Karpov

Hi guys,

Finally, I finished detailed article about SmartParts and CAS. I also released SmartPart Developer toolkit, but you have to register in order to download it.

details at http://ipattern.com/simpleblog/PermLink.aspx?entryid=68

Maxim
[www.ipattern.com do you?]

# Microsoft Silent on the SmartPart

Monday, December 06, 2004 5:36 PM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Tuesday, December 07, 2004 11:07 AM by Anthony Zoko

I can't seem to get the download from either the GotDotNet workspaces or http://faithinteractive.com/ even after logging in. Is there another link?
Thanks in advance.

# Test Driven SmartPart Development

Wednesday, December 08, 2004 8:02 AM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, December 08, 2004 8:07 AM by Remco Ploeg

I can't download the smartpart! i cannot find it anymore at gotdotnet, is it moved?

thanks

# Test Driven SmartPart Development

Wednesday, December 08, 2004 8:40 AM by TrackBack

# Test Driven SmartPart Development

Wednesday, December 08, 2004 9:50 AM by TrackBack

# Test Driven SmartPart Development

Wednesday, December 08, 2004 9:58 AM by TrackBack

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, December 08, 2004 3:11 PM by Tom

I can load the WebPart on a page, but when I then click on it, I get errors that say:

Error: unable to load ~\UserControls\DropDownNavigation.ascx
Details: Parser Error: Could not load type 'DropDownNavigation.DropDownNavigation'

Sorry to be so thick about this...

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Friday, December 10, 2004 10:26 AM by boney-M

Excellent

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, December 16, 2004 8:29 AM by Angelo

I got the same error as Tom has. In my situation I get this error when I deploy the application to another site as the main site.
On the main site it works. When you have more than 1 sites on a server it seems that I get that error. Any suggestions? Perhaps some kind of hard-coded paths?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Saturday, December 18, 2004 2:19 PM by Roger

I too am having the same issue as Angelo and Tom but it's for a custom user control on a single server with multiple portals.

The setup is 2 porals and the default website on 1 server. I ended up putting my assembly in c:\inetpub\wwwroot\bin even though my test portal is at d:\wwwroot\sppstest and have the control in d:\wwwroot\sppstest\usercontrols\mycontrol.ascx. When I try to set the location in the SmartPart to ~\UserControls\mycontrol.ascx and apply, I get 'Parser Error: Could not load type mycontrol.mycontrol'.

Is this because of my setup, like Angelo suggests?

Thanks,
Roger

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, December 22, 2004 9:47 PM by aaron

Im not convinced, the whole thing is pretty confusing if you are just following the directions right out of the installation package. Wont load type errors abound

# Web part development, SmartPart, roadmap, and looking down the road

Thursday, December 30, 2004 11:46 AM by TrackBack

# SmartPart v.next idea... more control over exposed properties in the tool pane

Saturday, January 08, 2005 3:47 AM by TrackBack

# Sharepoint SmartPart - add ASCX controls to your WSS site

Tuesday, March 15, 2005 9:10 PM by TrackBack

I've recently discovered there is a WebPart capable to include ASCX controls. As&nbsp;I have personally...

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, July 13, 2006 6:21 AM by max

скачать не могу smartpart с http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=6cfaabc8-db4d-41c3-8a88-3f974a7d0abe  

очень хоЦЦа. Че делать?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, August 09, 2006 5:47 PM by Yogi Drew

Parser Error:

There are lots of discussions about the Parser Error and no fixes, it could be because the problem seems to appear for no apperent reason and sometimes can be fixed with a simple iisreset.

I ran into this issue after the server had a problem connecting to a backend SQL server. I tried everything to resolve it and finally just ran an iisreset and the problem went away? Took me 2 hours to try the iisreset because it is a production server and I was leary to do it during work hours, but it solved the problem.

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, September 06, 2006 5:08 AM by Marco Caruso

Has Anyone tryed to build the WebUserControl using a ComponentArt component?(Grid or whatever).. (check it out www.componentart.com )

Maybe The SmartPant doesnt support  this component..I've copied the componentpart.dll too under /bin on sharepoint together with the WebUserControl.dll created at compile time on DotNet

Any suggestions?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, September 06, 2006 9:46 AM by Marco Caruso

Has Anyone also tryed to instance and use a SQL connection and display items into a simple DataGrid?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, September 21, 2006 3:43 PM by sachin

Hi,

Any help would be appreciated..

Following are the steps I have taken to create the Web Part and deploy it ..

1)       Created a web project in VS Studio .net as web part library

2)       Left it simple to print "Hello World !"

3)       Strong named it (using sn.exe)

4)       Modified the assemblyInfo.vb to take the key and strong named Assembly

5)       Registered the assembly in the GAC [SharePoint]

6)       Changed the web.config file on the SharePoint.

<SafeControl Assembly="CustomWebPart, Version=2.34.45.20, Culture=neutral, PublicKeyToken=29ea4fafbc384fad" Namespace="CustomWebPart.newCustomWebPart" TypeName="*" Safe="True"/>

newCustomWebPart is the name of the class.

I also tried with creating a new set of security policy and creating a custom trust level but that doesn't work as the way it is set up here is that the trust level is set to "Full"

It give me an error.

A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this site as safe.

--

Thanks,

Sachin

sachinup@gmail.com

404.384.0111

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Monday, September 25, 2006 12:53 AM by Boyd Collins

I have been using SmartPart for about a week now, but have run into an issue that I can't solve.  I need to read an XML file in the user control that the SmartPart is using, but for some reason the SmartPart can't access the xml file.  I have tried installing the SmartPart in the GAC and I am creating the path to the XML file dynamically relative to the location of the user control.  I have tried copying it to UserControls, wpresources, and bin with no luck.  What is the secret to accessing a file?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Monday, October 02, 2006 8:30 AM by Stanley

Hi,

i am trying the Smartpart  example about the calendar with the events list. However when adding the following code:

private Microsoft.SharePoint.SPWeb _web;

The intellisence cannot find the SharePoint part. I have added a reference to the SmartPart assembly.

So i added the Microsoft.Sharepoint.dll itself to the reference. But this gives an error when i use the webpart on the teamsite. I guess this is because there is no reference to the sharepoint site as i am not using the "sharepoint version" of the smartpart but the sharepoint dll directly. How can i make above syntax work?

Thanks in advance.

Regards,

Stanley

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Friday, October 20, 2006 3:06 PM by Debbie

All the images I have in the user control do not show up in the smartpart when deployed to Sharepoint. The User Control works but the images are not showing up. Why?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, December 14, 2006 11:15 AM by John

For all of you having the parser errors, check your IIS web.config file and set the trust level to Full. Look for a line which looks like

<trust level="WSS_Medium" originUrl="" />

or

<trust level="WSS_Minimal" originUrl="" />

and change it to

<trust level="Full" originUrl="" />

then run iisreset and everything should work fine. I've been using smartpart for a long time now and it works like a charm.

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Friday, December 15, 2006 6:13 AM by sachin

Hi

when i tried installing Smartpart 1.0.0.0 i encountered an error. The log file shows following message

"Error while installing from smartpart for sharepoint 1.0.0.0" .Invalid virtual server'someservername'.

The server instance specified was not found.Unable to install package to any virtual servers

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, January 18, 2007 10:20 AM by MylesRip

Thanks for the great work, Jan!  I'm trying to evaluate the possibilities of using SmartPartv3 and what limitations we might need to consider.  I get an error when I try to have SmartPart host a ReportViewer control.  Why is this, and are there other ASP.NET 2.0 controls that it has difficulty hosting?  Thanks in advance!

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Saturday, March 10, 2007 6:19 AM by Jane

<a href="http://ersmart.info/philvassar/">phil vassar</a>

<a href="http://ersmart.info/clipperhotellepitrepointe&#224;/">clipper hotel le pitre pointe &#224;</a>

[URL=http://ersmart.info/bachatavideo/]bachata video[/URL]

<a href="http://ersmart.info/gifkbbspacer/">gif kbb spacer</a>

[URL=http://ersmart.info/sisqomusic/]sisqo music[/URL]

<a href="http://ersmart.info/bonjoviticket/">bon jovi ticket</a>

<a href="http://ersmart.info/campershell/">camper shell</a>

<a href="http://ersmart.info/bmwoakland/">bmw oakland</a>

[URL=http://ersmart.info/concertmorrisseyticket/]concert morrissey ticket[/URL]

<a href="http://ersmart.info/footkrutchthousand/">foot krutch thousand</a>

<a href="http://ersmart.info/mercedesbenzoffortlauderdale/">mercedes benz of fort lauderdale</a>

<a href="http://ersmart.info/ovulationcalculator/">ovulation calculator</a>

[URL=http://ersmart.info/musiccamron/]music camron[/URL]

[URL=http://ersmart.info/directiondrivingmapquestusa/]direction driving mapquest usa[/URL]

[URL=http://ersmart.info/demfranchiseboyz/]dem franchise boyz[/URL]

<a href="http://ersmart.info/brycedallashoward/">bryce dallas howard</a>

[URL=http://ersmart.info/concertluismiguelticket/]concert luis miguel ticket[/URL]

<a href="http://ersmart.info/dwyanewade/">dwyane wade</a>

<a href="http://ersmart.info/cokedietmentos/">coke diet mentos</a>

[URL=http://ersmart.info/usedcarscranton/]used car scranton[/URL]

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Friday, March 23, 2007 9:07 AM by Lucy! Please call me,Jonny

Lucy! Please call me,Lucy! Please call me

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Saturday, April 14, 2007 12:58 AM by Britneykrcey

<a href= http://www.angelfire.com/poetry/mokyja >a-z of body muscles</a> <a href= http://www.angelfire.com/goth/qymoky >a distro xdcc</a> <a href= http://www.angelfire.com/droid/puluxe >a touch of class painting</a> <a href= http://www.angelfire.com/funky/gerolu >a1vacation</a> <a href= http://www.angelfire.com/goth/dezyne >a candidate key may be a concatenated key</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, April 26, 2007 12:44 AM by Britneyrmkhy

<a href= http://www.angelfire.com/blog/qisigo >a work of artifice explanation</a> <a href= http://www.angelfire.com/punk/tyhyro >a welcome burden</a> <a href= http://www.angelfire.com/indie/xasudo >a/c cobras ford sale</a> <a href= http://www.angelfire.com/poetry/cigowi >a subsidiary company</a> <a href= http://www.angelfire.com/blog/hubyla >a aim profile</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, April 26, 2007 8:01 PM by Britneywixlh

<a href= http://www.angelfire.com/blog/vokoxu >aar dirty little secret</a> <a href= http://www.angelfire.com/planet/jobupa >aardvark lx6 drivers</a> <a href= http://www.angelfire.com/funky/biwedu >a1.com data mining.info site</a> <a href= http://www.angelfire.com/hiphop/kaqena >aafes post exchange</a> <a href= http://www.angelfire.com/planet/zoroku >a whiter shade of</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Thursday, April 26, 2007 8:01 PM by Britneyuynlq

<a href= http://www.angelfire.com/punk/sycyjo >a good night song for baby</a> <a href= http://www.angelfire.com/indie/boribe >aaron hale lyrics</a> <a href= http://www.angelfire.com/indie/juqaxe >a crow left of the murder incubus lyrics</a> <a href= http://www.angelfire.com/goth/totiwu >aacc 2005 nepal</a> <a href= http://www.angelfire.com/funky/zasono >aac file format</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Wednesday, May 02, 2007 12:23 PM by Oligarh

<a href=" http://fergie.ovp.pl ">fergie ringtones</a>

<a href=" http://realr.ovp.pl ">free real ringtones</a>

<a href=" http://eminem.ovp.pl ">eminem ringtone</a>

<a href=" http://downmp.ovp.pl ">download mp3 ringtones</a>

<a href=" http://fsprint.ovp.pl ">free sprint ringtone</a>

<a href=" http://lohan.ovp.pl ">lindsay lohan ringtones</a>

<a href=" http://verizond.ovp.pl ">verizon ringtones</a>

<a href=" http://dowfr.ovp.pl ">download free ringtones</a>

<a href=" http://nexring.ovp.pl ">nextel ringtone</a>

<a href=" http://cricket.ovp.pl ">cricket ringtone</a>

<a href=" http://tmobile.ovp.pl ">free t mobile ringtone</a>

<a href=" http://fcingr.ovp.pl ">free cingular ringtones</a>

<a href=" http://spears.ovp.pl ">britney spears ringtones</a>

<a href=" http://sprintr.ovp.pl ">ringtone sprint</a>

<a href=" http://fmpr.ovp.pl ">free mp3 ringtones</a>

<a href=" http://nextelf.ovp.pl ">download nextel ringtones</a>

<a href=" http://freedf.ovp.pl ">free ringtone download</a>

<a href=" http://funnys.ovp.pl ">funny ringtones</a>

<a href=" http://blackberry.ovp.pl ">blackberry free ringtones</a>

<a href=" http://akon.ovp.pl ">akon ringtones</a>

<a href=" http://realtones.ovp.pl ">download realtones</a>

<a href=" http://lopez.ovp.pl ">jennifer lopez ringtone</a>

<a href=" http://korean.ovp.pl ">korean ringtone</a>

<a href=" http://hiphop.ovp.pl ">hip hop ringtones</a>

<a href=" http://ringtonep.ovp.pl ">ringtone progam</a>

<a href=" http://create.ovp.pl ">create ringtone</a>

<a href=" http://freemot.ovp.pl ">free ringtone motorola</a>

<a href=" http://shakira.ovp.pl ">shakira ringtone</a>

<a href=" http://tmobiler.ovp.pl ">t-mobile ringtones</a>

<a href=" http://alltel.ovp.pl ">alltel ringtones</a>

<a href=" http://nokiad.ovp.pl ">download nokia ringtone</a>

<a href=" http://crazy.ovp.pl ">crazy frog ringtone</a>

<a href=" http://country.ovp.pl ">country ringtones</a>

<a href=" http://cricketa.ovp.pl ">free cricket ringtone</a>

<a href=" http://rdownl.ovp.pl ">ringtone download</a>

<a href=" http://ringfs.ovp.pl ">ringtone for sprint</a>

<a href=" http://maker.ovp.pl ">free ringtone maker</a>

<a href=" http://nokias.ovp.pl ">free ringtone for nokia</a>

<a href=" http://ctur.ovp.pl ">ctu ringtones</a>

<a href=" http://jamster.ovp.pl ">jamster</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Friday, May 04, 2007 7:17 PM by adult toys for sale,http://escena.ya.com/tekuv/kim/index.html <a href="http://escena.ya.com/tekuv/kim/index.html">buy sex toys</a> http://escena.ya.com/tekuv/kim/12-01.html <a href="http://escena.ya.com/tekuv/kim/12-01.html">amateur porn</a> http://escena.ya.com/tekuv/kim/12-02.html <a href="http://escena.ya.com/tekuv/kim/12-02.html">anal sex</a> http://escena.ya.com/tekuv/kim/12-03.html <a href="http://escena.ya.com/tekuv/kim/12-03.html">asian porn</a> http://escena.ya.com/tekuv/kim/12-04.html <a href="http://escena.ya.com/tekuv/kim/12-04.html">bbw sex</a> http://escena.ya.com/tekuv/kim/12-05.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality pictures</a> http://escena.ya.com/tekuv/kim/12-06.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality dvd</a> http://escena.ya.com/tekuv/kim/12-07.html <a href="http://escena.ya.com/tekuv/kim/12-07.html">big dicks</a> http://escena.ya.com/tekuv/kim/12-08.html <a href="http://escena.ya.com/tekuv/kim/12-08.html">big ***</a> http://escena.ya.com/tekuv/kim/12-09.html <a href="http://escena.ya.com/tekuv/kim/12-09.html">black sex</a> http://escena.ya.com/tekuv/kim/12-10.html <a href="http://escena.ya.com/tekuv/kim/12-10.html">pornstar video</a> http://escena.ya.com/tekuv/kim/12-11.html <a href="http://escena.ya.com/tekuv/kim/12-11.html">brunettes porn</a> http://escena.ya.com/tekuv/kim/12-12.html <a href="http://escena.ya.com/tekuv/kim/12-12.html">bukkake pictures</a> http://escena.ya.com/tekuv/kim/12-13.html <a href="http://escena.ya.com/tekuv/kim/12-13.html">buy cialis</a> http://escena.ya.com/tekuv/kim/12-14.html <a href="http://escena.ya.com/tekuv/kim/12-14.html">cumshot sex</a> http://escena.ya.com/tekuv/kim/12-15.html <a href="http://escena.ya.com/tekuv/kim/12-15.html">sex dating</a> http://escena.ya.com/tekuv/kim/12-16.html <a href="http://escena.ya.com/tekuv/kim/12-16.html">porn dvd</a> http://escena.ya.com/tekuv/kim/12-17.html <a href="http://escena.ya.com/tekuv/kim/12-17.html">ebony sex</a> http://escena.ya.com/tekuv/kim/12-18.html <a href="http://escena.ya.com/tekuv/kim/12-18.html">femdom porn</a> http://escena.ya.com/tekuv/kim/12-19.html <a href="http://escena.ya.com/tekuv/kim/12-19.html">fisting sex</a> http://escena.ya.com/tekuv/kim/12-20.html <a href="http://escena.ya.com/tekuv/kim/12-20.html">footjobs porn</a> http://escena.ya.com/tekuv/kim/12-21.html <a href="http://escena.ya.com/tekuv/kim/12-21.html">gangbang sex</a> http://escena.ya.com/tekuv/kim/12-22.html <a href="http://escena.ya.com/tekuv/kim/12-22.html">granny porn</a> http://escena.ya.com/tekuv/kim/12-23.html <a href="http://escena.ya.com/tekuv/kim/12-23.html">handjobs sex</a> http://escena.ya.com/tekuv/kim/12-24.html <a href="http://escena.ya.com/tekuv/kim/12-24.html">incest porn</a> http://escena.ya.com/tekuv/kim/12-25.html <a href="http://escena.ya.com/tekuv/kim/12-25.html">indian porn</a> http://escena.ya.com/tekuv/kim/12-26.html <a href="http://escena.ya.com/tekuv/kim/12-26.html">interracial sex</a> http://escena.ya.com/tekuv/kim/12-27.html <a href="http://escena.ya.com/tekuv/kim/12-27.html">latina porn</a> http://escena.ya.com/tekuv/kim/12-28.html <a href="http://escena.ya.com/tekuv/kim/12-28.html">lesbians sex</a> http://escena.ya.com/tekuv/kim/12-29.html <a href="http://escena.ya.com/tekuv/kim/12-29.html">buy levitra</a> http://escena.ya.com/tekuv/kim/12-30.html <a href="http://escena.ya.com/tekuv/kim/12-30.html">live sex chat</a> http://escena.ya.com/tekuv/kim/12-31.html <a href="http://escena.ya.com/tekuv/kim/12-31.html">mature porn</a> http://escena.ya.com/tekuv/kim/12-32.html <a href="http://escena.ya.com/tekuv/kim/12-32.html">group sex</a> http://escena.ya.com/tekuv/kim/12-33.html <a href="http://escena.ya.com/tekuv/kim/12-33.html">pantyhose sex</a> http://escena.ya.com/tekuv/kim/12-34.html <a href="http://escena.ya.com/tekuv/kim/12-34.html">pissing girls</a> http://escena.ya.com/tekuv/kim/12-35.html <a href="http://escena.ya.com/tekuv/kim/12-35.html">preggo porn</a> http://escena.ya.com/tekuv/kim/12-36.html <a href="http://escena.ya.com/tekuv/kim/12-36.html">rape video</a> http://escena.ya.com/tekuv/kim/12-37.html <a href="http://escena.ya.com/tekuv/kim/12-37.html">redheads sex</a> http://escena.ya.com/tekuv/kim/12-38.html <a href="http://escena.ya.com/tekuv/kim/12-38.html">scat sex</a> http://escena.ya.com/tekuv/kim/12-39.html <a href="http://escena.ya.com/tekuv/kim/12-39.html">sextoys for sale</a> http://escena.ya.com/tekuv/kim/12-40.html <a href="http://escena.ya.com/tekuv/kim/12-40.html">shemales sex</a> http://escena.ya.com/tekuv/kim/12-41.html <a href="http://escena.ya.com/tekuv/kim/12-41.html">teen porn</a> http://escena.ya.com/tekuv/kim/12-42.html <a href="http://escena.ya.com/tekuv/kim/12-42.html">hardcore toons</a> http://escena.ya.com/tekuv/kim/12-43.html <a href="http://escena.ya.com/tekuv/kim/12-43.html">twink sex</a> http://escena.ya.com/tekuv/kim/12-44.html <a href="http://escena.ya.com/tekuv/kim/12-44.html">buy viagra</a> http://escena.ya.com/tekuv/kim/12-45.html <a href="http://escena.ya.com/tekuv/kim/12-45.html">voyeur porn</a>

http://escena.ya.com/tekuv/kim/index.html <a href="http://escena.ya.com/tekuv/kim/index.html">buy sex toys</a>

http://escena.ya.com/tekuv/kim/12-01.html <a href="http://escena.ya.com/tekuv/kim/12-01.html">amateur porn</a>

http://escena.ya.com/tekuv/kim/12-02.html <a href="http://escena.ya.com/tekuv/kim/12-02.html">anal sex</a>

http://escena.ya.com/tekuv/kim/12-03.html <a href="http://escena.ya.com/tekuv/kim/12-03.html">asian porn</a>

http://escena.ya.com/tekuv/kim/12-04.html <a href="http://escena.ya.com/tekuv/kim/12-04.html">bbw sex</a>

http://escena.ya.com/tekuv/kim/12-05.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality pictures</a>

http://escena.ya.com/tekuv/kim/12-06.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality dvd</a>

http://escena.ya.com/tekuv/kim/12-07.html <a href="http://escena.ya.com/tekuv/kim/12-07.html">big dicks</a>

http://escena.ya.com/tekuv/kim/12-08.html <a href="http://escena.ya.com/tekuv/kim/12-08.html">big ***</a>

http://escena.ya.com/tekuv/kim/12-09.html <a href="http://escena.ya.com/tekuv/kim/12-09.html">black sex</a>

http://escena.ya.com/tekuv/kim/12-10.html <a href="http://escena.ya.com/tekuv/kim/12-10.html">pornstar video</a>

http://escena.ya.com/tekuv/kim/12-11.html <a href="http://escena.ya.com/tekuv/kim/12-11.html">brunettes porn</a>

http://escena.ya.com/tekuv/kim/12-12.html <a href="http://escena.ya.com/tekuv/kim/12-12.html">bukkake pictures</a>

http://escena.ya.com/tekuv/kim/12-13.html <a href="http://escena.ya.com/tekuv/kim/12-13.html">buy cialis</a>

http://escena.ya.com/tekuv/kim/12-14.html <a href="http://escena.ya.com/tekuv/kim/12-14.html">cumshot sex</a>

http://escena.ya.com/tekuv/kim/12-15.html <a href="http://escena.ya.com/tekuv/kim/12-15.html">sex dating</a>

http://escena.ya.com/tekuv/kim/12-16.html <a href="http://escena.ya.com/tekuv/kim/12-16.html">porn dvd</a>

http://escena.ya.com/tekuv/kim/12-17.html <a href="http://escena.ya.com/tekuv/kim/12-17.html">ebony sex</a>

http://escena.ya.com/tekuv/kim/12-18.html <a href="http://escena.ya.com/tekuv/kim/12-18.html">femdom porn</a>

http://escena.ya.com/tekuv/kim/12-19.html <a href="http://escena.ya.com/tekuv/kim/12-19.html">fisting sex</a>

http://escena.ya.com/tekuv/kim/12-20.html <a href="http://escena.ya.com/tekuv/kim/12-20.html">footjobs porn</a>

http://escena.ya.com/tekuv/kim/12-21.html <a href="http://escena.ya.com/tekuv/kim/12-21.html">gangbang sex</a>

http://escena.ya.com/tekuv/kim/12-22.html <a href="http://escena.ya.com/tekuv/kim/12-22.html">granny porn</a>

http://escena.ya.com/tekuv/kim/12-23.html <a href="http://escena.ya.com/tekuv/kim/12-23.html">handjobs sex</a>

http://escena.ya.com/tekuv/kim/12-24.html <a href="http://escena.ya.com/tekuv/kim/12-24.html">incest porn</a>

http://escena.ya.com/tekuv/kim/12-25.html <a href="http://escena.ya.com/tekuv/kim/12-25.html">indian porn</a>

http://escena.ya.com/tekuv/kim/12-26.html <a href="http://escena.ya.com/tekuv/kim/12-26.html">interracial sex</a>

http://escena.ya.com/tekuv/kim/12-27.html <a href="http://escena.ya.com/tekuv/kim/12-27.html">latina porn</a>

http://escena.ya.com/tekuv/kim/12-28.html <a href="http://escena.ya.com/tekuv/kim/12-28.html">lesbians sex</a>

http://escena.ya.com/tekuv/kim/12-29.html <a href="http://escena.ya.com/tekuv/kim/12-29.html">buy levitra</a>

http://escena.ya.com/tekuv/kim/12-30.html <a href="http://escena.ya.com/tekuv/kim/12-30.html">live sex chat</a>

http://escena.ya.com/tekuv/kim/12-31.html <a href="http://escena.ya.com/tekuv/kim/12-31.html">mature porn</a>

http://escena.ya.com/tekuv/kim/12-32.html <a href="http://escena.ya.com/tekuv/kim/12-32.html">group sex</a>

http://escena.ya.com/tekuv/kim/12-33.html <a href="http://escena.ya.com/tekuv/kim/12-33.html">pantyhose sex</a>

http://escena.ya.com/tekuv/kim/12-34.html <a href="http://escena.ya.com/tekuv/kim/12-34.html">pissing girls</a>

http://escena.ya.com/tekuv/kim/12-35.html <a href="http://escena.ya.com/tekuv/kim/12-35.html">preggo porn</a>

http://escena.ya.com/tekuv/kim/12-36.html <a href="http://escena.ya.com/tekuv/kim/12-36.html">rape video</a>

http://escena.ya.com/tekuv/kim/12-37.html <a href="http://escena.ya.com/tekuv/kim/12-37.html">redheads sex</a>

http://escena.ya.com/tekuv/kim/12-38.html <a href="http://escena.ya.com/tekuv/kim/12-38.html">scat sex</a>

http://escena.ya.com/tekuv/kim/12-39.html <a href="http://escena.ya.com/tekuv/kim/12-39.html">sextoys for sale</a>

http://escena.ya.com/tekuv/kim/12-40.html <a href="http://escena.ya.com/tekuv/kim/12-40.html">shemales sex</a>

http://escena.ya.com/tekuv/kim/12-41.html <a href="http://escena.ya.com/tekuv/kim/12-41.html">teen porn</a>

http://escena.ya.com/tekuv/kim/12-42.html <a href="http://escena.ya.com/tekuv/kim/12-42.html">hardcore toons</a>

http://escena.ya.com/tekuv/kim/12-43.html <a href="http://escena.ya.com/tekuv/kim/12-43.html">twink sex</a>

http://escena.ya.com/tekuv/kim/12-44.html <a href="http://escena.ya.com/tekuv/kim/12-44.html">buy viagra</a>

http://escena.ya.com/tekuv/kim/12-45.html <a href="http://escena.ya.com/tekuv/kim/12-45.html">voyeur porn</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Sunday, May 06, 2007 5:05 AM by manaeli,manaeli,manaeli

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Sunday, May 06, 2007 5:05 AM by manaeli,manaeli,manaeli

# re: SmartPart for SharePoint Version 1.0.0.0 Released

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Hi My Name Is ivanxm.

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Monday, May 14, 2007 8:34 AM by Britneyofmep

<a href= http://ruzoho.krovatka.su >aasin wallpapers</a> <a href= http://hoxywe.krovatka.su >a new girlfriend.com</a> <a href= http://legizy.krovatka.su >a mac named dre lyric</a> <a href= http://vuvimi.krovatka.su >a murder of one lyric</a> <a href= http://raleme.krovatka.su >aaron sells and rents</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Monday, May 14, 2007 8:34 AM by Britneyofmep

<a href= http://ruzoho.krovatka.su >aasin wallpapers</a> <a href= http://hoxywe.krovatka.su >a new girlfriend.com</a> <a href= http://legizy.krovatka.su >a mac named dre lyric</a> <a href= http://vuvimi.krovatka.su >a murder of one lyric</a> <a href= http://raleme.krovatka.su >aaron sells and rents</a>

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Monday, July 23, 2007 3:25 PM by Mousa Soutari

i take now a course with Mr jan ,

thanx man very much u r a great man really

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Tuesday, August 14, 2007 9:09 AM by Pramod

HI,

I have tried installing SmartPart 1.1.0.0.

As read in an article it needs to go through 2 steps (asking if to install in Virtual directories and Reg CAS). But for me it did not ask for both. I checked in Add/Remove Programs and confirmed that it has got installed. But i'm not able to locate the SmartPart webpart in the WebPartGallery/AddWebPart List.

Could you please help me on this?

# re: SmartPart for SharePoint Version 1.0.0.0 Released

Tuesday, October 09, 2007 5:43 AM by Safeer N

is there a way i can remove the dropdownlist feature (for selecting .ascx files) from the smartpart 1.0 and put the text box control ( and type ~/UserControls/filename.ascx)

This is because I don't want to show all my usercontrols to sub level site admins.  I am administrating a sharepoint portal which have more than 25,000 user base.

# Webkijelz??-fejleszt??s egerez??knek - gaba feljegyz??sei

Wednesday, August 20, 2008 5:00 PM by Webkijelz??-fejleszt??s egerez??knek - gaba feljegyz??sei

Pingback from  Webkijelz??-fejleszt??s egerez??knek - gaba feljegyz??sei