Joy, frustration, excitement, madness, aha's, headaches, ... codito ergo sum!
This is just a test comment... ;-)
Pretty cool stuff. I helped design a "transparent prevalence" engine that sits on top and automatically builds the command objects when using a contextbound objects (might be in there now). Still, I prefer a solid relational DB, but it is fun for experimental stuff. --Jesse
Jan, Sounds like a sweet project. I myself wanted to take a look at it but there were no files to download and evaluate. Also, I know a manager @ Cox Communications who would love this. He wants to automate the builds of all of his projects. Is there anyway I could look at it. Regards Mathew Nolton email: mnolton@cybral.com
More about Hippo.NET : Jan Tielens' Bloggings
Hippo.NET, sounds like a killer tool! : Paul Gielens Blog
So would the loop variable still be valid after the loop completes, or is the variable out-of-scope outside the loop? For Each item As Customer In CustomerCollection ' Do Stuff Next Is item valid here? Also, what if the outer scope also has an item variable, like this? Would this be a compile-time error? Dim item As Integer ' Do Some Stuff For Each item As Customer In CustomerCollection ' Do Stuff Next
So would the loop variable still be valid after the loop completes, or is the variable out-of-scope outside the loop? -> The variable is out-of-scope outsite the loop. Also, what if the outer scope also has an item variable, like this? Would this be a compile-time error? -> Yes, this would result in an compile error.
Looks excellent. A minor point. In the second screenshot it says builded. It should be built.
Hi, I have created the same Macro for C# on http://www.reflectionit.nl/Macro.aspx. There are also some other macros for adding try/catch/finally blocks and using blocks. The SortCode marco might be a bit buggy. Regards, Fons
ShowUsYour-Blog!
More on VS.NET macros : Chad Osgood's Blog
Cool Macros Snipped : ShowUsYour-Blog!
Macro-economics : Jimski's Blog
I've also added some comments about this to my blog if you are interested in reading them at http://www.addressof.com.
VERY slick! That one is going in my library :)
Don't forget to add a second dataset with the column schema matching your xml elements. Then you can merge the two. AND don't forget caching the results so as not to put too big a burden on the rss server :)
I've not used the SoapExtension class before, but I have done encrypted web services with Web Service Enhancements (WSE). You can download it and read articles here: http://msdn.microsoft.com/webservices/building/wse/default.aspx It's not quite as easy as just adding encrypt:=EncryptMode.Response) to the message, but it follows the WS-Security spec and should interop with other implementations. -Dustin
When testing SoapExtension, do not use IE (because it uses the GET protocol), create a simple client in vs.net (it could be console app) and test (that will use SOAP protocol)
Jan Tielens' Bloggings
This is nothing compared to the type of completion you can get from shells like bash under linux or cygwin, but it's definitely something. I wonder why it isn't turned on by default though (remembering the key is a pain)... See ya, Dumky
You can use TweakUI to add this, and it's enabled by default in WinXP.
congrats! I'm getting married on the 18th of July. Wes
Gefeliciteerd, Jan! I married on May-30th, 2002, and I can honestly say: it's great. :) As a tip: I created a website where every guest of our wedding could upload his/her pictures. This was a big success, others could now fast and easy see other people's pictures about the wedding. If it's not too much work, I'd surely do that (make it protected with a username/password of course :))
You went from Overpelt to Brussels... guess I could attended as well.
Attributes!
Which attributes ;-) Thx Jan
Hi Jan. I'm one of the guys at Microsoft who works on the Power Toys. I wanted to let you know a little bit about the PowerToys effort. I promise that we didn't work on these projects to displace third party tools. I actually think that all of the commenting tools you mention have their plusses and minuses. And at the moment some are more polished than the one our team released. One of the motivations included giving people samples from Microsoft for extending the shell. You can never have too many samples. Another is that we just thought it would be a cool project to work on and provide a forum for other developers in the community to also work on. Actually, we’ve been in contact with the writer of the VBXC tool you mentioned and he has recently joined our workspace project on gotdotnet that allows for other people to modify the code. If your interested feel free to check out our workspaces.. http://www.gotdotnet.com/Community/MessageBoard/Thread.aspx?id=107870 Thanks, josh
A bonus of a lot of the third party tools is that they work in VS 2002 and 2003. The powertoys are just for 2003. It is opensource as you say so I do wonder how hard a 2002 port would be.
Good one!
Nice. Thanks By the way, this only works in VS 2003. In VS 2002 it chokes on ass = Reflection.Assembly.LoadFile(ref.Path) LoadFile is not a member of Assembly.
Jan, This sounds like an interesting little project. Any plans for NAnt support?
You must add at least a little more information for a quick start if you want to be able to catch peoples attention and hold it.
seems like its only for windows XP...
It was my pleasure ;-)
After running the installutil on the server it still didn't show up in the Services list. Can't the server just run as a normal program as well. It's kinda lame that I have to jump thru so many hoops just to try it out.
You should post in the MS newsgroups. It helps a lot. Start threads on forums. Add the site to google. I pimped your tool on a dutch forum (gathering.tweakers.net) in a thread about buildtools. Advertise more through simply PR. :) Look at Eric Smith. He marketed his tool this way and his tool is now one of the most well known ones. (I did the same with LLBLGen, and it works :))
Sorry Jan, I have some problems in vs.NET 2003. I keep getting a "Could not find file "" in the referenced libraries." Even with
Sorry Jan, I have some problems in vs.NET 2003. I keep getting a "Could not find file "" in the referenced libraries." Even with your own example of xmlreader. And in C# and in VB.net
Personnaly I think a service is the correct way to run the server. If the install and the uninstall work, there should not be any hoops just to try it out. Y
Hi Yves, I think you have a small problem with the selection of the Type to be found. My macro is written so that it searches for the type that is typed in front of the cursor. So you don't need to select anything. Just type the name of the type, without a space after it, and call your macro. Let me know if you have any problems, Jan Btw: I'm really looking forward to your blog!
he-he. ass.GetTypes
First of all, congratulations!! I browsed through the article and liked it, but there is one aspect of collection usage which you neglected to mention- serializability. Quite often the collections must be portable enough to be remoted or web-serviced. This type of requirement is often known in advance and should be factored in when choosing/designing data structures.
Thx Addy Thanks for your tip! The next part of the article series will cover building strong typed collections, so Serializability will certainly be mentioned. Jan
What about integration with SourceGear Vault??? We've opted for this instead of VSS...
Well, generating files for still changing projects only online does not help at all.
Great macro, however, I've made to changes. First, the namespace directive is added AFTER existing directives, and second, the macro will check first, whether the namespace is already added: Public Sub AddDirective() Dim text As TextSelection = DTE.ActiveDocument.Selection text.WordLeft(True) Dim t As Type = SearchType(text.Text) If Not t Is Nothing Then Dim keyword, suffix As String Dim line As Integer = text.AnchorPoint.Line text.Text = t.Name Select Case DTE.ActiveDocument.Language Case "CSharp" keyword = "using" suffix = ";" Case "Basic" keyword = "Imports" suffix = String.Empty Case Else Throw New System.Exception("Invalid Language: " & _ DTE.ActiveDocument.Language) End Select Dim alreadyUsed As Boolean = False text.StartOfDocument() text.WordRight(True) While text.Text.StartsWith(keyword) And Not alreadyUsed Dim startpt As EditPoint = text.BottomPoint.CreateEditPoint() Dim endpt As EditPoint = text.BottomPoint.CreateEditPoint() endpt.EndOfLine() endpt.CharLeft() If endpt.GetText(startpt) = t.Namespace Then alreadyUsed = True End If text.LineDown() text.StartOfLine() text.WordRight(True) End While If alreadyUsed Then DTE.StatusBar.Text = "Namespace " & t.Namespace & " is already imported." DTE.StatusBar.Highlight(True) text.MoveToLineAndOffset(line, 1) Else DTE.UndoContext.Open("Add Namespace Directive") text.Insert(keyword & " " & t.Namespace & suffix & vbCrLf) DTE.UndoContext.Close() DTE.StatusBar.Text = "'" & keyword & " " & t.Namespace & _ suffix & "' added to the document." DTE.StatusBar.Highlight(True) text.MoveToLineAndOffset(line + 1, 1) End If text.EndOfLine() End If End Sub
this thing doesn´t work!!!!
this thing doesn´t work
the site doesn´t work the tool doesn´t work i am frustrasted digitald0815@freenet.de
I tried it with one of my .csproj files and got: System.NullReferenceException: Object reference not set to an instance of an object. at Hippo.BuildFileBuilder.Builder.ReadProjectFile(String projectContents) in C:\Visual Studio Projects\Junk\Hippo.BuildFileBuilder\Hippo.BuildFileBuilder\Builder.vb:line 276 at Hippo.BuildFileBuilder.Builder..ctor(String projectContents) in C:\Visual Studio Projects\Junk\Hippo.BuildFileBuilder\Hippo.BuildFileBuilder\Builder.vb:line 233 at Hippo.BuildFileBuilder.Web._default.Button1_Click(Object sender, EventArgs e) in C:\Visual Studio Projects\Junk\Hippo.BuildFileBuilder\Hippo.BuildFileBuilder.Web\default.aspx.vb:line 38
Hey I live in Belgium and I blog. Just venturing into dot net. Hope to blog about it...
I thought that Belgium was barred from TechEd? Supposedly Bill Gates is getting pressure from the US DOD. Well anyway maybe they can all say they were crazy for the day and had stood down. Sort of like the Belgian King did.
Amsterdam is not in Belgium, Don ;) It's the capitol of The Netherlands, you know, windmills, wooden shoes, tulips (and legalized pot and prostitution, the Amsterdam red light district, gays can marry ) I'm happy it's gonna be close to home (I'm in the hague, 45KM's from amsterdam) :) Now I just have to save some cash to pay the entrance fee :)
Would they give free tickets to Uni students? They did for the Devdays in november...One more reason to stay in college :)
Thanks for sharing this! I'm new to .NET and this is an immense help.
If the flight was the only problem, you could just as well have gone this year. We were offering free flights to U2U clients... y
Yeah - that was circulating awhile back. I sent it to my CS professor who was quite a nut about maintainable code and style. I thought it was a lot funnier until I dealt with code that prescribed to a few of the techniques mentioned. Apparently, whoever wrote the code thought this article was not being sarcastic :)
Yup, VMWare rocks - with one caveat. You need a pretty beefy machine. I'm running vmware on a Pentiu III 1 Ghz w/ a half gig of RAM, and it's a little slow. It's a bit snappier on a faster machine, though. If you run vmware, invest in plenty of RAM, and disk space for OS images. I do a lot of release engineer / setup.exe kinda stuff, and tools like this and ghost are extremely valuable.
"Connectix is a product with the same features and is recently bought by Microsoft. I haven't tried it out, so any experiences/comparisons would be appreciated!" Jan: http://www.pcmag.com/article2/0,4149,1134339,00.asp
I had problems installing 9.1 with it. :(
I have always thought VB.NET was missing a programming syntax, on top of a few thousands other things. Glurp!
Wow, what a nice comment Stephane! It's really adding something to the discussion. Thx!
Huh. Forgot about edit and continue, how that for forgetful?? Its my single most important gripe that its not there....
ISerializable
Hi Jan. I've been a long-time fan of VMWare too, and I've been using it for all sorts of things, but recently I've converted to Connectix Virtual PC. My three main reasons are: 1) CVPC doesn't make such a big assault on your machine. There are no additional netwerk adapters that appear after you've installed it, and there are no services that run all the time, even if you're not using it. 2) It allows you to resize the screen of your virtual machines to almost any size you can drag the window to, instead of the "standard" sizes that VMWare allows. 3) On my machine, I'm pretty sure CVPC is faster than VMWare (haven't doen any measurements, it just feels snappier...) Apart from that, they're pretty much alike.
Let me the first of hopefully many to correct you both in that C# has Edit and Continue in VS.NET 2003 (which has been out for some months).
And Visual Assist.NET (http://www.wholetomato.com) adds #1, #3, #4 among many other things. I find it a must have.
Hey, I have an idea...why the fuck don't you just turn C# into VB.NET...that seems to be what you are trying for...
I've installed the current Debian distribution on VMware 4. No problems so far.
Since I am a C# developer with C++ background, please let C# case sensitive! Regarding the With statement, it's hard to convert VB.NET samples to C# because of the missing WithEvents statement.
Hi, i'm trying to implement the same thing but it still doesn't work !!! When there is only the remoting "concept" everything is fine but when I introduced events nothing works anymore !!!! Furthermore, the client application have to be in the same directory as the server... Can somebody help me ? Thanks
It would be nice to have: 1. the build requester in the build loggings. (windows account on client?) 2. A possibility to copy the directory with the dll's from the server to the clients from within Hippo. 3. Does the path has to be set on the server. This requires rebooting of the server. (for the system account in the service to get it) Can it be done in the config file? 4. some errors result in a crash of the client programm. (servfer down) 5. The error you get when the path to nant isnt set on the server could be better. Thanks.
Which reminds me of Joe Reich's tip: http://www.cyphersolutions.com/joe.reich/downloads/tip.jpg
C# is also missing a background compiler, which helps greatly with IntelliSense. VB.NET is missing operator overloading. C# is missing a simple mechanism for late binding. VB.NET is missing unsigned types. C# is missing optional arguments. VB.NET is missing unsafe code. The list goes on and on. And to clarify a previous post, VS 2003 does NOT provide Edit and Continue for VB.NET or C#.
Request: It would be nice if you could update the server code from the client without requesting a build. (You also can do a "get latest version" on the server, but there are no working folders set.) Automatically creating a buildfile for the project and the possibility to manage the main buildfile (add project, move project in buildsequence, comment project, ...) would be nice options. Very minor issues: If you start the Hippo client with a shortcut, and the windowstate is minimized, you regulary get errormessages but everything works. The Hippo buildfile builder (beta version!) always sets references to c:\Windows somtimes this is winnt. I do not think this can be changed in the website. But who knows, maybe sometimes in the client?
The download for 1.2.0 of hippo.net doesn't contain a hippo.server.exe.config file. Is there one available somewhere else? Thanks, Eric
I extracted the files to C:\Hippo, went to C:\Hippo\Server and typed: installutil hippo.server.exe and got the following error: C:\Hippo\Server>installutil Hippo.Server.exe Error dispatching command/test named 'Hippo.Server.exe' Here is the list of valid command/test/option names: +------------------------------------------------- | registerdatapath | registersqlanywherepath | registersqlanywherebinpath | getdatapath | getsqlanywherepath | getsqlanywherebinpath | registersqlanywhereodbcdriver | registeroracleoptions | getoracleoptions | validateschemarepovendorinfo | validateuservendorinfo | validatedbisempty | describelastinstalledschemarepo | initemptyschemarepo | relocateschemarepo | relocateuserdb | convertuserdb | convertschemarepo | copyuserdb | copyschemarepo | clientregisterschemarepo | registerschemarepofromfile | adddbset | dropdbset | renamedbset | copydbset | disconnectuserdb | reconnectuserdb | exportschemarepo | exportoldschemarepo | importschemarepo | exportschemafromuserdb | upgradeschemareposystemversion | upgradeuserdbsystemversion | unlockschemarepo | unlockuserdb | catchuptestdbs | cloneschema | deleteschema | purgedeleteduserdb | restoreuserdbschema | clearstatemachine | setschemarestriction | setrecursionlimit | dropchoicelist | checkin | uncheckout +------------------------------------------------- I'm guessing this is because the download doesn't include a hippo.exe.config file.
Bored??? on your honeymoon??? You are a true geek ;)
Congratulations on the wedding! And Roy's right - leave the books at home. If you're bored, that's sad :)
Which time zone are you in...? It's still July here in the UK. 8-)
http://erablog.net/filters/16633.post
Jan, I actually found your Blog site from reading your article. Yep, like the summary of Collections alot. Explained the difference better than reading 5 times that in a book or working it out for myself reading the .NET reference. thanks, Adam
Definately a cool feature that we need for our projects but sadly not yet integrated with the VSS piece. Any plans to release a beta version packaged together in the near future? The big win of course is that the nANT script is always in sycnch with your project. What about being able to generate a script for multiple projects within a solution, any plans there? This is something we could definately use right now and as long as its fairly solid we'd be willing to demo it and give you feedback. keep up the good work, Scott
Agree fully with Scott. Will the buildfile builder be able to handle multiple project files in a solution? has the object reference bug been fixed yet? If that is this the case it could be very useful tool for our project.
My solution to this when I first ran into it was to write a quick article about it on my ASPAlliance column. You'll note that my first articles at http://aspalliance.com/stevesmith/articles/ are REALLY basic ASP stuff. This is because I was a consultant learning and bouncing around between client locations, so this provided me with a central repository for such snippets that I wanted in my virtual toolbox, and had side benefits of helping others and providing me with great exposure. You might use the articles feature here, your own site, or sign up to become an ASPAlliance columnist and get free space there plus a lot of exposure in the community. Steve
When will the buildfile generator be implemented in Hippo? I would like to try to push my company to using this, but since our project files change frequently, it is not an option to update the buildfile using the leadit website. If it's not going to be included anytime soon, is there a command line generator or are the classes available in cvs to do this?
Most of what I have seen requires a desktop app that uses a web service to get updates. http://www.vb2themax.com/codebox http://www.fmsinc.com/dotnet/SourceBook http://www.artifactsoftware.com http://www.artifactnetwork.com
Is there a .Net1.0 build of HippNet?
http://dotnet.4all.cc/ freeware :>
Imports EnvDTE Imports System Imports System.Collections Imports System.Diagnostics Imports System.Reflection Imports System.IO Public Module TypeFinder Private Class TypeCache Public Shared Cache As Hashtable = New Hashtable() End Class Private Function SearchTypeInAssembly(ByVal typename As String, ByVal ass As Reflection.Assembly) As Type DTE.StatusBar.Text = "Searching for '" & typename & "' " & ass.GetName.Name & "..." If (Not TypeCache.Cache.ContainsKey(typename)) Then Dim t As Type For Each t In ass.GetTypes If t.Name.ToLower = typename Then TypeCache.Cache.Add(typename, t) Return t End If Next Else Return TypeCache.Cache.Item(typename) End If End Function Private Function SearchType(ByVal typename As String) As Type typename = typename.ToLower.Trim.Replace(";", "").Replace(".", "") Dim ass As [Assembly] Dim currentAss As String Dim currentPath As String Dim t As Type Dim p As [Property] 'search in principal assembly ass = Reflection.Assembly.LoadWithPartialName("mscorlib") t = SearchTypeInAssembly(typename, ass) If Not t Is Nothing Then Return t 'search in assemblies in solutions Dim proj As Project For Each proj In DTE.ActiveSolutionProjects 'search in references of current project Dim ref As VSLangProj.Reference For Each ref In proj.Object.References ass = Reflection.Assembly.LoadFrom(ref.Path) t = SearchTypeInAssembly(typename, ass) If Not t Is Nothing Then Return t Next currentAss = "" currentPath = "" 'obtain properties to get assembly associated with project For Each p In proj.Properties If (p.Name = "OutputFileName") Then currentAss = p.Value ElseIf (p.Name = "LocalPath") Then currentPath = p.Value End If If currentAss.Length > 0 And currentPath.Length > 0 Then Exit For Next 'search in the assembly associated with the project currentAss = currentPath + "bin\" + DTE.Solution.SolutionBuild.ActiveConfiguration.Name + "\" + currentAss Dim tempAss As String = currentAss + "2" Try Try If (File.Exists(tempAss)) Then File.Delete(tempAss) End If Catch End Try 'we copy de assembly to be sure that when the compilation will be launch the file could be written File.Copy(currentAss, tempAss) ass = Reflection.Assembly.LoadFrom(tempAss) t = SearchTypeInAssembly(typename, ass) Try File.Delete(tempAss) Catch End Try If Not t Is Nothing Then Return t End Try Next DTE.StatusBar.Text = "Could not find type '" & typename & "' in the referenced libraries. Make sure your cursor is right behind the text or selected!" DTE.StatusBar.Highlight(True) Return Nothing End Function Public Sub AddNamespace() Dim text As TextSelection = DTE.ActiveDocument.Selection If (text.Text.Length = 0) Then text.WordLeft(True) Dim t As Type = SearchType(text.Text) If Not t Is Nothing Then text.Text = t.FullName text.EndOfLine() DTE.StatusBar.Text = "Ready" End If End Sub Public Sub AddDirective() Dim text As TextSelection = DTE.ActiveDocument.Selection If (text.Text.Length = 0) Then text.WordLeft(True) Dim t As Type = SearchType(text.Text) If Not t Is Nothing Then Dim keyword, suffix As String Dim line As Integer = text.AnchorPoint.Line text.Text = t.Name Select Case DTE.ActiveDocument.Language Case "CSharp" keyword = "using" suffix = ";" Case "Basic" keyword = "Imports" suffix = String.Empty Case Else Throw New System.Exception("Invalid Language: " & DTE.ActiveDocument.Language) End Select Dim alreadyUsed As Boolean = False text.StartOfDocument() 'Skip the headers text.WordRight(True, 2) While text.Text.StartsWith("/*") Or text.Text.StartsWith(" *") Or text.Text.StartsWith("//") text.LineDown() text.StartOfLine() text.WordRight(True, 2) End While text.StartOfLine() text.WordRight(True) Dim lineTarget As Integer = text.AnchorPoint.Line Dim correctPlace As Boolean = False While text.Text.StartsWith(keyword) And Not alreadyUsed And Not correctPlace Dim startpt As EditPoint = text.BottomPoint.CreateEditPoint() Dim endpt As EditPoint = text.BottomPoint.CreateEditPoint() endpt.EndOfLine() endpt.CharLeft() Dim currentText As String = endpt.GetText(startpt) If currentText = t.Namespace Then alreadyUsed = True ElseIf (currentText < t.Namespace) Then text.LineDown() text.StartOfLine() text.WordRight(True) Else correctPlace = True lineTarget = text.AnchorPoint.Line End If End While If alreadyUsed Then DTE.StatusBar.Text = "Namespace " & t.Namespace & " is already imported." DTE.StatusBar.Highlight(True) text.MoveToLineAndOffset(line, 1) Else If (correctPlace) Then text.GotoLine(lineTarget) DTE.UndoContext.Open("Add Namespace Directive") text.Insert(keyword & " " & t.Namespace & suffix & vbCrLf) DTE.UndoContext.Close() DTE.StatusBar.Text = "'" & keyword & " " & t.Namespace & suffix & "' added to the document." DTE.StatusBar.Highlight(True) text.MoveToLineAndOffset(line + 1, 1) End If text.EndOfLine() End If End Sub End Module
Nifty and useful especially for middle & backend people (like myself) when they need to design a colorful presentation. Cool!
Thanks for the credits :-) However, I did some more customization some time ago. I will compare it to your new version and maybe suggest some more improvements ;-) Regards, Thomas
Really good macro...I don't know how easy it will be, but is there any way to have it look up namespaces in the same assembly - so, say for instance you defined a struct in say MyProject.Structs and in MyProject.Classes.Test you're typing away and want to use one of the structs in MyProject.Structs, it'd be very useful if the macro could look in there too (or am I missing something and it already does it??)
Umm...ignore me, I see it already tries that...however for me at least (using VS.NET 2003) it fails - seems to get stuck in a specific Assembly and get nowhere else so doesn't find the correct NameSpace
Hi Jan, Other enhancements I have added in my version is to wrap the process in an Undo context, so a single undo will change everything back. simply add this before your changes: Dim CloseUndoContext As Boolean = False If DTE.UndoContext.IsOpen = False Then CloseUndoContext = True DTE.UndoContext.Open("TypeFinderAddDirectiveMacro", False) End If and add this after your changes: If CloseUndoContext Then DTE.UndoContext.Close() Another change I made was to check for the "Option" statement (VB only) and make sure the Imports statement was after that. With the changes that now check for existing namespaces that might not be needed, but worth looking into. Keep up the great work.
From a performance standpoint, your conclusion misses the mark IMHO. Client-side validation is simply not minimal nor trivial. Sure, business logic tiers can do the most sophisticated validation possible and each tier should be responsible for complete error and validation checks. Sure, point by point everything you say before your conclusion is dead on. But to conclude with the phrase "...some minimal trivial validation at the client side..." is to completely miss the consideration every good developer can never forget: performance. A much better way to conclude this excellent post is "... as much validation as the client side can handle...".
Dave You are completely right! I maybe did not speak about performance. But I do think not all validation can be or should be on the client. I'll make some adjustments to my conclusion. Thanks for your reaction!
Especially in a SOA, you'll need some sort of client-side validation. Validate the message against an XSD for example before sending it to the server. If you're using Enterprise Services or Remoting and your entity objects are [Serializable] .NET objects, then you can also work alongside the metadata level by defining some new custom attributes, like public interface IValidatable { // empty. This is just a marker. } [Serializable] public class Customer, IValidatable { [MaxLength(30), NonNull] public String Name; [MaxLenght(35), NonNull] public String Firstname; [NonNull, RegExp("...")] public String SSN; ... } You can then generate a generic routine public ValidationResult Validate(IValidatable obj) { ... } this routine would check for all fields/properties and their custom attributes. It would then extract the current values of these fields and compare them to the definitions. The ValidationResult object works like a collection which contains as many validation errors as found. That is, if FirstName == null and SSN doesn't match the regexp, then ValidationErrors would contain two entries pointing to the FieldDefinition object and to the validation rule which failed. These single ValidationError objects will also contain an human readable message. The ValidationResult would also include some generic Enum value which specifies "Ok", "MightBeOk", "IsNotOk" or whatever ;-) The cool thing is that you can develop different validation routines for server and client while essentially reusing most of the logic. And you can generate some nice documentation by using Reflect - this documentation would then also include all your validation rules. Just an idea, though ... -Ingo
Oh ... you can make it even more flexible if the new custom attributes (like the NonNullAttribute) contain the logic to check the current values. let's say: public class ValidationAttribute: Attribute { public abstract ValidationError Validate(object currentvalue, string fieldname); } public class NonNullAttribute: Attribute { public override ValidationError Validate(object currentvalue, string fieldname) { if (currentValue == null) { return new ValidationError(fieldname + " should not exactly be null."); } return null; } } The generic Validate(IValidatable obj)-method would then in fact first iterate over all existing fields and properties, then iterate over each custom attribute of the given field/property, checks if the attribute derives from ValidationAttribute, and calls Validate() on each attribute, passing the current value and the field name into it. -Ingo
I would turn this upside-down. Given the current platform, by default full validation should be implemented both client-side AND service-side. Of course deviations form this scenario do apply, but each one should be a consious descision. Unless we can build a Palladium style trusted distributed computing environment, there can be no exceptions to full validation on the service-side. You can not trust your clients integrity. Client side there can be lots of reasons to skip full validation, as various trade-offs apply, but the principle should remain: "full validation unless ...".
I am speaking off the top of my head here and this was awhile back... I vaguely remember some issue I was dealing with then the browser didn't support JScript for whatever reason and thus client-side validators weren't rendered out. I assumed, incorrectly, that the validation would automatically be pushed to the server. If I recall correctly, the server-side validation is only done with an explicit call. So, as long as my memory isn't playing tricks on me, that's one more reason why client-side validation shouldn't have too much weight put on it. I think you summed it up nicely - "as much validation as possible on the client-side". It's best for perceived performance to the user and scalability by distributing the (arguably minimal) cost of validation to the client. But, you still shouldn't trust that necessarily. Remember, it's also possible for me to post a malicious HTTP request to the page w/o using your form at all. Your client-side validation doesn't help much there!
For End-2-End .Net apps I tend to put validation code (not strictly business rules) in a DLL and I use that DLL both on the client and on the server. On the server I also check all the business rules. For other client technologies I tend to implement some validation, it depends on the technology and on the time that I have.
Jan, for the record I totally agreed with everything you posted up to the conclusion. I just thought a few adjectives in that conclusion changed the entire meaning of it. Thanks for understanding what I was saying! As for the need for server-side validation, I agree with all thoughts presented here. Tim... yes, malicious HTTP requests must be blocked on the server end. Jan... client-side validatation most certainly doesn't lessen the need for server-side too. Truth is, every single piece of n-tier development should have all validation and error-checking possible. The objective at each tier may be quite different, but the reasoning behind it isn't. Client-side should always be trying to minimize traffic over the wire. Business-side should always be concerned with logic integrity. Database-side should always be concerned with security. Obviously there's more concerns too... data types, invalid keys, transaction rollbacks, even keeping state of what IS valid.
Dave sums it up nicely... so, who are you and do you have a weblog? :) (I'd like to subscribe)
Nope. I believe I'm becoming well-known around these parts since I do NOT have a weblog yet comment! :P I almost started one once but realized I lacked the discipline to post regularly, plus the focus to speak consistantly. Um, I lurk loudly instead!
This is an interesting topic. (Jan,I actually came to your blog to ask you a few offline questions about hippo.net which i will submit to you seperately ). But back to validation. I am currently in the process of creating a Web services framework where I am consulting (a large cable company in the southeast). We are going over security, exception handling, configuration and last but not least validators. Ingo, i was actually approaching the solution in a very similar manner to what you described; however, I was looking hard at creating a base business entity class (for all of my business objects ) that is derived from ContextBoundObject. The advantage of using ContextBoundObject is that I can create attributes (much like you describe, but they implement IContextAttribute). I can then decorate my properties and methods with these attributes. The key thing about ContextBoundObject is that it enables me to intercept the calls to the assignment of a property or method parameter and evualuate the assignment based on my custom attributes. I can then throw an error if they fail validation. What are your thoughts on this everyone? Has anyone done much with this? Mathew Nolton
Jan, I was going through the installation of hippo.net and I noticed a couple of things: 1) Your readme talks about a config file for your server but the zip file does not have one. 2) When I start up the client I get the error Requested Service not found (its probably a configuration issue?). I traced it to the line of code in main.vb If Me.GetRemoteControl.Notifications.Length > 0 Then Any thoughts. email me directly at mnolton@cybral.com Mathew Nolton
Oh man. What a neat macro. (All four) thumbs up.
vb project file has ..\WINNT in the path. Visual studio translates this when different users open the project (i.e. WinXP , Win2k). The buildfile generator uses the ..\WINNT verbatim, instead of checking if it shouls use ..\Winnt or ..\Windows. maybe should use the System.Environment Static properties?
I am having the same issues as Scott... this macro just hangs for me saying it's searching assembly xyz. Cool idea though.
The service had problems accessing a VSS store on a network drive. I had to download the source and copy the code from the service into a form. Once it was running under my username it worked fine. If you have more than one project defined, you should be able to view them all from one client, instead of having to change the Hippo.Client.exe.config file to point to a different project name every time. You should also be able to change the configuration from the client (change the VSS path, username, client directory, etc.)
Sorry Jan.. I think this is a bit premature!
:-( Will Michiel come and talk about something else?
Testing...
The joke is quite funny but worth thinking.
Agree with Adam, It would be really useful if more than one project can run in the client without having to change the config file. Have you any planst to implement this? Bert-Jan
Can only mean good things for Mono, not sure the reporting of 'Mono as a "Linux/Unix" port of Microsofts .NET web services platform' :) .NET does more than web services and Mono runs on more than Linux/Unix :)
Thanks for sharing the information Jan. :)
This is excellent news, there go my savings ;)
Jan, ik wou vanmorgen je artikel "Exposing custom-made classes through a Webservice ..." lezen maar het lijkt verplaatst te zijn. De huidige link is : http://www.codeproject.com/vb/net/leaditwebservicewrapper.asp Met vriendelijke groeten.
Thx!
wow! good posting... I'll have to print this one out (& scratch head)... Ques: any thoughts on exception (error) handling) on this one?
I've come to love the power and flexibility that CodeDom/Reflection.Emit and Reflection can provide as well!
Error handling should be implemented (in my opinion) at, at least, 2 places: 1) When invoking the GetValue method: return (string)getValueMethod.Invoke( tempClassInstance,new object[] {this}); 2) After compilation: CompilerResults results = compiler.CompileAssemblyFromDom(compilerParams, unit); When there are compilation errors, no exceptions are thrown. But you need the results.Errors collection to check if everything went ok. Jan
This is an inefficient way to do this (IL and emit would be far better). However, you need to keep in mind that there is currently no way to unload an automatically generated class from the app domain, so if actually utilize this customization, you are eventually going to run out of memory if you create enough customer objects, regardless of whether they have been garbage collected. Of course, the proper way to do something like this would be to implement a custom format provider or just use String.Format when you were actually making use of the data (probably the best option)... It makes a lot more sense that way anyway and will result in much cleaner code that is easier to manage. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconformattingoverview.asp
Jesse Ofcourse the example I showed is quite trival and is only for illustrating how the CodeDom and Reflection can be used. Altough I aggree with your statements, I think that there are limitations with implementing custom format providers. If my sample would be used in real life, the _toString would not be a property of each Customer instance, but it should be in a config. file or something like that, so only a very limited number of assemblies would be compiled in memory. Thanks for your thoughts! Jan
Can you debug the Emitted IL? I guess you can debug it as IL, but that's not what I'd consider exactly convenient, versus debugging C# code. Also, can't you achieve pretty much the same flexibility with regular OO programming and good use of patterns?
I love Skype! I gotta add one of those to my blog.
What about the adware/spyware that Skype could be installing? Their license states that you give them and 3rd parties the right to install unrelated software on your machine without asking you first.
My pleasure...
I think this is a great tool! I was going to manually run source safe batch commands and then run nAnt when my co-worker found this tool (I had found Drago.NET at about the same time). This tool will let each developer run builds on the integrated testing server once they have checked in the code to sourcesafe without having to give them remote/telnet access to the server. A couple of suggestions. The VSS database and login/password should be passed from the client. This would be more flexible and secure. Currently, once someone has access to the port, they can get into the VSS db since all the credentials are on the server. Another suggestion is to support multiple projects. If I have time, I might try and implement these myself. If I am successfull, I'll send you the changes. There are some installation issues, but these have be previously documented and I was able to find the solutions in the forum.
Correction. My last post should say Draco.NET, not Drago.NET
It's very geeky - just beware of the dangers of recursive self-quotations in a stack-based world ;)
Clements Vaster of Newtelligence has already implemented this kind of attribute based validation more than a year ago in their SDK. They call it constraints and have implemented 20 constraints. (with sourcecode) http://staff.newtelligence.net/clemensv/CategoryView.aspx?category=Talks%7CTechEd%20Malaysia
Yes, I'm aware of that! Many examples of the technique that I showed are available on the net. I just used the validation example to illustrate the use of attributes (which was the goal of this article). So I do not want to pretend I "invented" the technique, I just used it to explain attributes.
Sure I did implement this already, but I didn't write an MSDN article. ;)
I have installed Mandrake9.1 and added the line "MII_NOT_SUPPORTED=yes" but the only problem is that I can not find the PC/Net 32 network driver. It is not in the list during install. With the line added, I can get an IP adress but can't go on internet. Is this the driver? or am I doing something elese wrong? thanks, Jerom
I think they goofed.... not there now.
I hope you're watching those MSDN TV videos while *being driven* to work, and not while *driving* to work, Jan ? :-)
Patrick, ofcourse I only listen to them while driving (I do not have a personal driver, but I do know some other Belgian .NET guys who sometimes have one!). But since almost all of the Belgian traffic is standing still most of the time, watching MSDN TV would be possible too! :-) CU Jan
Dewayne Mikkelson and his Radio WebDog, Shadow
good one :)
Good one, if I remember I too saw the same one years back in SAD classes ; )
Funny but true!
Everyone in my office has been cracking up all morning thanks to this! Does anybody have any good spots to pick up more of this type of humor?
very good comic :) So true :)
That's a classic - it's been around for decades and still rings true!
I bought a PCMCIA hard disk for storing even more on my PocktPC... (5GB - 200 €)
5GB! Thats huge... I'm still praying MS will make the webcasts available for Pocket PC. Enjoy the PDC! Jan
great!
Belgian .NET guy with a driver... What a snob. :) Anyway, no more driver for me. Plaster was removed last Monday for my trip to LA. Should have thought about saving some webcasts to my notebook's HD. Then I could view them on the plane...
Have you been spying on our company meetings?
Excellent news ! If only the registration form could work ... well i guess it'll be fixed soon. See you there Jan :)
Is there a target release for integrating the buildfile builder into the build tool?
No there is no date set yet. There are still some issues that need to be solved (e.g. Webservice projects deployment). The best we can do at this point making a suggestion for a build file. Jan
I agree here. I have a 45 minute drive to work and then back home and listen to the .Net Rocks audio and even the .Net Show on my iPaq while driving. It is the only time I would get to listen to the Webcasts. They are very informative. Dave
Jan, I'm with you on that point. It would be nice to have available in download as well. I was a bit disappointed by LiveMeeting, of course it doesn't affect the quality of the webcast but some essential features are missing. Ben
Hippo.NET build is not working correctly. Problems with parsing or reflection.
Can you please post the exact error message and when it occurs on the Source Forge forums (http://sourceforge.net/forum/?group_id=77681) ? Thx Jan
Anyone get this to work? I've tried installing it through VMWare and on a standalone machine. When booting from the disc, it fails, and when trying from within a windows installation the setup screen just sits there for about 10-15 min and then closes.
i wish people in our company would listen to ideas
What? No seatbelt? OSHA will never approve it. :)
It's funny ... but the old one I have from Bell was particularly tuned to the reality that Operations will do their damnest to make anything work. Your "How the Project leader understood it" is what the engineers (or programmers) build, and your "How the Analyst designed it" is what Operations installed. Come on, you have to admit that Operations will try to make it (sorta) work, right? ;-)
This was true for my entire career in the Royal Navy and will still be relevant for years to come!
Can you tell me where I can buy the blueprints for one of these wonderful things?
Beautiful. We need to superimpose the end user in the "How the Analyst designed it" and "How the Programmer wrote it" frames. And how about a frame for "How Senior Management changed the Analyst's design". That could involve placing stocks (i.e. a device consisting of a heavy timber frame with holes for confining the ankles and wrists) on the swing.
Sounds like ALL government sponsored IT projects!!!
This is fairly old. It was originally drawn up with a construction motif....How the architect designed it, etc.....
Ya.........
I'll try to fix my installation with the advice above, I have to admit that setting the network connection on Mandrake 9.1 under VMWare is an assault on the nervous system of a newbie like me.
Ard core never dies.
I Love greg
I love Ben
Hey, Omendata, how did you know that. Now we have to shoot you! I guess we'll have to shoot everyone who read that too. I guess I'll have to start up a project to waste that many people. Let's see, how will I describe this to the project manager...
Yah, some things don't change
Ok, Question... We have been using VPCs here at my company for testing and such, but are having issues trying to log them into the local domain. We have searched all over the web and can't find any posts about anyone else having trouble using the Virtual Switch functionality. You see, our issue is this. We want to set up a VPC with Server 2003 and be able to access it from anywhere on our lan. Well, if we use NAT and try to ping the box we get a response from the Host box and not the VPC box. If we try to use Virtual Switch we can't even get the VPC to obtain its own IP using DHCP. We have tried this on numerous different Host PCs and still the same results. It doesn't even matter what OS the VPC is running, the only way we can get a network connection is using the NAT configuration and of course this will not work if were trying to run the VPC as a 2003 Web Server. This is also the case at my house in my network set up at home. Any ideas? Has anyone else had these issues with VPC? Other than that, the product is awesome!
VPC has had no problems on my machine obtaining an IP from DHCP. Maybe an ipconfig /renew might help? Just grasping at straws...
Well it's quite possible our issue is that we are using 5.2 the Connectix product and not the recently released MS version 2004. We are going to download the 2004 version, and I will keep you all updated.
Nice Tip Jan!
Since you are looking at that, maybe you'd be interested in my own IBuySpy portal modification. I created it mostly because i felt that these portals lacked customization. My portal is almost completely CSS based regarding it's looks! A lot of work still to be done, but you can take a look at it at my website, http://www.stebet.com
You could improve a little bit your stylesheet by specifying directly at the <xsl:for-each> level, that you want to loop on the first 5 items : <xsl:for-each select="channel/item[position() <= 5]"> ... </xsl:for-each> No more need for a nested <xsl:if> ! Hope this helps !
And here's another variant. This one displays all the titles, but only the description for the first title. On all the other titles the description is shown on mouseover. René <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:output method="html" indent="yes"/> <xsl:template match="rss"> <!--Get max 25 articles --> <xsl:for-each select="channel/item[position() <= 25]"> <!-- Build compete A element --> <a> <xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute> <xsl:attribute name="target">_blank</xsl:attribute> <xsl:attribute name="title"><xsl:value-of select="description"/></xsl:attribute> <xsl:value-of select="title"/> </a> <br/> <xsl:if test="position() = 1"> <xsl:value-of select="description" disable-output-escaping="yes"/> <br/><br/> </xsl:if> </xsl:for-each> <!-- Show feed description at the bottom --> <br/> <xsl:value-of select="/rss/channel/description"/> <br/> </xsl:template> </xsl:stylesheet>
I noted a similar concern to the ASP.NET team last year when I first saw Whidbey. They are doing lots of good things, but it looks like they are working somewhat in isolation. I never heard back by the way. :)
One thing I'm really curious is how Constraints (at least I think that's what they're called) work in VB.Net?
class declaration should be: public class MyCollection<itemType>:System.Collections.CollectionBase right?
That's right, seems the some tags are left out because of the HTML. Sorry for that. Jan
Jan: Until MS implements your suggestion, you may be interested in WM Recorder: http://www.wmrecorder.com/
It is universal - I first saw a predescessor of this version posted on a wall in a batch terminal room(think punch cards...IBM 360/370) about 1972, in the Waterloo University computer building. It was funny and true then. Communications between (even more) specialists seems to have gotten even more complicated over the years.
I love goats!
But how to do that by configuration file? I tried again and again, the configuration file can't work. the config file is as: <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.runtime.remoting> <application> <service> <wellknown mode = "SingleCall" type = "Etone.RegistBiz.RegistTx,RegistBiz" objectUri = "RegistTrans" /> <wellknown mode = "Singleton" type = "Etone.RegistBiz.RegistQry,RegistBiz" objectUri = "RegistQuery" /> </service> <channels> <channel ref="tcp" port="9000" /> <serverProviders> <formatter ref="binary" typeFilterLevel="Full" /> </serverProviders> </channels> </application> </system.runtime.remoting> </configuration> and how can we do that in IIS hosting? Neither program in Global.asax nor configuration file can do that. I am so sad, could you test it and help me?
cool
I like that you are adding new features, though getting binaries isn't high on my list. I would rather see some bug fixes, please. Do you monitor the sourceforge bug list feature? Or forums provided by sourceforge? They are very quiet. :)
Jan, It is very useful samples. Where did you find syntax for it? I am struggling through converting C# sytnax of Generics to VB.NET. Thanks, Maxim
Hi Maxim The C# syntax I found on the net (e.g. from the MSDN site), but the VB.NET syntax I had to "discover" myself. If you have problems, let me know and I'll see if I can help you out! Jan
Actually, the syntax for multiple constraints will be changing, the one in the PDC build was just a preliminary syntax. The new syntax will look more like "Class MyCollection(Of T As {Entity, IComparable})". I really need to get to blogging about this... :-)
Hi Paul, thanks for the information!
Jan, Thanks for the refernce to the article. It does contains wealth of information. Maxim
Paul, I think you should give us some good sample code on this topic. I think It is one of the great feature we are going to have with new release. By the way new syntax looks confusing {} do not really makes sense for VB developers
Sorry I spilled the beans Jan :-). I didn't know juu were just setting this up...
No problem Patrick! Every IT projects need a thight deadline. ;-) cu
yea, this is really really sad, this is the kind of thing that makes me want to ditch .net altogether. I have been struggling for this for a week. EVerything is fine until i try to add events, then nothing works. Does anyone have a SHIM class example in vb.net ??
can you give mo details
What kind of details are you looking for??
Sorry, but I try your solution and it doesn´t work. Do you know what can be happening? My code is: public __gc class MyCertificateValidation : public ICertificatePolicy { public: bool CheckValidationResult(ServicePoint* , X509Certificate* , WebRequest* request, int problem) { return true; }; }; System::Net::ServicePointManager::CertificatePolicy = new MyCertificateValidation(); HttpWebRequest* wrq = static_cast<HttpWebRequest*> (WebRequest::Create(url)); HttpWebResponse* hwr = static_cast<HttpWebResponse*>(wrq->GetResponse()); Stream* strm = hwr->GetResponseStream(); FileStream* fs = new FileStream(fpath,FileMode::Create,FileAccess::Write); BinaryWriter* br = new BinaryWriter(fs); int b; while((b=strm->ReadByte()) != -1) { br->Write(Convert::ToByte(b)); } br->Close(); strm->Close();
Hello Jan, The http://blogs.leadit.be/feeds/befeed.aspx page currently takes too long too load (+- 20 seconds). Do you already use caching for the RSS data?
I am very new at ASP.NET this look as if its what I need to complete my assignment. But I dont know how to trigger it below is my problem. My purpose is to dynamically change all the text description on all the objects and all the DIM that contain Error messages by read a DB table to determine the language by user name and then read a DB table by ASP page and language to get all the objects that needs to be changes. Can I email you my code?
Wow, that's a nice piece of work. Thanks so much!!
Thank you!!
Hi, Your blog contains good info. Keep it up.
ok, since all the help files are in chinese traditional, i'll ask this installation question here-- does CodeLibrary install its own access db engine or does it require something already present on my machine? thanks!
Jan, Did you try modifying stuff that comes out-of-the-box? When I played around with it, I had several things I didn't like: - I couldn't just modify the look of any page I wanted - I often found it hard to find out where I should look for certain things - Once I found out how to create a page with a certain template, I saw it indeed did use the template, but it still contained certain things like the stuff at the top and left. - The template of that page I added couldn't be changed anymore with the webinterface once it was added. Perhaps I tried to use it for the wrong thing: instead of using it as some 'document sharing tool', I wanted to see if I could use it as a base for building webapplications. From my experiences, I came to the conclusion that I shouldn't want to do such a thing. That's why I started with our own tool, which comes has the cool things in SharePoint, but not with the limitations I experienced.
Also Just some FYI, you might not want to put your assembly into the GAC since it would give it FullAccess rights. To have a bit more security you can just install it into the bin directory where sharepoint is installed (usually c:\inetpub\wwwroot\bin). Jeff
No offense, but first life will be great because you can do a lot, out of the box. Then you start that life will be even more great when you... and then A LOT of things come up you only can do with access to the server. I think that still kinda sucks! :)
Considering deployment: You might want to have a go at the Microsoft WPPackaging tool. Get it from http://msdn.microsoft.com/library/default.asp?url=/downloads/list/sharepoint.asp. Should save you a lot of tedious work! Jorg
Hello, my name es David and now I'm studing the SoapExtension. I have a problem and I don´t found the solution. I do a client application that call a webservice. In my webservice I have a class that inherit of SoapExtension and save all the message that my web service receive. The problem is that never execute this class, and I have the correct configuration in a web.config file. (I use Visual basic.net) Where is my fault? There are another option. Thanks for all David
Jan, all the best wishes to you too ! And don't forget, you can help making 2004 an exciting year by giving us more of these great articles of yours... Greetz, Faan
At this point I still don't have any MS reaction... :-(
After HOURS of trying to find a solution to the limiting the number of headlines, there you have it in two lines of code. THANK YOU!
And what about having the possibility to post to WSE Web Service?
Hi Laurant, what do you mean by WSE Web Service? DIME attachements, encryption, security, ... ? Jan
And what about being able to submit rich text to for example a webservice? Last time checked I noticed it sends an XmlNode to the webservice. On the webservice however I could only get a certain bit of the text - if I would submit "hello <b>there</b>", I would only be able to get "hello", as if the rest was never sent. I think there was a workaround for this by doing some scripting. It would be nice however if this kind of trivial stuff would be easier.
> it's a pity that you cannot use > managed code in InfoPath. Jan: You can! http://www.hands-on-labs.com/only4gurus/techlib/pdc/TLS351.ppt http://www.microsoft.com/downloads/details.aspx?familyid=351f0616-93aa-4fe8-9238-d702f1bfbab4&displaylang=en
Yes Jan I mean exactly that!
Thanks Phil for the pointer, I did not realized that there were a project toolkit for Visual Studio. I did use the Word toolkit to build the article publishing on my site but did not know that there were one for InfoPath. Thanks !!!
Phil I don't think the InfoPath Project Toolkit for VS.NET is already available. Please correct me if I'm wrong!
Right :-( They talk about it in the ppt presentation, but I could not find anywhere !
It looks great, i already added your fead to bloglines :) Curious to see future releases :p
very cool - keep it up...
Looks cool! I'll certainly use it whenever possible.
Is that really the SQL code that ObjectSpaces generates? This code doesn't seem like it would work in SQL Server 2000: Declare @r int, @e int; Set @r=@@ROWCOUNT; Set @e=@@ERROR; If @e = 0 Begin if @r = 0 RAISERROR(''No rows effected'',16,1); If @r > 1 RAISERROR(''Change effected %d rows'',16,1,@r); End You need to set @r and @e in the same SELECT statement. Unfortunately, even a SET will reset those values.
What product(s) did you use to capture the the screen shot displayed above?
The new MS FrontPage 2003 provides some features that complements well with SharePoint sites - data views, mods, etc.
A nice way to start the new year with a bang ! I guess this is the first article online that gives an introduction to objectspaces. And great that you use the mapper utility in your examples because this one makes objectspaces much easier to use than writing all this XML manually. My comments are only about the introduction : - There is at least one 'real-world' property that is easier to represent in a relational database than in an OO language : many-to-many relationships. This is easy to represent in an UML class diagram but once one starts coding you'll have to maintain collections on both sides of the relationship. - Real life taxonomies are sometimes difficult to map on current OO models. Like the well known example of geometrical figures : The class of squares is a subclass of the class of rectangles, nevertheless a rectangle has two properties (length and height of its sides) while a square has only one (because these lenghts are equal). Nevertheless, in the current OO implementations a subclass can only extend the number of attributes of its superclass. And this is only one example. - There are other database technologies that allow for an easier mapping with an OO runtime : object databases and XML databases. However, you're right in assuming that these are not widely used. Best greetings, Stefaan
Thx for the positive comments! Garibaldi, I used Paint Shop Pro 7 to capture the screens.
Bill, I copied the SQL from the Query Analyzer of SQL Server 2000. Stefaan, thanks for your comments! How would you implement many-to-many relationships in a relational DB? It would require some additional helper tables I assume, so it would involve quite some coding. I agree that sometimes real life taxonomies are difficult to implement in an OO model: you provide a nice example. But I do think in general OO models can reflect better a real life situation. Btw, did you have a chance to try ObjectSpaces yourself, I'd love to share some thoughts! Enjoy the holiday, Jan
Yep, one uses an association tables for many-to-many relationships with at least the foreign keys of both related entities and possible some extra information about the relationship. And I agree that OO models and an OO centered middle-tier are great for the business applications must of us work on. But when used 'in the full richness of reality' it still has some limitations. And yeah, I played a little bit with ObjectSpaces at home. First without the mapping tool which was really hard because when one makes a mistake in one of the mapping files the error messages of OS are not very informative. Still didn't try the many-to-many relationships though. Would love to play more with this and share thoughts too ! :) Take care, Stefaan
Hi Jan, There is a lot of information to be found in the C# language specification 2.0 draft. It is located at: http://download.microsoft.com/download/8/1/6/81682478-4018-48fe-9e5e-f87a44af3db9/SpecificationVer2.doc As you were not sure whether the syntax of C# is correct, let me assure you it is. The <itemType> you used after IComparable is used only when the interface (or class) itself is also a Generic. Otherwise, you would not include it. BTW, did you also know that you can add constructor constraints as well. The following sample requires the V type to have a default parameterless constructor. In C# multiple constraints are added to a type in a comma separated list. public class SomeDictionary<K,V> where K: IPersistable, IComparable<K> where V: MyBaseClass, new() { // ... } Hope this helps.
Thx Alex!
Does it warn and ask confirmation when deleting records? I've created my own extended datagrid with this functionality, but that's all. If your grid has this + those other thing, I gladly use yours :)
Geert, at this point: no. But if there is any sample coding available on the net that explains this feature, I could include it.
I will send you a mail with my component included. How easy can life be :-)
To garibaldi: in the HTML Help Workshop (default installed with Visual Studio .NET) you will find a Image Editor. With the image editor you can capture screens (to place in your HTML help files or for other use)
Typical IT Project :-)...
I've been trying to use the webservices over SSL and have also been having problems. I only get a problem when I do an iisreset and don't use the webservice straight away. If I start up another site (or if another site gets used before the webservice is called) then the webservice fails with either a proxy authentication error 407 (behind proxy on the development machine) or a "Could not establish secure channel for SSL/TLS" on the external server. I'm using .net 1.0 sp2 with C# and I have an internal webservice calling an external webservice over SSL. The webservice works fine for the most part but it obviously a problem if it happens at all. And I've also tried creating a test certificate and getting the same error with that. Many thanks
Mmm, I don't know what could be the problem... I suggest you post your question in the IIS or ASP.NET newsgroup.
Great stuff, Jan! keep up the good work!
Sweet! Nice work...keep it up!
Really nice Jan.
Or just the following will do the same too: myDataSet.ReadXml("http://msdn.microsoft.com/rss.xml")
Thanks - great help :)
Does this actually work? I have the following... but always get thrown into exception private void Form1_Load(object sender, System.EventArgs e) { System.Net.ServicePointManager.CertificatePolicy = new TrustAllCertificatePolicy(); WebClient client = new WebClient(); try { Byte[] pageData = client.DownloadData("https://www.testdomain.com/"); string pageHtml = Encoding.ASCII.GetString(pageData); textBox1.Text = pageHtml; } catch (WebException x) { textBox1.Text = "enter Webexception"; if (x.Status == WebExceptionStatus.TrustFailure) { textBox1.Text = "trust failure"; } } } Additional information: The underlying connection was closed: Could not establish trust relationship with remote server.
evaluatiuon
How would one use a tree or a datagrid that requires a popup button with the ExtendedDataGridControlColumn? How does one add custon columns to the add editor in the grid so they can be picked at design time; editing registry or xml maybe? Will you provide an EnumColumn and a column that uses the UITypeEditor to do the rendering and editing? I know your code isn't open source but how do you render a control that is associated with a column multiple times in a grid each with different state as you did in your example with the group of radio buttons and the progress bar?
Jarrad 1) Just create a Custom Control and add a TextBox and a Button to it. 2) Check out this article: http://www.microsoft.com/belux/nl/msdn/community/columns/jtielens/datagrid.mspx It comes down to creating a custom DataGrid class. 3) Mmm, can you explain a little bit more? 4) Each cell is an instance of the control.
Nice work Jan! ;-)
yukith
I have been getting a "Could not establish secure channel for SSL/TLS" error, as well. The interesting thing is that it only happens on an XP machine running the client app. I install and run the same web service client on my 2000 Pro machine with no problem. The web service is hosted on a 2000/IIS5 machine. We are using a proxy server but both machines access the same one. Has anyone found a solution to this? Thanks.
string assemblyFileName = Assembly.GetExecutingAssembly().GetName().CodeBase; compilerParams.ReferencedAssemblies.Add( assemblyFileName.Substring("file:///".Length)); thanks dude.. the above thing made my life easier.. i had sorted out every thing except the above :) btw im working on a scripting engine in my application which lets the user to execute functions already built in my assembly :) cheers
I used this with a WebClient that wasn't accepting a certificate and it worked fine. Great blog!!!
Jan, Just thought I would point out that the link column's alignment property does not work. Every link column ALWAYS ends up left justified. Is there a way that I can correct this in my application? Other than that, it was very useful! Thanks! Jim
thanks
Yet another case where I am not able to "keep up with the Joneses" ;-)
My (free) ExtendedDataGrid control gets quite some attention and every developer knows that the more people use your software the more bugs will be reported. To organize bug reporting, feedback, feature requests, ... I've created a GotDotNet Workspace: http://workspaces.gotdotnet.com/extendeddatagrid. So if you have something to say about this control; please use the workspace. New releases will be put in this workspace, so you can easily track them by using the RSS feed. Everybody who has contacted my concerning the ExtendedDataGrid: thanks for giving it a try. I'd like to ask you to post the reported bugs in the Bug Tracker. I'm sorry for the hassle.
Good good and again excellent ;-)
'With' and 'WithEvents' are two completely different things! 'With' allows you to reference an object without having to specificy that object each time, eg: With Form1.Controls.TextBox1 .Text = ... .Enabled = ... End With (simple example, but sometimes you have to set a lot of properties on an object multiple levels deep). WithEvents is short hand for [event] += New System.EventHandler([eventHandler])
I've built client-side Crystal reports based on datasets returned from a webservice, but it requires a typed dataset so it doesn't really fit the "generic interface" criteria...and for various reasons it's a pain in the neck, besides...any change to the dataset makes all the datafields disappear in the report, and it breaks when you switch to a different webservice (eg between dev and live).
Dear Jan, thank you very much for your detailed description. Unfortunately I am expieriencing a similar problem like kinsley. Sometimes it works sometimes not. I have a messaging service that calls a https connection sometime 5 times in a row. Every second call fails. I log the access of myCertPolicy in the eventlog and interessing enough it only gets a call 3x2= 6 times for 5 requests to the https service. The certificate of the site is invalid und there is also a password to be transitted via netCredentials. The whole Programm works fine as a console application. Once installed as a service on the same machine it doesnt work. Dotnet 1.0 on windows 2000 KarlHaak@gmx.de I would appreciate help on this
Jan Tielens presents some ideas on how to do reporting in a SOA world and poses the question whether or not there are any other know solutions or products: In the "good old days" of pure two-tier Client/Server programming...
Ingo Rammer is right, that your reporting will be a service, but that is not really the issue is it? In a SOA, your data doesn't necessarily come from a database, or if it does, it's not necessarily your database anyway. You need to mangle all your fragments of data into one homogenous lump, or have at least similar fragments, to be able to use one of the existing database reporting products. Infopath is ok, but it wasn't designed to work with more than a page or two of data, and ultimately it is more geared towards data entry and validation. The other problem you will run into is printing those reports. (in my unfortunately biased opinion)I think that the XSL-FO spec combined with XSLT is a workable solution, but the design tools are still in their infancy.
need product key hope you can help
Jan, Congratulations - I've read every fucking post from 100 guys who claim to know what the hell they are talking about - your solution works like a charm. THANKYOU for posting this info. I hope other people with https+httpwebrequest problems find it.
good
try setting Option Strict On ......
Come On Microsoft, please do make the webcasts avialable for offline viewing. if so, thousands of developers will be benefitted by it. Hope MS Listens to the Community and makes it avaiable for downloading previous webcasts
Thanks Jan, This was a particularly frustrating problem for me There is a KB article 819450 that is pretty close to what I experienced, except that I had .Net 1.1 installed. I could also refresh the page and the request would complete just fine. In addition to the solution you mention, I also nested about 3 Try...Catch blocks to have the request "auto-retry". That way if I mistakenly refreshed the Web Reference, I'd still be covered. (As excited as I am about 2.0, it's really cool to see a non-Whidbey solution, too!) Thanks! Todd
Jan, Thanks for the plug! Our little community of Office System enthusiast continues to grow! Chris
hi,i want to know : Hippo.NET have support .net frmaework 1.0 verson????? my english is pool,sorry!!
Maybe a good remark is also to first create an additional virtual server in IIS so that you can host your WSS sites on that one. Otherwise the default Web site will be used and you will not be able anymore to host 'normal' Web sites (due to the ISAPI filter installed by WSS).
good posting - I am in the midst of WSS deployment and installing default MSDE and not using it is wasteful. Is there a tech note or KB article on deploying it on an external virtual server (in IIS) and *avoiding* the ISAPI filter problem for default (& other) web sites (as mentioned by Patrick)? Thanks.
Thx for the tip Patrick!
Do you have this code in VB somewhere? We're using VB.Net for our ASP.Net pages and I can't get a decent conversion for this
Nice info on WSS, but also the point on IIS 6.0 by Patrick is important. EROL
I wish I had though of Patrick's tip when I installed here. Good job I've got a second server for "normal" sites.
Nice! That's the reason I still like webservices. I don't see people using webservices yet for exchaning information across internet or anything. But building a Winforms client on top of your web interface seems great! Ofcourse, it's a lot of extra work. The web interface, the web service(s) _and_ the winforms client. But after that you've got some great functionality!
Good example. Personally I like to build my own Web services layer around the object model or Web Services of SharePoint itself and not let client applications talk directly to SharePoint via the SharePoint Web Services. If you start for example consuming the Web Services for retrieving the items out of a list, you will start to experience the reason behind it.
Yeah, I know... handling plain XML comming from the Lists webservice can be a royal pain in the *ss (been there, done that). I like the idea of a wrapper web service around them ... let's see if I can find some more time!
At the website of DevHawk, you can also dfind a Sharepoint webpart for RSS... http://www.devhawk.net/prj_SharePointSynd.aspx
Hey folks - this brings up a related question - is there a way to convert an existing MSDE-based WSS site to SQL? The application of this would be great for Small Business Server which uses several instances of MSDE running and is very wasteful on memory. Since SBS has SQL as an option, that the next logical step.
Steve, I haven't dont this myself, but I think you could use the smigrate.exe tool. http://www.microsoft.com/downloads/details.aspx?FamilyID=3df85705-5635-40db-adbe-e13ab8684a60&DisplayLang=en
It seems to me that VB6 nonsense like WithEvents and optional variables just gets recompiled, anyway. I can't see how you can have a concept like delegates and then break it by pretending events are sent by variable name, not by object. And as for optional arguments...i constructed a class in VB and another in C# that had nothing but a constructor which made three assignments. In VB, I made them optional. In C#, I made 8 seperate constructors for each of the possibile ways to call the constructor (which them called the most complete constructor with their own defaults). I compiled them both with the same switches and dependencies...the VB file was 20% larger. Implies to me that it's coding each calling signature as its own individual method. I'll stick with doing it myself, thanks.
vslive is next month right? I have been able to see some of the pre beta 1 bits and they have come along way. I cna't wait to get my hand on them....
I completely agree with you on this! My hope is that these issues get addressed in v3. I suspect with the moving of WebParts to the core ASp.NET 2.0 plumbing WSS will be rearchitected and have some interesting features currently missing! I'm also hoping MS changes the way VS.NET can author to included non-isolated. I'd also like to see the ability to use the AD/AM directory ina FORMS based authentication scenario with WSS. Of course a native RSS/Atom option for all content would also be high on my shopping list for a WSS 2.1 feature! And I too get frustrated with the lack of alert capability on content posted to the main page. They should have included a 'whats new' WebPart which I once saw MikeFit demo in a web cast but it was never posted to www.gotdotnet.com as he mentioned it would be.. etc etc
hey whats up>nothing here...how are you .im good...well i wanted the new version of msn messenger...if i could but it brought me here..
Jan, I'll be staying at the NH Hotel. Arriving Monday afternoon and staying until Thursday morning. I created a thread on the MsBeluxForums (http://www.msbeluxforums.be/) for those wanting to meet, for example at the Geek Fest at the end of day 1. Anyway, I'll be seeing you soon!
I'll be there as well! :p
That's me :) I'll do my best to make intresting posts! ;)
Thanks for introducing me Jan. The Geek Fest at the Developer & IT Pro Days 2004 will be great. No doubt. It's time I'll teach you to party! ;-) About my pizza restaurant: It still in Alpha :)
Jan, Thanks you saved my bacon today, our webservice keeps timing out over this. I had to convert it to VB.NET cause I don't know C-Shizarp. Sample I Used: Protected Overrides Function GetWebRequest(ByVal uri As Uri) As System.Net.WebRequest Dim webRequest As System.Net.HttpWebRequest = MyBase.GetWebRequest(uri) webRequest.KeepAlive = False Return webRequest End Function
Jan, I saw that you have installed it on our sharepoint server. I can only say : it's nice and thanks, it gives us a little bit more functionality. You've done a great job with this.
terrific! Thanks..
They work a treat but I've not found an application for them on my server yet ;o)
Dear Josh, I finally managed to solve my problem an posted a solution in VB under http://www.dotnetforums.net/t80674.html It handles certificate problems, user authentification, asynchron requests and a problem regarding keep alive connections. I hope this will be of some help to you. Karl
A new CMS online book has been published - Building, Deploying, and Maintaining Intranet Sites for the Enterprise discusses how a small team within ...
Thanks
Dear Jan, great webparts. I would like to ask you if I can count on you for developing web parts for my company. In that case please send me your conditions. Regards, José Antonio
In my dealings with customers who have implemented SharePoint, the number one complaint that always surfaces is poor navigation within a site collection. Jan Tielen has created a Navigation web part that is just what the doctor ordered. I've always had this on my list as something to build, but I've just never got around to it. She has also written a very useful MyAlerts web part for use on individual WSS sites. As you may know, the portal and...
It is interesting how open source vs. commercial software is becoming a political issue. But there are ways to approach it. A political party who advocate the humiliation of people (whether admired or loathed, rich or poor) simply show themselves to be immature and unprofessional. I recently joined a University and was amazed at the level of integration Microsoft products have when working together. I can only imagine how this helps organise government institutions. Open source solutions simply aren't at this level yet, and perhaps without a corporate structure organising the teams and projects, will never be.
I share your opinion completely! I really don't get how you can write such statements. And why is Spirit posting that video on their site? Doesn't that show of immaturity? Damn... Well, I'm not going to vote for this political party this spring!
I'll sign a petition if there is one, or have my name added under an Open Letter if it's a good one. I really can't believe they're making such a stupid remarks, and a political party who is involved in humiliating people should have their own laws used against them. Like the recent law that stops funding parties who discriminate. So far for Spirit being a grown up party.
Even better.. They state the example of Munchen in Germany which switched to Linux.:)) Aren't they allready way over they budget?? Yes they are and just because Linux is "free" and "easy" to use. Well except offcourse that installing a printer takes a day on Linux and in XP a minute. But yes I can see the "easy" in use. Shorty
I'll say... this even goes way further. Ever seen the Bert & Steve TV?? (its in dutch) http://www.ideeenfabriek.be/bertenstevetv/index.asp I've added my feedback http://www.ideeenfabriek.be/bertenstevetv/geefmening.asp?iID=6 If software needs to be free, I'll like my daily bread for free too thanks! If not, I'll have no money to buy it. Btw: its clear again that they do not seems to know the difference between Free Sofwtare (as in no license cost), Open Software (as in you can extend it), Open Source (as in you have the zillion lines of code), Open Standards (as in ratified by a offical organisation, btw .NET is a ISO standard => http://msdn.microsoft.com/net/ecma/), Proprietary Standards (COM, JAVA, J2EE) Aaah silly politicians, I wonder if they ever read their own job description; I'm sure it does not state: gotta get on TV a lot, no matter what.
This is sickening at many levels. First, it is sickening to see that these technical decisions are not being made on any form of merit, but purely on false ideological grounds. The companies behind OSS (Novell (Suse), RedHat, IBM, MySQL ...) are pure commercial entities. They are no different than Microsoft or any other software company in that aspect. Surely no-one is suggesting government should take development and maintenance of basic software platform technology “in-house”? Or should they run on stuff that might or might not be available in future depending on some college kid’s “do I feel like it” 3 month support cycle things? Second it is sickening on a business level. The envisioned OSS solutions are equally and sometimes even more expensive even from a pure license perspective (look up the prices for RedHat Enterprise Linux or the Suse equivalent, StarOffice etc., and compare to the MS licensing). The envisioned OSS solutions require far more expensive consultancy and custom development for things that come out of the box in the equivalent Common Off The Shelve (COTS) offerings. The envisioned OSS solutions do not offer the same usability, both in terms of end-user, application developer as well as operational interfaces. The envisioned OSS solutions do not present a better opportunity for local Independent Solution Vendors (ISV's), who's skill set is more in line with commercial offerings. Typical commercial offerings present better performance on equivalent hardware than OSS solutions. OSS offering are generally supported for much less time (typically 1-3 years) than Microsoft solutions (typically 5-7 years) requiring more frequent upgrades with all the associated costs. Both platforms only tend to adhere to defacto market standards in their own fields, and only pay attention to "interoperation" when requested by market forces. Thirdly it is sickening to see these parties so comfortably meddling in affairs in which they have absolutely no expertise. They are willing to risk an entire sector of the economy that has performed exceptionally well in a free market, for the sole purpose of scoring some fringe left votes in the next election. If they are so concerned about the Belgian IT sector, why do they not follow the advice of that same sector? When asked they (Agoria if I remember correctly) unmistakably told the government to butt out and not meddle. Last but not least it is especially sickening that all the extra cash that will be needed for this “coup” in the future will have to be paid by us, through extra taxes that will need to be raised, making our economy even less competitive in future (*). Here’s a guess: Will a future “mauve” coalition let the blue partner score by having them cut expenses through “outsourcing” all of that expensive IT work to some cheap labor market? (*) for those readers not familiar with the Belgian scene, we have extremely high tax regimes already, and a frightening percent of the Belgian workforce is employed directly in government administration. The coup de grace of the socialist/liberal government here is that they declared a “tax amnesty”. While regular law abiding citizens payed almost half of their paychecks in income tax directly to the state government, those who where “less scrupulous” and worked in the “black” economy can now whitewash all there gains over the years by paying a onetime single 6% fine.
I reacted, lets see if it comes up..
Well.. I am gonna vote for SP... this way I can safely download any book, any cd and any movie from the internet! Go for it Spirit! Everything for free! Why pay for intellectual property? And by the way, why do we pay you guys for so much crap?
I would really like to implement this into a project I am working on, but I dont know were to find the web.config file.
Thx for the support guys!
I don't get the point. Linux easy to use and install, well I'm not sure about this. And also, where is the integration like we have with Microsoft products. Jan, let me know, I want to sign also the petition or open letter. And why using an old item about Bill in Belgium ? It has no use. And then the petition. Well I'm not in politics, but I understand Jan (and all the others) very well. Is this what thos politic guys do during the day, time to put some new guys up there.
I can only say this... Goe bezig ^o) ironical offcourse. So if software should be free, then i'll have no job anymore
Brad, you can find the Web.Config in directory that is used for the website/virtual directory in IIS for the SharePoint site.
Jose, I've sent you an email, if you didn't received me contact me (http://weblogs.asp.net/jan/contact.aspx).
Well euh Jan bring the aspx online and we will sign your petition amen. PS going for another round in the "Palieter ?"
SPA-Spirit are those guys who say everything should be free. Just to get more votes, because they surely do know that nothing is for free (even not Linux - and I'm not talking about those ISO's you can download, I'm talking about enterprise level). And if they change everything to Linux, how much will this cost us tax-payers? Last month, a big e-gov project of the Fed failed (another one). How much does that cost? A lot...
Strange that a anti-MS political party is running their site on ASP pages :) according to Gartner (http://www.itweek.co.uk/Analysis/1143712) , the TCO of Linux is more expensive than Windows : When they want to buy 8000 PC's : 41840000 Pounds for Windows 43840000 Pounds for Linux => difference of 2 MILLION Pounds !!!!!! (= 3.5 Million Euros) Nice way to spend our tax money !
It's still broken. I attempted to create a NAnt buildfile from a VSS C# project file and received the same error as Craig Wagner did above. What gives? Dat
Great job, Jan. We'd like to license these for use on our hosting server -- drop me a line with pricing information. :)
This post was very helpful! Thanks!
How do you install these web parts? Just import them? I noticed a dll file ...where does that go?
To deploy them, just put this assembly in the GAC (for example), put the DWP files in the wpcatalog directory of your SharePoint site and add the following node to the SafeControls section of the web.config: <SafeControl Assembly="Leadit.SharePoint.Essentials, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1a431c1526626774" Namespace="Leadit.SharePoint.Essentials" TypeName="*" Safe="True" />
where does the .dll go? In the same folder as the .dwp files?
You put the dll in the GAC (Global Assembly Cache) or the \bin directory of your directory for the website.
I'm just wondering about the comment from Eric Legault calling Jan "She". Now I used to work with a Dutch guy called "Jan" and a bit later had a long e-mail correspondent with a guy called "Jan" in England who turned out to be a woman. I suspect that Eric has made the same mistake in reverse as surely this Benelux Jan is a man! Sorry not to make a Sharepoint comment but I'm going to look at these on my test sites at work.
Mike, you're right! I'm male :-) But Eric has already corrected this on his site.
The Infopath SP-1 Preview is available for download. How sweet is that news?? I am currently working on designing a solution that utilizes InfoPath, Sharepoint and Web Services to enhance our sales team workflow. So I was hoping that I could get my hands on the service pack as soon as possible since I already knew I could take advantage of some of the new features that were leaked/released a while ago. I have loved InfoPath since I first played with it during the Office System 2003 Beta. However I was always disappointed at some of the things I found that were missing. The release of the reasonably feature rich service pack helps me believe that there is a lot more to come for InfoPath and while it's potential has yet to be truly tapped...but it will. InfoPath & Sharepoint are tools that are ideal for individuals like myself that are obsessed about efficient processes and information sharing. I am now empowered to create the sites, forms, lists, and workflows that I would typically require a developer to implement. Given that we are a development company, there are certainly lots of developers around. However taking one off client work...
Nice. And if you don't want to or can't install .NET assemblies on your (probably hosted) SharePoint site then just use the built-in XML Web Part with a custom XSLT style sheet as shown at http://playground.doesntexist.org ;-) Cheers, Siegfried
Nice part, Too bad the crumbs part shows the c<n>-sites.
What do you mean by c<n>-sites?
E.g. in an url like http://zwaan/C8/Beheer/default.aspx the c8 part shows in the crumbs part... Intranet / c8 / Beheer However the c8 part is not a sharepoint page is there for managing url length. (check http://spsclerics.europe.webmatrixhosting.net/posts/158.aspx)
encroching on my turf ;-) -th
Don't worry about reposting, Jan -- you probably have at least some different readers. I've been meaning to say Great Blog, by the way!
Thx Laura!
That's cool, though I was hoping for something that would discover sites no longer linked anywhere, mainly to discover orphaned sites (like on a dev server). There must be a list of SharePoint sites somewhere in the db, anyone know how to get at it?
I get some error as below. 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.
I'll be there !
I won't miss it! Count me in. :)
I try to come also.
I am having trouble as well. I can't seem to get the web part registered as safe - I've edited the 6 or so web.config files I could find, but no go.
I totally agree! I would love to be able to set up one alert for each of our team's sites. I'd also like to be able to (as an administrator) add alerts for other users.
Many many thanks Jan, all of a sudden my SharePoint site has opened up. Its like springtime has come! What is a breadcrumb though?
Thanks :-) Breadcrumbs: http://psychology.wichita.edu/surl/usabilitynews/52/breadcrumb.htm
Check out these webparts: http://weblogs.asp.net/jan/archive/2004/02/12/72079.aspx
Microsoft has released SQL Server 2000 Reporting Services. What do You think about using it as a reporting engine?
RSS Reader Webpart for SharePoint - The layers of geek required to make this of any interest to ANYONE make...
Before I look at this more closely, is there anything in your opinion that your web part can do that Tim Heuer's can't ? (From your example I can see the more lines of description per item but I'm not sure this is a good thing - can it be amended by a parameter ?)
I have Tim's web part installed and working great. I'll link you tonight when I get home if others need to use the feed. Great effort!
Mike, you can set if you want to see the description or not. Also, you can choose which image you want in front of each post. I don't want to say my reader is better than Tim's! Mine doesn't display a message referring to the creator's site (this could be important in a corporate envirionment) (Tim please don't take this personal :-).
Only 2 days after opening the registration, the session is already full! Way to go, Jan! PS. I'll be there too!
This seems to be the solution for me to, but I'm usin WSE (Web Service Enhancments). Trying the suggestion gives an "Invalid Cast". My webservice is inheriting from Microsoft.Web.Services.WebServicesClientProtocol, it in turns inherit System.Web.Services.Protocols.SoapHttpClientProtocol which is the normal to use for a webservice. Any suggestions?
Hi, Jan I was wondering if you'd be willing to share the source for this. I'm just getting going with WSS web part development and these are exactly the type of things I'm trying to learn to do.
Doh! I see that's what the second file is... ok, ok, nevermind and much thanks.
Mike, just check the links at the end of the post! :-)
I have a project where a vb6 COM PC-based client is calling a webservice created in c$.net It works fine over HTTP. I've read over yours and many other postings about this topic. Your solution assumes a .NET client (I think ?) Is there a similar solution from COM? Thanks very much, -Larry Dim oXMLHTTP As XMLHTTP Dim oDOM As DOMDocument Dim viewNodes As IXMLDOMNodeList sB = "" & "<?xml version=""1.0"" encoding=""utf-8""?>" & _ "<soap:Envelope xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"">" & _ "<soap:Body>" & _ "<TestConnection xmlns=""http://abc/pays/"">" & _ "</TestConnection>" & _ "</soap:Body>" & _ "</soap:Envelope>" Set oXMLHTTP = New XMLHTTP oXMLHTTP.open "POST", "https://localhost/abc/pays.asmx", False oXMLHTTP.setRequestHeader "Host", "localhost" oXMLHTTP.setRequestHeader "Content-Type", "text/xml; charset=utf-8" oXMLHTTP.setRequestHeader "SOAPAction", "http://abc/pays/TestConnection" oXMLHTTP.setRequestHeader "Content_Length", Str(Len(sB)) oXMLHTTP.send sB Set oDOM = oXMLHTTP.responseXML
Larry, yes my solution is for .NET. I don't know how to accomplish this in VB6...
hi
My subsites don't show (everything is on the first level). Level is set to 5. Could it be because of a German Sharepoint Portal?
I am developing a client that consumes a webservice over https. The web server is set up to require client certificate. how should I select the client certificate and provide it to the webservice ? Thanks Andrea
You can use the ClientCertificates.Add method of the proxy class.
terrific stuff... thanks..
ddd
Jeden Tag finde ich neue interessante Artikel und Tools rund um die SharePoint Technologien - man kommt kaum noch nach, alle Ressourcen zu sammeln geschweige denn detailiert auszuwerten. Hier die Highlights:
I have an application which invokes(calls) a webservice (on IIS 5.0 , windows 2K) every 10 seconds. After a long time(about 4 hours),the call to the webservice fails. Do you know how to resolve the problem.
Agree.. I will carbon copy and add my letter to the collection... I used the webcasts to train myself and in-house developers on ASP.NET, and usually like to listen to a few on long flights, which I take often enough to care. Microsoft should enable the dev community to archive these or download them much the same as the .NET show, etc. Especially since they are in WindowsMedia format now anyway.
I used to use Anakrino until a friend of mine showed me Reflector. Overall a much better product.
Sorry, used this in the Portal (where it does not show the structure of subareas). Works fine on Sites.
Could be handy :) Nice work.
OK, I know this can't be very complicated but I'm having trouble getting this to work. I've copied the dll to the /bin directory at the root of my WSS server. I've tried uploading various dwp files and dropping the web part on a page, and each time I get the "Web Part appears to be causing a problem" message. Any ideas?
p.s. I added the control into web.config as well.
Could you provide the exact paths where the .dwp and .dll files should go? For both the GAC and BIN methods too. That'd be great.
Thanks for all this infos.
I'd like to confirm the need for more information about where the GAC is; where the WPCATALOG is and where the web.config file is. Those of us who only use (rather than create) web parts haven't a clue about the locations of these bits - heck I can only guess that the GAC is the Global Catalog, but if so what does the A stand for?
I should perhaps also have said that this newest web part is something that I am sure lots of users are demanding from their WSS site administrators! I know it is something I want to have ready for them. The fact that it is available (as a free web part) may even push the use of WSS rather than STS 1.0 which would be a very good thing (I'm suffering from them not wanting to move).
One limitation with SPSv2, however, is that "Portal Listings" within an area are NOT classed as a list and do not have a list ID - therefore they are not picked up by tools such as this. I definitely recommend NOT using Portal Listings if you wish to interract with the data in any way.
To continue on not being able to get this to work, I've added the control to web.config, moved the .dll into /bin, uploaded the .dwp file via the browser, dropped the web parts onto pages and get a "problem web part" error. Additionally, I can view the following in event viewer: Request for the permission of type Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c failed. Any help/advice would be much appreciated. Thanks!
OK got it figured out. Apparently WSS virtual servers have the lowest security permissions by default, meaning any web part that accesses the Sharepoint object model will fail. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_wsscodeaccesssecurity.asp
I just put it in the gac and everything was happy.
Nice Info! I too have found the documnetation very limiting. Thanks for this great example. ~Jim
I tried to install it but I got a System.Net.WebPermission exception. MediumTrust is not enough? Then I tried to adapt the wss_mediumtrust.config but then I got "Die Sicherheitsberechtigungen der Assembly leadit.sharepoint.rssreader.dll sind zwischen den Anwendungsdomänen nicht kompatibel." Sorry, can't translate that.
Stephan There are two solutions for your problem: 1) put the dll in the GAC 2) change the source code a little bit and: add the following attribute to the AssemblyInfo.cs file: [assembly:AllowPartiallyTrustedCallers] I'm sorry for the hassle, but I'm planning to release an update with that attribute already in it.
1) is in GAC 2) never compiled a web part, just "normal" .NET apps. Sharepoint libs not found. Do I need to install something?
You need to copy the Microsoft.SharePoint.dll from your server to a place on your local machine. Then add a reference from the web part project to that assembly. If you have further questions, please send me an email through the "Contact" link.
Looking for http://www.leadit.be/buildfilebuilder gives a 404. Can this be downloaded as an .exe from anywhere else? Thanks.
I'm using Sharepoint Services (Not Portal Server) and have installed the web parts in GAC and _WPCATALOG I've also modified web.condig as per instructions, however I can't get the breadcrumbs nor navigation to work. They are available allright, but when I drag and drop them to a page nothing happens. Please advice
You can find it here: http://dotnet.leadit.be/buildfilebuilder/
First of all: really great web parts, dude! Second: I just want to share some experiences I made installing the web parts. I am using Windows Sharepoint Service (WSS) using virtual server configuration. In my case I had to create manually a bin directory under wwwroot and had to copy the dll in there. Also use the web config file directly in wwwroot path. After doing that I was at least able to upload (import) the dwp files. I still don't know where to put these files on the server.
Hi Jan. Glad someone else aggrees on the state of the BizTalk documentation, and thanks to guys like you who share ideas. I tried this last night, and found I had to set the Max Ocurrences and Min Occurences properties for the ns0:Customer node to unbound, and 0 respectivly to get repeating groups. This should be done after stage 6. Cheers, Ayjay...
are user defined macros allowed? I was trying to use %src_filename% (from 2002 documentation) but it is not defined for 2004.
You have been Taken Out! Thanks for the good post.
don't think so Mike...
You rock... Thanks for taking the time to do the polishing...
Thanks. Great example worked like a charm in .NET. There's the same thing similar way to do this in MSXML via COM. wwalseth@ix.netcom.com var xmlServerHttp = new ActiveXObject("Msxml2.ServerXMLHTTP.4.0"); if( bUsingAProxy ) { // set the proxy server name, as provided on the settings screen xmlServerHttp.setProxy( 2, "Your Proxy Server Name", "" ); xmlServerHttp.open( strMethod, strURL, false ); // must occur after the connection is opened. xmlServerHttp.setProxyCredentials( "proxyid", "proxypw" ); } // NOTE: set SSL validation flags after opening, otherwise an exception is thrown... if( bServerHTTP ) { // if SSL, then turn off if( strURL.search( /https:/i ) != -1 ) { var nUnknownCA = 256; var nWrongUsage = 512; // requested URL does not match the certificate URL. Occurs when using a IP address instead of a name. var nHostMismatch = 4096; // NOTE: It appears that the numbers are documented incorrectly, invalid date is actually host mismatch! var nInvalidDate = 8192; var nAllErrors = 13056; // Doesn't appear to work xmlServerHttp.setOption( 2 ) = xmlServerHttp.getOption(2) - nInvalidDate; } } // 30 seconds to resolve and connect, 60 seconds to send & receive var lResolve = 30 * 1000; var lConnect = 30 * 1000; var lSend = 60 * 1000; var lReceive = 60 * 1000; xmlServerHttp.setTimeouts(lResolve, lConnect, lSend, lReceive); // NOTE: disable any server cache or proxy for this item xmlServerHttp.setRequestHeader( 'cache-control', 'no-store' ); // Mimic browser form post... xmlhttp.setRequestHeader( "Content-Type", "application/x-www-form-urlencoded" ); // For SOAP and XML posting // xmlhttp.setRequestHeader( "Content-Type", "text/xml" ); // Send the document, process any basic HTTP errors xmlhttp.send( xml ); if( xmlhttp.status != 200 ) { throw new Error( xmlhttp.status, "HTTP Error: " + xmlhttp.status + " " + xmlhttp.statusText ); } if( !xmlRec.loadXML( xmlhttp.responseXML.xml ) ) { throw new Error( xmlRec.parseError.errorCode, xmlRec.parseError.reason ); }
What if I want to keep the same name of a file. For example, if the file on the recieve port is foo.xml I want the send port to send the file as foo.xml. Can this be done?
Very good! solved my problem
I want to use IE Web Control to generate Tree struct of Document. Then, How can I deploy the IE web control?
I want to generate Tree by IE Web Control!!!! please help me, I am crazy!!! My E-mail: defrostcn@yahoo.com.cn
A great trick, thanks !!!
You want to use %SourceFileName% - it's case sensitive.
Hi, I've been trying to install the webparts and I've got as far as being able to see them in sharepoint, but when i try and add them to the main page i get the 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." I've added the code to the web.config file, set the wss security to medium and installed it in the GAC using GACUTIL /i to try and get around this but nothing seems to work. Has anyone else had this problem. thanks in advance.
I installed the Leadit.SharePoint.Essentials successfully using Lead-it SharePoint Essential Webparts 1.1.1.0.msi but now when I am trying to install Leadit.SharePoint.RSSReader using the Lead-it SharePoint RSSReader Webpart 1.0.0.1.msi I am not successful. The installation program goes well and gives no errors and says that the installation was successful. When I open up the website and try to look for the web part I don’t see it. After I examined the wpcatalog folder I didn’t see *.dwp file for this web part. I didn’t see the dll installed in the /Windows/assembly/ folder either. So can someone tell me what is going on here? Tam
Thank you so much! Now why didn't they put that in the documentation???
When I elect to display dates with the feeds, they all display as 1/1/2001
You MUST make sure that the assembly is known to the GAC. It worked for us without setting the wss security to medium. Maybe you have some typo in the web.config?
Yes, works like a charm! For that one webservice that you want secured but no want to pay $400 dollar for every year. Like a charm! Thanks!
Hi Jan, Thanks for the article, just wondering if the code is correct. The line: SetExternalFunctionName(GetType ().Assembly.FullName, "SecurityFunctoids.EncryptionFunctoid", "DecryptString"); refers to the class EncryptionFunctoid, but the class name is DecryptionFunctoid. Also, is there a rererence to the SymmetricEncryption class needed? (Would it be possible to post a ZIP of the project?) I am having a real hard time with custom functoids, are there any pitfalls to watch out for? All the best, Alan
You're right! My mistake... I've used a library containing the encryption stuff. Because it wasn't the goal of my post to explain encryption/decryption i've not posted the code of that. If you're intrested you can send me an email using the Contact link.
Excellent article! I hope that Christophe starts writing more articles and feed the excellent MSDN.BE site. Something to be proud of MS friends!
BizTalk 2004 Custom Encryption/Decryption Functoid (via Jan Tielen)
v.gud
Jan, We are working with Microsoft and the issue of handling exceptions inside pipelines has come up. We are looking for a flexible way to catch errors in flat files where the serializer fails for instance. Any good ideas beyond using MOM to catch the error and then routing it back through biztalk? Shawn
Shawn, you beat me... maybe something for in the newsgroups?
how can I assign the value of %SourceFileName% to a variable in an orchestration?
I'm hoping... :)
Found the answer, place the following in an expression: sourceFileName = IncomingMessage(FILE.ReceivedFileName);
Does anyone have any links to see these in action? Also, does anyone have any links to public sharepoint sites?
Jan, I installed your webpart. Unfortunately, your webpart does not seem to offer a proxy settings configuration as tim's RSS Feed Reader does. Since the Global Proxy settings do not work together with our Active Directory integration, I'm curious, if there is a work around to that issue. Furthermore, I was quite happy with Tims RSS Webpart, but for German news it does not show special characters like ä ü ö ß. Does your Webpart support such. Keep on the good work. Your essentials package is very nice, by the way... Lars
Lars, you're right: proxy settings are still missing. Feel free to download the code and alter it yourself! ;-) Keep an eye on my blog for updates. Regarding the special characters, I haven't tested it myself...
Unfortunately it looks like MOM is the best bet. They really missed it on this part of the exception management. It is so good in the Orchetation portion but pipelines are terrible. Oh well, something custom coming up :)
I face an additional problem. In addition to splitting a message, I want to have envelope fields available in my orchestration, e.g. attribute receiveDate when the envelope contained a root element like <customers receiveDate="...">. Is this possible?
It's great, Jan i've search this trick around the world :) Tanks mgi@cdhsrl.it, italy
This is grat work Jan! I thought that at the start of the blog there might have been an "essentials" component to enable an administrator to easily create "Alert Me" for any other user(s) for particular lists... For example, we want all our new users to have an Alert for Issue Log and Tasks - it's the best way to get them to come back regularly...telling the user to create it does not work that well. Any thoughts?
Julian, in a few hours I'm releasing a webpart that can do this, so keep an eye on my blog!
With C# this work beatifull, but i need something like this in FoxPro 8, some body can help me??
Nice work Jan. I am currently working on an article for MS regarding the creation of custom notification channels (e.g. getting alerted via instant messaging) in SharePoint Portal. The portal has quite another approach to the creation and management of alerts. It would be nice to outline the difference between alerts on the portal and alerts in the WSS sites. If I have the time, I will do a post on it!
I got an email from Jan asking me to comment on his Essentials webparts on his weblog. I really like them because they show what I have been working on. I set up a quick and dirty homepage to use them as a simple status report. I used a default template and just dropped the Navigation webpart, the Whats New webpart, and the RSSReader webpart on to the left side. Simple but satisfying! Since I had recently reinstalled Sharepoint to fix an unrelated problem, I had to reinstall the webparts. So I made sure I had the latest versions and started off with the RSSReader. It looked easy. It had an installer! The bad news is that it finishs with an error. ========= WPPackager install log started 3/26/2004 11:18:39 AM ========= 3/26/2004 11:18:58 AM: Error: Config file: 'd:\inetpub\wwwroot\web.config' for virtual server 'http://companyweb/">http://companyweb/' is missing or appears invalid. Could not apply required CAS settings to this server. 3/26/2004 11:18:58 AM: Error: Could not apply required CAS settings to virtual server 'http://companyweb/">http://companyweb/' during installation of 'Lead-it SharePoint RSSReader Webpart' 3/26/2004 11:18:59 AM: Success: Installation Successfully Completed The good news is that the error does not matter!? The dll is in the GAC. The web.config is configured. The webpart is in the wpcatalog. Once you figure out how to configure your firewall you are set. That was actually quite hard. I decided to put my findings in a second post on my weblog since it is specific to ISA. The installation of Essentials was quite easy if you knew the locations of your wpcatalog, web.config, and GAC. I found that I only needed to restart the sharepoint server to start using them.
I'm looking forward to it Patrick! Thanks for your comments.
It's great work. Since I am new developer in Sharepoint portal server 2003, it helps me a lot to know alert functionalty. Thanks.
Nach CeBIT und vor Summit wieder ein paar Links und Ressourcen zu SharePoint:
Excellent, this is a great we part! It would be nice if you could select more than one name in the drop-down list. It would also be nice if the person did not get sent an email to tell them the alert has been set up, but I suspect this second option is almost impossible.
Rohan, your first request can be done; I'll look into it. But as you state: the second request is impossible without writing directly to the config database (I think).
Jan, I was trying to install the code as other web part, but it's not working. By the way I have administartive Privilege.
Yes I'm very interesting...
There seems to be a problem with this solution. I use Windows authentication to connect to the service and while dev'ing I use a specific NetworkCredential rather than the default one. It seems by turning the keepalive off, it somehow disables the use of credentials as well. Any thoughts?
Syed, what seems to be the problem (exception)?
Thanks for this info Jan. I have been trying to do get Biztalk to do this. And your post definately helped. I have an issue though and was wondering if you know what it is.. I created a sample XML as specified above and passed it through this process. The file is removed from the input, but no output is produced. I changed the test XML file to contain the schema information as below and this processes fine, two messages are produced in my output. Any ideas why I need to have the schemas included? <ns0:Customers xmlns:ns0="http://MultiCustomer.CustomersEnvelope"> <ns1:Customer xmlns:ns1="http://MultiCustomer.CustomerDocument">">http://MultiCustomer.CustomerDocument"> <CustomerID>1</CustomerID> <Name>Customer One</Name> </ns1:Customer> <ns1:Customer xmlns:ns1="http://MultiCustomer.CustomerDocument">">http://MultiCustomer.CustomerDocument"> <CustomerID>2</CustomerID> <Name>Customer Two</Name> </ns1:Customer> </ns0:Customers>
I would find it really useful if within a with block I could refer to the with object directly. This would enable me to pass the object as a parameter to a method for example. In the english dictionary this concept is with myObject.subProperty.subProperty .property1 = value myString = .property2 myOtherObject.Method( ~ , value2 ) end with 'instead of... dim tempRef as ClassName = myObject.subProperty.subProperty with tempRef .property1 = value myString = .property2 myOtherObject.Method( tempRef, value2 ) end with tempRef = nothing
oops, I forgot to finsh the sentence. It should read: In the english dictionary this concept is denoted by the tilda character (~)
Great web part. One weird thing - I can only use it with the ID that is the administrator of the server. It is not working for my site administration ID.
Jan, Code like gives error in couple places SPList selectedList = web.Lists[new System.Guid(listList.SelectedItem.Value)] SPList selectedList = web.Lists[new System.Guid(listList.SelectedItem.Value)];
Hi everybody, Do you know about default pass thru transmit pipeline and xml transmit pipeline (both of these are for sending). That is the difference? Some example I work on only work on one pipeline, not the other. Same question for default pass thru receive and xml receive pipeline (both of these are for receiving). What is the difference? What is the reason to pick one over other in some situation? I also have problem with MSMQT (serialization problem). I can not get message MSMQ (regular queue) from remote machine to work with MSMQT from a local biztalk machine. I can work with them individually, but when they have to send/receive from each other, the serialization format got stuck (I tried every from custom serialization to etc..) Basically, I don’t want MSMQ and MSMQT any more, I will use SQL adapter with biztalk 2004. My main question here (this question has been asked before by others on some forum but biztalk 2004 is so now, no answer yet): I want to save the whole message (XML message from a file receive function). The XML message should be able to save as a whole string inside some SQL server table. I came a cross some example but only field by field example. I need to whole message as a string to work with SQL Adapter for Biztalk. Any recommendation? Thanks, Hung
Hello Jan I have added for error the WebPart UserAlerts to an Area. Now area is not accessibile. Always i receive an access denied. Can you any idea for resolve this trouble ??? Thanks in advance and best regards. Enrico
Jan, Thanks for creating another lovely web part. The only problem I have with it at the moment is that you have made minimal use (if any) of standard WSS CSS styles. I am wondering how to make the text come out in a color other than white on my white background web part page - without tweaking all of my existing styles! If you can find a way to correct this it would be great - otherwise I will have to set to meddling with the source code (scary prospect) or tweaking my site design so that the text ends up coloured.
looking forward to new version
how do i get this
I was just doing a search on Technorati for Sharepoint bloggers and found this newbie. Only one post so far and just a few hours old, but I am already subscribed and looking forward to what is coming. And since I am blogging Sharepoint...here is something I have always wanted. Well not always but for a really really long while. A web part that lets you create alerts for other team members. As an individual that often creates new project sites, I have always wanted to be able to slelect some key areas of the site that I wanted other team members to be alerted on as new information is added. Very cool!! Thanks Jan....
very slick. thanks!
Updated BizTalk 2004 Documentation
SharePoint and FrontPage 2003 themes use CSS in ways which aren't human. It's so unbelievably bad that it's put me off SharePoint altogether. Hideous.
Yes !!! MS rocks !!
and there was I thinking this was a new article ... I had it already! (It came out in November)
Sorry Mike! I just found this article and I thought it was intresting enough to post... :-/
BizTalk Server 2004 doc, sdk, and Visio updates
This works great! Thanks!
Looks like some great parts, however I have just spent the last 2 hours trying to get it to work, having the same issue as everyone else. I have added it to every web.config file on my server I could find, copied the dll, etc. etc., but still get the safe error...anyone figured it out yet? Thanks for the help in advance
Dustin, I've created setup projects for these web parts (http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx), did you try them?
Documentation is a patch and requires a specific build (which I dont have). But its also on msdn and 1000% better.
It may not be new but if it saves someone else a few of the bruises I have on my head from trying to find that stuff - then I think it's worth it. The problem I am finding with breaking new ground and doing some custom dev with SPS/WSS is that it's not always easy to find those quick answers that you need. That's why blogs like Jan's are so great. Thanks Jan!
EMMMM WATS THE NEW VERSION OF MSN NOT 6.1 WHAT 1 >??????????????
Here is a site with some good examples: http://www.ingorammer.com/remotingFAQ/changes2003.html
I'm very very interesting thanks
Thanks for the Welcome. This thing was in the hinges already for some time, after much pressure from some other blogger that is physically located very close to me, and after Yves beat me to the punch, I kinda released it. Part of the experiment was to be discreet and see how quickly the 'community' would pick it up. And you were the first, kudos to you!.
Daar gaan mijn primeurs :-(
Ik mocht ook wel es 't eerste zijn met iets he Patrick! :-)
BizTalk Server 2004 tutorial and online documentation
The BizTalk Server 2004 tutorial doesn't come out until April 9. I downloaded it, unzipped the exe file, and got a crummy HTML page that said "The full version of the tutorial will be available April 9". :)
I was wondering if you know if there is an advanced search web part for SharePoint services?
Not that I'm aware of...
Am trying to set up the navigation web part but keep getting this error after I upload it and try and drag it on the page. 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. Any help would be appreciated.
Anne, are you trying the Packaged webparts (http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx). If you have any problems you can contact me by using the Contact page (http://weblogs.asp.net/jan/contact.aspx).
Hi Jan, I was using zipped one at the top of this page under downloads. I copied the dll into the bin folder, copied the dwp file to a dwp folder as I don't have a WPCATALOG folder and added the SafeControl section to the Web.Config file. Is there something I am missing? Thx
Anne, can you send me an email using the contact page? Thanks!
I blogged about the steps necessary, but a picture is worth a thousand words! Thanks.
This is similar to something we need for all of our tasks lists. How can we have WSS generate an email to a user who has been assigned a task via a Lookup field in a task list?
Will, at this time you can only create eventhandlers for document libraries. So I don't think there is a solution for your question at this point...
And you can make it really looking nice if formatting the Data View Web Parts. Published some stuff last week showing this: http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25
is it posible to split my output xml file in Send port.
Srini, I'm not aware of any methods to do this.
Thanks for the link Sig!
In fact, if you own a WSS site you might be surprised to learn that someone else is using your content in a way that you didn't imagine (or intend) as can be seen from this link... http://www.wssdemo.com/Pages/WSSWebServices.aspx
Can you explain a little bit more Ian? I think that you still need a username/pw to be able to use content from another site. Unless ofcourse you've enabled anonymous access.
Jan, can I start adding links in the Non-MS Articles section of the WSS FAQ to this kind of article from you? (Not quoting - simply giving a title and a link to this blog page + I suspect your own "Category").
Mike of course you can! I'd be honoured! :-)
Jan Tielens has an excellent article posted on using the data source functionality from Frontpage 2003 to connect to a Sharepoint List from another site. Great post!...
Nice work Jan, btw are you aware of an error on SPS that says "Access is denied: 'Leadit.SharePoint.Essentials'. "
Tariq, there seem to be some problems with SPS (WSS is working fine). I've haven't had a chance to look into them.
Btw, did you use the packaged version?
How about using the technique DotNetNuke Private Assemblies use? It's detailed here http://www.dotnetnuke.dk/DesktopDefault.aspx?tabid=104. Don't know if it would work, but the concept seems to be what you're after. Create a project with only User Controls. However I'm not sure how the debugging would work.
Hi, I've tried to copy instructions in this video in Visual Basic. In this piece of code in my Calendar.vb: Private uc As New CalendarControl_ascx Protected Overrides Sub CreateChildControls() Me.uc = New CalendarControl_ascx Me.Controls.Add(Me.uc) End Sub It says: "Reference required to assembly 'DemoUserControls' containing the base class 'DemoUserControls.CalendarControl'. Add one to your project." I have done everything on the video, including the references to the dll and to my other project in the solution. Intellisense also suggests the "CalendarControl_ascx" in it's list, so it sees the reference there. I don't get it!
Installed your web part "What's New" but seem to have a problem. It works fine except for some document libray files that Adobe PDF. It doesn't show the file name only the location. Any idea what's up with that?
Frick, you can control this by using the "List fields" property.
Well anyone out their interested in a consulting job because we could sure use some help with the webservices client we have to design. This is what I need. A form that consumes a .NET Webservice. Let me explain: We have a page with Wireless Service Providers, once an agent selects a Service Provider it will take them to another page that displays the PINs denomination choices. Once the agent chooses what PIN denomination the customer wants, it calls the webservice using the PG_GetPin procedure to request a single PIN by product SKU, the system will reply with a PIN on a confirmation page and our SQL Server 'CCS_Wireless' table is updated. The company has provided the guidelines for developing the project but I don't have a clue where to start. Can anyone help? Supposedly, it is simple but when you have no experience it doesn't look that simple. Please email me at ceo@sc.rr.com. Thanks for any assistance.
>Mike of course you can! I'd be honoured! :-) Thanks Jan. I'll check through a couple of your previous ones too (if you're still honoured that is :) ).
I bet that produces lovely HTML... Couldn't you have just given out some real education in the form of HTML/CSS? It's really easy to make one of the bars using an unordered list, and it opens the way for some amazing things. Still, it sure looks purdy :)
I'm having my problems with the Create a SharePoint web site in FP 2003. Why on earth would you want to go to all this trouble (as showed in the blog link you had) when all you have to do is to in a browser do Create Web Site. Or is what he gets at the end of all his deleting and adding back in something special ? It doesn't look that way to me.
Colin, feel free to do so! I have to admit: at first a was sceptical about using FrontPage too. But I really suggest you'd give it a try, especially in combination with SharePoint. Mike, Yves wanted to show how you can recreate things. The final result will of course be the same! He doesn't do this all the time, only if you need some customized stuff. Actually Yves posted the transcript of a SharePoint Customization TechNet session that he did together with Patrick Tisseghem and me.
Oh, I use FP 2003 (mostly Data View) all the time so I have no problems using that. I just don't see the point of using it to Create a Web Site - so if all it was was an example of how powerful FP 2003 it fails completely for me. Now if he'd done something I couldn't do in the WSS UI I might be more interested !
I have multiple sites with different users for each site. Using the set alerts for all sets alerts for all users even if they don't have permission for that site access. Is that because it is pulling in all users from the AD? Also is there a way to shut off the email notification when I set up the alerts initially? Frick
Frick, if you take a look at the code, you'll see I fetch all the users from the root site. You could change the code so the users are fetched from the current web instead. Drop me a line if you need further assistance. I don't think that you can prevent an email...
Jan, Yes, can you please assist me with the code so that it doesn't fetch all users from the root side. I looked at all the code using Front Page and as I am a novice decided I better defer to a higher power. Thanks
Frick, you should download the source code and open it with Visual Studio...
Very nice webpart! Something I have been doing is creating an alert, but changing the e-mail for the alert to a distribution list. I have not tested the full implications of this, nor is it somethign I have verified was supported or anticipated, however, the alert is generated and delivered. Just a thought. Thanks!
I fear that some messages will get overwritten using the plain datetime mask. I hope the UTC one will suffice!
THANK YOU! This really works! Keep up the good work! Thanks
HOW TO LINK ONE SOLUTION WITH OTHER SOLUTION
What about using a column from another list not with the same site as a lookup column in a local list; now that would be very useful. I am sure it's possible.
Great webpart!! but I have a problem with Allows deletion of a specific alert. The List box always return a null value , and alertList.SelectedIndex always is -1, it´s like the selectedIndex lose its value. any solution? thx
Hello, Jan. I'm newbie developer for SPPS 2003. I've studied some Microsoft MSDN examples about programming webparts and implemeted these examples in my SharePoint Portal Server. When i looked for more practices, i found your "Lead-it UserAlerts" webpart. By the way, its very useful webpart, thank you for developing it. But i failed to run your webpart on my SPPS. Either installing webpart by means of MSI-pack or installing Leadit.SharePoint.Administration.dll manually resulted the same - the whole webpartpage with your webpart failed to open with "Access denied" error. I tried to log on to SPPS as two users: 1. build-in administrator of w2k3 server, who is also administrator of Sharepoint Portal Server. 2. domain account, who is member of Administrators group on w2k3 server and member of Administrators on Sharepoint Portal Server. Both users had same error: when i try to click on the link to the webpartpage with your webpart i get dialogbox, asking my username and password. After 3 attempts to log on it brings me page with "error. access denied message". I studied code of your webpart and after commenting big parts of your code finally found out, that line: foreach(SPAlert alert in web.Alerts) gives me "access denied" error. If i comment this line webpart renders with message "To use this webpart you need to have Site Administrator rights". Jan, but I AM administrator, am not i? I am administrator both of w2k3 server and SPPS 2003. Jan, do you have any ideas whats the reason of this error? Your help will be appreciated alot.. Or.. could you advise me nice web-forum for webpart developers?
Has anyone resolved the issue of using the KeepAlive=False workaround in conjunction with WSE?
Hi I found the same problem that Martijn de Groot have. I do same proyect in C# and VB.Net. The C# work but vb don´t. any ideas to resolve it? thx!
Fontecha, Martijn: I don't have an idea to resolve this... :-(
Two undocumented BizTalk Server 2004 tricks
Jan, I worked through your code. There is one simple problem. When try to But I stack in one place. "alertList.SelectItem.Value = null". can you give me any suggestion for this problem
Sorry for the previous post I worked through your code. There is one simple problem. When try to delete specific items. "alertList.SelectItem.Value = null". can you give me any suggestion for this problem
Hi again Thx Jan for this webpart I resolved the problem with Allows deletion of a specific alert setting EnableViewState = true
A good approach :)
Is the reverse of this possible? Receive multiple files and append the output to a single file and still end up with a well formed XML document? I set up your splitting example and am tring to re-combine the split documents in the send port into one file.
I have the samo problem as dustin... Still trying
Jan continues to show just how amazing he is. Today I read on his site that he has created a new way to generate an RSS feed that polls your sharepoint lists to display newly added information. Very cool and extremely useful. We need more developers like him in this world of ours. He has the day off and uses it to work on pet SharePoint projects. Great job Jan!...
Take Outs for 15/16 April 2004
I finally did it! The proble was the version in the assembly file and web.config. I assigned both with 1.0.* and that didn't work. Then changed it to 1.0.0.0, recompiled, re-gac and it's ok! [Portuguese - Portugues] Finalmente consegui! As versoes no assembly file e no web.config estavam mal definidas. Estavam ambas com 1.0.* e deveria estar 1.0.0.0. Recompilei, voltei a inserir no GAC e funcionou.
You can upgrade any MSDE databases to SQL Server with the upgrade wizard.
Jan Tielens has released What's New Rss Feed for SharePoint ...
Cool web part!
How do you maker a dropdown menu in navigation bar ?
je veux avoir cette version parce que msn 6.1 ne correspond plus a mes besoin et je veux etre up to date!!
I found that the NTFS file permissions on the DLL in the bin folder was not set properly. I made sure to check "Inherit permissions from parent" so that IUSR and IIS users were given proper rights. Hope this helps those of you with the "not registered on this site as safe" error.
Jan, I have an issue where a particular site and it's sublevels aren't showing in the tree when I'm on one particular site (2nd level). My structure: Sites: Internal: 2003 Planning: Sub Site 1: Sub Site 1.1 This tree usually shows on the when I click "Start from root", but DOES NOT show when I'm in the "2003 Planning" site. Why this one site causes the whole site tree to not show, but if I go into "Internal" (above) or "Sub Site 1" (below) the whole tree shows for all levels?
I'm having the same problem as Frick (PDFs not showing in the What's New webpart).
Chris 1) Are you using SharePoint Portal Server or Windows SharePoint Service. 2) You should use the List fields property to tweak the title of the item in the list.
Hi Jan, I have exactly the same experience like Floyd. I'm getting access denied error when the code comes to foreach(... web.Alerts). I'm logged in as administrator, web.CurrentUser.IsSiteAdmin is true. How can I find out where is the access problem ? I'm a newbie in this. Thanks for help.
thanks for your time invested in writing your blogs!
try to replace CalendarControl_ascx with DemoUserControls.CalenderControl
Is possible to change views during the OnLoad event?, thanks.
Zwei neue Tools f
Daniel, can you elaborate a little bit more what you are trying to do?
An interesting hickup. I was entering and amending data using the site administrator but all the items thrown up by Rss Feed for SharePoint while specifying the correct change in the correct place at the correct time said that all the changes were done by Esa Viitanen - this is the person who is second on the list of Users for the site and he has only Reader rights! (The name and password needed meant that I couldn't use it in Tim's RSS Reader web part but RSSReader 1.0.88.0 was fine with this too.)
Thank you! It works. I now have a VB User Control and a C# wrapper. Then also you will have to replace CalendarControl_ascx with DemoUserControls.CalenderControl. It then works fine. I assume that a VB wrapper will function the same way. Thanks!!!
dfsdafsdf asd fsd sddf s
Does anyone have the solution for the C++. pSoapClient->MSSoapInit2( _variant_t(g_bsWSDLFile), _T(""), g_bsSoapService, g_bsSoapPort, g_bsSoapNamespace); this call fails when g_bsWSDLFile is "https://.../.../x.jws?wsdl" its successful when g_bsWSDLFile is "http://.../.../a.jws?wsdl" I tried to use the ConnectorProperty of "UseSSL" but that's possible only after my initialization succeeds. Any help is greatly appreciated. Thanks
hi i m using window 98 b despite no of attempt i fail to download 6.1 version of msn messenger plz help me in this respect bye
I just can not get this thing to work. Knowledge level is low on my part. Can anyone point me to a step by step guide?
I think we should switch to european standards, Bye bey america, pushers of Freedom !
Which European standards are you referring too Paul?
i want to dawnloade the new vergion
WAT IS THE NEW VERSION OF MSN NOT MSN ^> COZ I ALREADY AVE DAT AND IT WONT LET ME ON> SO WATS THE NEW ONE. STRESSSSSSSSSS
Hi Jan, Thanks for a nice article. I have created a library of functoids, and setup resource bitmaps for them using 16x16 pixel bmps generated using paint. These were added to the resx file using Lutz's Resourcer. Basically everything works fine except, that the bitmaps do not show up in the toolbox. The name is there from teh resx file, but there is a blank space where the bitmap should be in the toolbox. BUT, if you drag one of my functoids onto a map designer, then the bitmap is dispayed fine. It is also displayed fine when you use the Add/Remove items on the toolbox, when you click on the functoid in the functoids tab. The name info from the resx file changes as I change the strings in the resources, so i know it is using the latest versions of the resx. Your example uses the FUNTOID_BITMAP ident for the resx file, I have just used the filename of the file as it was added (i.e. "VFBM01.bmp") But I tried using it the way you describe but that didn't seem to fix it. I am puzzled, as the bitmaps seem fine for most of the parts of the tool, except the toolbox itself. Any help would be most appreciated. Thanks, Chris
This value of the string in following line should map with the name you gave it in the resource file: SetBitmap("ENCRYPTION__BITMAP"); Could you verify that?
There may well be times when this info is good to know about...its always good to know multiple ways to achieve the same thing... well done!!
Hello Community, after days of unsuccessful coding, installing and testing I'm stumped: I downloaded the "Essential Webparts" and included the What's New-Webpart in my WSS-Website. Everything works fine ... as long as the user has the permissions to view the linked content (e.g. a Document Library or a List). But if I declare the List not to be accessible by "Readers" and a Reader tries to load the page containing the webpart he get's an error-message ! :-( So - as a programmer - I downloaded the sourcecode, compiled it to the bin-folder, set the right entries in the web.config-File ... <SafeControl Assembly="NewEntries, Version=1.0.0.0, Culture=neutral, PublicKeyToken=70c5e611fdfc59be" Namespace="NewEntries" TypeName="*" Safe="True" /> [...] <trust level="Full" originUrl="" /> ... and got the same result: only a user who can surf to all the (normally) 10 entries in the What's New-Webpart can view the whole webpage ... all others can't use the site containing the webpart anymore. :( The strange thing: the C#-code asks if the logged-in user has the permissions ... if(list.Permissions.DoesUserHavePermissions(SPRights.ViewListItems) { [...] } ... but it seems that exactly this method raises the exception !?! How can this be possible ? I coded an own webpart ("NewEntries" - see above) containing not much more than this instruction ... and it doesn't work if I'm not logged-in as admin (I have a recently added Document Library which gets linked in the webpart and which a reader "Sebi" should not see). Please help !!! I'm pressed for time and I have to get it working as soon as possible ! Nice greetings and thanx in advance, Sebastian
I have the same problem when using the part in a Portal Area. It works fine on WSS Sites. Is there something I can do about this?
the new version
Whan I created my library, I used Lutz's Resourcer. Using this tool, the name of the bitmap resource is automatically set to the filename of the bitmap e.g. FBM01.bmp. I left it like that, but changed the functoid code e.g. SetBitmap("FBM01.bmp"); I did wonder whether it didn't like the ".", so I also tried calling my bitmap resource FUNCTOID_BITMAP instead of FBM01.bmp and changed the functoid code e.g. SetBitmap("FUNCTOID_BITMAP"); But it didn't change anything. The strange thing is that the bitmaps do appear when dragged onto the designer and also in Add/remove items for the toolbox...?
thanks for that.. That looks much better when I'm going to show the prove of concept of my Biztalk 2004 setup..
I need a GUID in the output file name that can also be accessed inside the orchestration. I tried using %MessageID% in the output filename and then using BTS.MessageID in the orchestration. But the two GUIDs are not the same. This might be because when a message is sent via SEND port, a copy of the message is being sent and hence it gets a unique, never before seen GUID. Any ideas, workarounds ? I need this functionality for the following scenario: When i receive a file X, I am trying to create a message that says "file X has been received and renamed to GUID-X".
I'm only going to comment things that are NOT going to be implemented in the next version of .NET Framework. 1. Property ReadOnly is good for readablity. It should be "C# is missing Readonly". 2. CType is used in VB (compared to (type) in C#). Which is better is a matter of taste. 3. VB is missing a way to turn the background compiler off. In large projects it can get very slow. 4. C# can use unsafe code. Good or bad? Bad if you ask me, because you should avoid using unsafe code. 5. VB has optional parameters. Good or bad? Not sure myself so I try to avoid using them (uses overloading instead), in fact I haven't used them so far. 6. C# is missing WithEvents. In my opinion WithEvents is great for readabilty and fully sufficient in many cases (not all though). 7. C# is missing implements object.Method. In VB you specify which method that implements an interface. Great for readabilty and flexibility. I'm sure there is much more, but that will do for now.
Can it support VC++ .NET. I have couple VC++ .NET projects. I want to use it to generate Nant script.
I am always getting: "There was an exception reading the RSS Feed. The remote server returned an error: (401) Unauthorized." I can browse directly to the feed (http://testportal/_vti_bin/whatsnewrss.aspx) and that displays the xml code fine. But I tried it in the Lead It Rss Feed web part and I get the above message. I have set authentication as shown above in the screenshot for the _vti_bin virtual directory, and even tried Everyone permissions on the two files, but still not luck, any ideas?
Very useful webpart and exactly what was missing in the new version of WSS! I'd like to port the alert names to other sites we administer, without having to add them back in manually--is this doable? Plus I concur on the request to delete/add names in bulk vs one by one.
Some Articles About Creating SharePoint Webparts.
Epack, this can be done with some coding.
There is an updated version available here: http://weblogs.asp.net/jan/archive/2004/04/26/120508.aspx
Thank you Jan. I am wondering if I can display that list as a web part, so I can sort, filter or even modify the data (which should affect the source list on the root site).
Daoud, you can't influence the source list by using this method. Although you can add sorting and stuff like that, like a view.
No VC++ support...
A few users have posted the message "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.". Unfortunately I have the same, althought I have followed the recommended steps. Any ideas what to look for? TIA, Paul
To answer my previous question, I got it working despite the initial message "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" by editing the <SafeControl Assembly="Leadit.SharePoint.Essentials, Version=1.1.0.0, Culture=neutral, PublicKeyToken=6f708acd0ffbe583" Namespace="Leadit.SharePoint.Essentials" TypeName="*" Safe="True" /> string. The one above is correct, but on the initial page it refers to an earlier version. Now I have the control working it looks great. Regards, Paul
Jan, I was attempting to use the What's New part and ran into a bug. I have a list on my site named fpdatasources. When the part tries to access the DefaultViewURL property, it causes a NullReferenceException. Ping me if you need more info.
Paul, a quick work around would be to exclude this list by using the ExcludeLists parameters. Thanks for the information!
SharePoint has simple 'out of the box' workflow capabilities, but there suddenly seems to be an abundance ...
That is the version I have. I removed the Old Essentials pack and installed the new one. I can not get that RSS Reader to read an RSS feed from whatsnewrss.aspx, but other news Standalone RSS readers will challenge for authentication and read it just fine.
If you want to consume the What's New feed to display it on a SharePoint site, I suggest you use the What's New webpart (also in the package). This will prevent authorization problems and gives you the same result.
Well Jan, what about putting whats new from one site on another site in the form of RSS webpart? That was the goal. Your webparts are nice, I am not saying otherwise, I am just pointing out, your RSS reader will not read your RSS Whats new web service. When one is testing both, esspecially the whatsnewrss.aspx feed it seems logical to just pop that in the already installed Lead It RSS reader webpart to test it out. If it won't do that by design, that is fine, I just wanted to check with this forum to see if anyone else was doing it and maybe I was doing something wrong.
I thought of the same thing. However, the part never renders for me to set the exclusion. I wrapped the entire RenderWebPart method in a try/catch block (and swallow the exception) so that the part displays. Then, I entered the exclusion.
Hi I am new to Biztalk and would appreciate if any body has the posting on how to create the orchestration of this sample. Regards Nina
When I install this, I receive an a warning that it was unable to modify my web.config file located in c:\inetpub\wwwroot, however I do not have my site files located in the default directory. What lines do I need to add to the web.config file for this web part to work? Thanks!! Jason
Thank you for reply, Jan. Is there is a way to influence the source list using some method; I mean how can I create a copy of any list from the root site with the ability to control it from the subsite?
I don't think that will be possible. Unless you write your own webpart.
The RSSReader webpart then needs some small modifications so it passes along the credentials to the RSS Feed. It's possible, but it will require a few lines of code...
Jan, great Webparts! I have folders in my document library. Unfortunatly changes in these will not be displayed, only the folder that expirienced changes. Any way to see the documents?!
Jan, you might want to look at <a href="http://www.k2workflow.com">K2.NET</a> which is a workflow package offering complete integration with SPS (and BTS and a few other packages). Obviously your pet project will be far cheaper but hey we like using workflow tools right? :-)
Well that hyperlink came out well. Try http://www.k2workflow.com :-)
Duncan, I'm familiar with K2.NET. As you already mentioned my Workflow engine will be far more simple (and for free). It's aimed at simple workflows where K2.NET is to expensive.
Sounds like a great project. Keep us informed how its going. I've been looking everywhere for a cheap\simple workflow routing system, haven't found one yet.
You might want to check out Scot P Hillier's SharePoint book, it has a simple work flow engine in it.
Jan, Thanks for providing great tools for WSS! I had a small problem--initially I installed essentials 1.1.1.0, then today saw you had an update 1.1.2.0. I neglected to uninstall the original before installing the update--everything works, but now I have duplicate entries for all 4 of the web parts in my virtual server gallery. I then tried to remove both and only reinstall the update but still have duplicates. Know how to remove them? Thanks in advance!
This is great -- who knew it was so easy?! Thanks Jan. Does anyone know how to display the contents of a document library so that each row contains a link to the document? I am doing it "manually" by editing the XSL, but this seems like something WSS/FrontPage would do automatically.
Okay, I guess it was an easy question...tracked down your original installation instructions before you created the .msi package and discovered the part about the wwwroot/wpcatalog. Removed the duplicate entries there and everything is fine again. Is there anything else I need to remove/delete/change?
George: You can uninstall every version, remove the entries from the web.config of the SharePoint site, and delete the corresponding .DWP files in the WP_CATALOG directory. If you have any questions, send me an email using the Contact form.
I am having the same problem also. When I incorporated the Keep alive chnage it gives me access denied error. I would rellay appreciate if any one help me out on this access denbied issues.
Thanks! just what I was looking for =)
Just a question on the List Permission issue, couldn't just use the ListsForCurrentUser setting? So: foreach(SPList list in web.Lists) becomes: SPListCollection listColl=web.Lists; listColl.ListsForCurrentUser=true; foreach(SPList list in listColl) I don't know if you gain performance but code is nicer... Cheers, Thomas
great ;+) EROL
Hi Jan, thank you for pointing me to my blog. I had lost the url some time ago. Since other people are doing a great job publishing interesting stuff like this one, there is no need for my boring publications. Greetings, Raf.
I have worked on this problem for two days now. Hoping you can enlighten me. This works fine on most lists.... however I have a situation where I have alot of lists that use lookups. I can't get any of them to work that have a lookup field in them. I get a "dataviewwebpart" seems to be causing a problem error. The thing is... it DOES display the data when viewing it from FP... even in preview mode. But not in browser.
Stan, you're having a strange problem... Are you using the same account to view your page through the browser and through FrontPage?
Yes. However, this is intended to be a public page... with anon access.
Maybe someone from the newsgroups can help you out...
Will Check there... thanks for your contributions to the Sharepoint Community. btw... I think I may be trying to use Sharepoint beyond it's intended scope on the particular project anyway. thanks again...
If the envelope arrives via MSMQT and contains different document schemas how to I configure the receive port bindings in my orchestration. Does I set up a receive port for each document types within the envelope ? Do I set the port binding to use MSMQT or direct ? Finally Does Biztalk submit the envelope contents in the order that they appear and is there any guarentee that it will finish processing them in the order they arrive ?
We have found a workaround for settings KeepAlive to False with WSE (tested with WSE 1.0 SP1). We use reflection to get the underlying HttpWebRequest object through the SoapWebRequest.Request (undocumented and internal) property... That's quite ugly, but that works... Instead of directly modifying the wrapper class for the web service, we prefer subclassing it as follows : using System; using System.Net; using System.Reflection; // Web service reference entered in wizard was "MyWebService.MyWebServiceWse" using MyProject.MyWebService; namespace MyProject { public class MySubClassedWebService : MyWebServiceWse { private static PropertyInfo requestPropertyInfo = null; public MySubClassedWebService(){} protected override System.Net.WebRequest GetWebRequest(Uri uri) { WebRequest request = base.GetWebRequest(uri); if (requestPropertyInfo==null) // Retrieve property info and store it in a static member for optimizing future use requestPropertyInfo = request.GetType().GetProperty("Request"); // Retrieve underlying web request HttpWebRequest webRequest = (HttpWebRequest)requestPropertyInfo.GetValue(request, null); // Setting KeepAlive webRequest.KeepAlive = false; return request; } } }
For your first issue (passwords in plain test). Check out aspnet_setreg.
We just started getting this problem talking to a partners webservice. We had a problem with our own webservice with keep-alives - where load balancers would interfere with the keepalive and hose the connection. Could this be another form of the keepalive problem?
I am having problem getting the Request object from the request object. The return value of request.GetType().GetProperty("Request") is coming up as null. Am I doing anything wrong?
I think may be I am using WSE2.0 and this property available.
Thanks, EROL
Hey Jan, you're doing a great job for the community, and I'm glad that you make such solutions. From a professional point of view, I rather like more the box-products, but hey perhaps this is an opportunity for you ? Let's commercialize it as if it's a mass-consuming low entry workflow starterskit ;-))) perhaps I'll even have some potential buyers for you. In addition to your project name, I make the suggestion that the commercial name would be 'Pet Flow' :o Just a last take-away : spare-time is not free time, it's quality time for yourself, your friends and family ... it's even more expensive then a day of consulting. Cheers mate !
Re: What's New I'm still getting the problem that the wrong person is identified as having made the change (rather than me as site administrator). The name has changed but only because I added a user to the site and he is now second in the list of users. (It always says the second on the list of users has made the change).
I've done all that you've described. However I have this poblem that I am getting one file(exact copy of the input file) as the output. I would like to have two files (two customers) as the output. The only thing i've done differently is that instead of an orchestration, I've added a send port and subscribed to all messages arriving at the receive location.
Create Alerts for others
that does seem like a serious scalability killer... couldn't you write the locked files to a sharepoint list and process the list every once in a while (i.e. on startup start a timer...)?
Nice idea! Although this would require some additonal coding (no problem) but also the need for an extra document library. I'll consider it, thanks!
The Message objects can be treated as DOM objects. We wrote a simple .NET class to take the Message as parameter, and return a string (InnerXML). You could then pass this to your send port. HTH, Rois
You just keep going, don't you? Nice work! Greetz Tom
Ahhh, this gives me a HUGE clue as to issues I've been seeing with the out of box web parts! I have many questions as to why pawns aren't shown sometimes for offline users. Sounds like ShowOfflinePawn is dropped every so often.
i hope this contains some essential part of the code only. though i tried to compensate the rest of the code as done in the defaultWsdlHelpGenerator.asmx it is giving some compilation error on get { return serviceDescriptions[0].Services[0].Name; } can u please post a working listing with regards, Raju
Great post, Jan! Just to clarify - this still requires that the end user have Office 2003 installed to get the presence information, right?
Yep, as well as Messenger.
I want this document
I saw this in the HTML and have been experimenting using it in my non-Sharepoint webpages too (i.e. intranet webpages that know about user identities), as long as I load the appropriate JS pages in the HTML header (owsbrows.js, ows.js, menu.js and ie55up.js) then I can use this from any webpage. I don't know what the MS situation is with doing this tho - the licensing position is not obvious, so I haven't actually put it into production yet, but the wow factor is impressive. The next stage, I know, is to replace those webpages with Sharepoint, but this is a quick win. Anyone know what the legal position is on calling this code from non-Sharepoint generated pages ??
Checkout SpsDev.Com who are focussing on providing components to extend SharePoint Technologies ...
I've run into the same issue as Paul Ibison - followed the directions, but can't apply the webpart. I've used SPS01 for almost 3 years, but am completely new to SPS03/WSS. How can I resolve this issue?
MUCHAS GRACIAS to Skeup&Zeb. The original MS fix did not work as we are using WSE, however Zeb's Reflection fix seems to make everything right in the world. Thanks!!!
Outstanding. I've been seeing too much red and didn't find anything on KB to solve it.
Hi Jan, I downloaded your beta sample and have followed all instructions to the T. I think the sample is not complete in that I dont see the customized Task Pane in Word which is shown as per your video. The other thing is there were three document libraries in your video - I notice two. Am I missing something?
And when do you think to plan your first release ?
Beta is now available: http://weblogs.asp.net/jan/archive/2004/05/05/126614.aspx#127000 I'm planning to add some more Action types, so I expect a 1.0 release in the next few weeks.
Could you verify that you are using Office 2003?
Subj: Splitting inbound flat file into outbound multiple XML messages... Hello All I have an inbound text (flat) file containing records on each line having values separated by a char '|'. My goal is to process each record in the orchestration after this inbound document is processed by the pipeline disassember. I had looked at the Jan Tielens' instructions to split a XML file to process each XML message in the document and envelope fashion. I could make it work from XML to XML. But my need to process the input flat text file instead of inbound XML file. Do I need to create end to end disassemblers in the pipeline (Pipeline designer allows it but it does not work runtime or am I missing something) or write the inbound text file to a interim port in and then have a other pipeline to process this file and follows Jan's instructions to complete it. ? I would appreciate your reply. Regards Ravi
I've added the breadcrumbs to my site with no problems using the .msi file. They display, however, they do not work. First of all it only displays the top level so any pages that I drill down into it still only displays one item for the top level. Secondly the one that is displayed does not act as a link. This may because it is only showing one level and as more levels are visible then they become links. How do I get it to display levels as I drill down?
This may be my problem. I'm trying to use this in a document library. I have a document library with several layers of folders so this is the perfect place to have breadcrumbs. Since the document library is essentially on one page (allitems.aspx) would this be why it doesn't work for me? Is there any way to display some sort of linkable breadcrumbs on a document library that has a lot of depth?
Great, thanks, EROL
Hi Jan, This looks like a great tool. Will the source code be made available?
Matt Once I release v1, you can apply to join the GotDotNet Workspace so you can contribute to the project.
Schwank, When I am trying to execute the follwing line requestPropertyInfo = request.GetType().GetProperty("Request"); The requestPropertyInfo does not contain any values. Looks like there is no request property. Am I doing something wrong
I am having some "blog envy" How can I create the same blogs that you have in sharepoint.. I have been looking on line... do tell! -karen angelli
Great job again Jan!! I really like how much attention you pay to the installation instructions...this is an important piece that can often be easily overlooked. Way 2 Go!!
it is truncating some part of white space, i am want o truncate all last white space...is it possible!!!! Nar-
Hi, can this tree web part include other object such as the doc libraries, Lists othre than just sub sites?
Joe, no, not at this point.
First, let me say this looks great! I see a lot of workflow stuff out there, and it always seems centered around Document Libraries. Is it not possible to create a default or custom list and do workflow also? Also, non-related question, but maybe someone could answer it. Our alerts in Sharepoint show the list item title, except when we use an Issues list, then it says Item ID. Can't find any info on the net anywhere. Any idea why? Thanks, Scott Hannan Ava.nu Media srh@ava.nu
I did not use the method above exactly as indicated, I stripped the class inheritance and added the code directly to my overridden GetWebRequest method. Code is below... protected override System.Net.WebRequest GetWebRequest(Uri uri) { PropertyInfo requestPropertyInfo = null; WebRequest request = base.GetWebRequest(uri); if (requestPropertyInfo==null) requestPropertyInfo = request.GetType().GetProperty("Request"); // Retrieve underlying web request HttpWebRequest webRequest = (HttpWebRequest)requestPropertyInfo.GetValue(request, null); // Setting KeepAlive webRequest.KeepAlive = false; return request; } Make sure you include the System.Net and System.Reflection namespaces as well. Otherwise the provided code worked brilliantly for me, using WSE 1.0 SP1.
intresting and funny
Scott, at this point SharePoint does not support to handle events of lists, so you can't do workflow scenarios like this. But I heard event handlers will be available for lists too, in a next version of SharePoint.
Hi all! I'd like to solve exactly the same problem. But whatever I try it doesn't work. I am trying to read a webpage using the HttpWebRequest methods. When the URL is not secured (http://) it works fine, using the HTTPS protocol I get the "The underlying connection was closed: Could not establish trust relationship with remote server." error. I implemented the class TrustAllCertificatePolicy like shown here. But also this did not help... Is there anyone with another idea?
Jan, Your User-Alerts web part is very good. For my current assignment, I have to write a web part that displays all the areas within the portal and user should be able to select an area from that list and set alert (including contains keyword,etc) for that area for the current user. Can you please let me know if this is possible as I do not see if I can create alerts for an area within the portal. I could see creating for lists though.
I've seen this happen when I call web services with proxy servers. We used the same approach mentioned above with the exception of changing the protocol version instead of setting keep-alives. webRequest.ProtocolVersion = System.Net.HttpVersion.Version10;
I have a similar problem with some of the folks above. Somehow turning keepalive off seems to disrupt my authentication(Windows in my case). What is WSE and is this the solution to my dilemma?
I have installed these great search & breadcrumb's, only problem is that search keep's returning 404 and breadcrumb shows only the site it's placed not the trail to top. Can anyone help me on this? Crateful allready.
After adding a new link in the Links list, the url and description will be the title in the What's new web part. Can I configure it so that it only displays the description part? Thanks.
Will this web part work on the home page of SharePoint Portal Server instance, and than interate through all the lists in the portal? If not, is the code readily extensible to this? David Turton (Maryland)
How would I go about including the processing instructions in Biztalk 2002 ?
In reply to Paul O'Donnell's problem, for both the schema's (document and enevlope) remove the target namespace i.e. the target namespace should be blank. Instead of using the xsd import, set the set the Data Structure Type property for the Customers node to “xs:anyType”. (you won't be allowed to use the xsd import without namespaces anyway). Now it should work fine. To test, you can use the xmldasm.exe which can be found in the utilities folder in the sdk.
I learned programming on C64 too and want to share this two great memories that come to mind when I read this. 1) I remember myself buy magazines that contained pages full with lines of Basic, that I typed over evening after evening, just to see what it does. I did this with the C64 on my knees with my TV about 50 cm above my head. And nobody heard of RSI back then. 2) There was this dutch radio program on sunday evening called Hobbyscoop (if I remember correctly) that broadcasted programs on air that you could record on tape and run from your C64 (which I never got to work, of course, not even after changing the head of the tapedriver with a screwdriver). Great thing was, sunday was the day I visited my grandmother and I was usely in the car around that time, actually listening to this broadcast, going on for ten minutes. Great memories. Thanks for getting me in this nostalgic mood ;-).
This was/is really a nice machine and it's still the best selling home computer, 30 million C64 has been sold, amazing!!! (comes from Guiness book of records 2003)
POKE 53280, 0 POKE 53281, 0 POKE 646, 6 That was the only way to go. ;-) It worked on 1 freaking MHz and you could still use interrupts to gain full control over the electron beam drawing the picture on TV. Loved it to death!!
Damn, this is just great! So many great memories... I had a C64 when I was about 12 years old, when I had my first code-encounter. ;-) Some day, I got hold of these printed pages of the game "galgje" (I don't know the english name) and I typed it over (more then 4 hours) on my C64 but it didn't work :-(. I will never forget that! ;-) That joystick is mine!
I had an Oric-1 (http://www.old-computers.com/museum/computer.asp?st=1&c=180) while all my friends had Sinclair Spectrums. This meant while they were sharing tapes of the latest games I was programming for myself in Oric Extended Basic. How happy was I years later learning Visual Basic 3 to find out the syntax was all but identical.
I want one too! my first machine was a vic 20 with a rom cartrige that plugged in the back, jupiter lander. Great game though.. and then C64. Never thought about it before, but I guess my first programming was on the C64. *crosses fingers* for Last Ninja 2, Ghostbusters, spyhunter, Wizball, Stunt Car racer... so many..
Very cool!
Dear Sir, I am getting Error : Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. (Error code: 18456). How to ovecome this sitution pls help me mail me : prabhakar@arrowpointtechnologies.com gprabhakaran73@hotmail.com
Great ! Very usefull thing. Can we take part in your project? Dmitry Smykalov IT Manager Russia alienX@mail.ru
I have a problem when trying to using: xmlhttp.setRequestHeader( "Content-Type", "application/x-www-form-urlencoded" ); If I try to attach a french character ie ç. The server can't seem to understand it. Please Help!
Thanks for the web part. I have one issue. At the end of installation there was an error. I checked the log and it stated: Error: Config file: 'c:\inetpub\wwwroot\web.config' for virtual server 'http://spstest01/' is missing or appears invalid. Could not apply required CAS settings to this server. 5/14/2004 10:33:21 PM: Success: Installation Successfully Completed Problem is that my Inetpub is on the D partition not the C partition. What should I do? By the way, the web part still seems to work.
Dear Jan, I'm a newbie in WSS. I'm studying the Workflow Lite and have some problems with: <ns0:Action Type="CREATEEVENTITEM" Parameter1="Eventlog" Parameter2="type" Parameter3="comments" /> Could you pls help? To be honest, I don't understand the work of Action Type="CREATEEVENTITEM", esp Parameter1 and Parameter2. With Parameter1, in my opinion, it's the name of the Event Webpart in the page. E.g: I add a Event webpart to a page and rename it to "MyEvent". Then I assign this to Parameter1 like this: Parameter1="MyEvent". Is it correct? I read the sample.xml file and see that the event type can be: -Document approval declined -Document submitted for review -Document approval accepted So where does these types come from? Many thanks, Toan.
During development I often use System.Diagnostics.Trace.WriteLine in expressions and SysInternals debugview to see what's happening. Works fine !
After adding this webpart to SPS 2003 portal areas the areas became inaccessible even though I have administrative rights. Had to go in and manually remove the webpart from the area xml file to recover. Just thought I would pass this on. I don't know if we missed a step or something.
I would like to add this as a static web part in a template. What would the connection code look like?
I'm a beginner to all this, so maybe this is a stupid question, but when I do this, there is no presence icon until you mouseover? Is there a way to have the presence inciator there regardless?
Is there a way to change Alerts format. I want to be able to send an alert showing all data elements instead of standard format.
G Man, I don't think so...
Jan, you're a life saver! I've been wrestling with STS for the past 2 days and with your article I was able to get it up and going. Geez! Thanks! -Jason
I have a question, is it possible to trigger an action after a few "Property names" have change? Like if I want 3 people to "Sign off" on a doc before moving it to a new library and I have 3 different columns set that need to be checked. Is that possible? Thanks a lot man this is great... Chris (christiankelly(at)gmail.com)
Hey Jan I'm trying to install your webpart, I've tried to install your Leadit.SharePoint.Essentials 1.1.2.0 web part. It's registered as a safe control but when I try to drag the WebPart into the WebPart Page I get the error, "Cannot add Web Part to the Web Part Page. For more assistance, contact your site administrator." The only thing is, I am the admin :-\ can someone please help me out. I you want drop me an email (tom.caffrey@cromptoncorp.com) Thank you in advance.
I tried to use this class in the orchestration, but the messagebox is not displayed on the desktop? Do I have to do anything else? Thanks
And don't forget that 'forgotten' pdf icon you have to add to the icons.xml file :)
Hello all, I've installed the Essential webParts because Breadcrumbs and Navigation are excellent but I've got a pretty big problem. I used the MSI file and let it install all. I said Yes to installing it in the GAC and Yes to the XML security adjustements. Everything works fine for all my local machine users who visit the site but none of my domain users to the WSS web can now even access anything as their username/password is always refused. My guess is that only Local Users have access to the GAC environment but no Domain Users do. What should I do guys ? I'm not too comfortable with this whole GAC concept. Thanks, Philippe
Hi, Jan: Yes, my implement of SharePoint Workflow Engine got many ideas from your Workflow Lite, and in a previous article in my blog, I introduced your works :). (http://blog.joycode.com/kaneboy/posts/21549.aspx#21565) Thanks you for your perfect ideas and implement. And sorry for my poor English. :)
Hi Jan! I'm also a newbie in Sharepoint. I tried using your Workflow Lite and followed your installion instructions exactly. But when I went to the step where I will enable the event handlers for my document library, there was an error. As seen in your video, I copied the assembly name and the class name in the readme.txt and paste it on the Assembly Name field and Class Name field, respectively, on the Document Library Advanced Settings page. Please help me on this one. I badly need this thing for my work. Thanks! Eugene
By the way, this is the error message that I got when I tried enabling the event handlers for my document library.. Could not report event for "Editing" in "Editing" because loading event handler assembly "Leadit.SharePoint.Workflow, Version=0.1.0.0, Culture=neutral, PublicKeyToken=dd064a5b12b5277a" failed. File or assembly name Leadit.SharePoint.Workflow, or one of its dependencies, was not found. I don't what this means. I already followed all the steps in the installation instruction, except that I didn't refresh my config settings using IISRESET (as said in the instructions) because I don't know how to. Could that be why I got the error?
Christian, this is not yet possible. But it's a great idea! I'll take a look how I can implement it. Eugene, I've send you an email with some questions.
No problem!
Not able to use it ..please help ..did all steps but don't know what to set in sample.xml and where?I have my own document library name and document names.
Jan and Kaneboy, Both of your engines are very good simple implementations and people can start using it. Kaneboy code is using reflection. Do you get a performace hit? Maxim [www.ipattern.com do you?]
Our device proxies requests and can fix this problem without a code change on your end. Further our device provides some defense against certain web application level attacks. If changing your code is not a short term fix -- meaning it will be a while to deployment but was needed yesterday -- you can investigate proxying to our device at http://www.fastroot.com -- there is a monthly charge for this. Contact Terry Howerton via email -- terry@fastroot.com Out of curiosity, what app server or web server are you sending the requests to that causes this error? Thanks, Eric Hauk
So I was wondering why you were bothering to tell us about the pdf IFilter (as it ought by now to be old news) and nearly about to skip the rest, when I saw the last sentence. Now *that* was new to me! Thanks, Jan. (People looking for a pdf icon and where the icons.xml file is can search the WSS FAQ - www.wssfaq.com - for "pdf" or "icons" which will give them the item.)
Wondering if anyone had the soltuion for John's post - "What about using a column from another list not with the same site as a lookup column in a local list" trying to setup a list on my main site (which has restricted access) and then use this list in a lookup column on 2 subsites
Hey Jan have you thought about doing a collapsable version of your navigational menu. I have about 100 sites and it takes up too much room to use your navigation one unless of course it was collapsable. If you do this or plan on it, please contact me. caffrey@hartford.edu (I'm using your breadcrumbs and nav right now, and they are working perfect.)
Hi Jan, Great work! Also the video's you produce are very good, now you can see directly what you envisioned. I have some questions: 1. Why do you use the parameter1, parameter2, ... construct, why not have the amount of parameters as needed or is this to have a simple schema? Wouldn't it be beter to have separate tags for the different actions? 2. Is it possible to extend the functionality to add an entry to any list in any site, and to any listing in any portal area? Would be great to set any property in those lists/listings to any area. 3. Is it possible to make an action that calls a function in an assembly? Would be great if you could specify for example the assembly, the class implementing a defined interface, and in this class a standard function to be called, and finally two parameters: the url of the source document and a string constructed with the field replacements you already defined. This would give infinite possibilities! 4. Could you make the sourcecode available? We could help you in implementing additional features!!
Maxim, I think that the performance hit of replection with respect to the performance hit of adding or modifying a document to a document library is minimal! Event handlers are asynchronious in SPS2003/WSS (you had synchronious events in SPS2001) so I would't bother.
Jan, I had to read further in other posts before posting my questions!!! You already wrote that you will make the sourcecode available! Great! In question 3 above I mean the implementation as done by kaneboy. Would be a great addition, although it is easiest to modify things in the XML instead of having to write code!
We're doing a migration (for a client) from SPS 2001 to 2003. The lack of workflow in standard SPS 2003 is a real issue for us. Do you plan to release the source code to Workflow Lite? (Otherwise, it might be a hard sell). John
Yes, as soon as I release V1 I'll admit members to the GotDotNet workspace, so they can contribute.
My question has to do with either the breadcrumbs or the navigation web part. I can get it to display on my site fine but it seems that it only shows site and subsite levels, it doesn't show down to individual pages. For instance if I go into edit a contact should it show something like rootsite/subsite/contacts/edit contact ? I looked at all the settings but I don't see anything.
I also had some problems with this, otherwise very clear, sample. After deployment the same error pops up in the Event Viewer: "There was a failure executing the receive pipeline: "[NAMESPACE]" Source: "XML disassembler" Receive Location: "[PATH]\*.xml" Reason: The disassembler cannot retrieve the document specification by using this type: "Customers". Either the schema is not deployed correctly, or more than one schema is deployed for the same message type." The schemas are part of my project which was correctly deployed. If it is a namespace-conflict please let me know on a property-level what a should change. Thanx in advance.
Brett, this is not possible. If you want that behavior I suggest you alter the code a little bit.
Just to make sure: you're looking on the server desktop, right? If you're using Terminal Services it's possible that the messagebox shows up on monitor connected to the server.
Hi Jan, in the second question I didn't ment event handlers on other lists, but as a action adding a new entry to any list in any site or any listing in any portal area. Keep up your great work, if you need any help, let me know!
One big thing I miss with tim's feedreader web part is the ability to modify the title of the blog, so if you provide the RSS feeds on multiple blogs on the SharePoint category, they all name in SharePoint so you can't distinguish. You seem to provide this ability! It's late now, but I will try it out tomorrow!
Skelta (www.skelta.com) has recently launched a Workflow accelerator for SPS. Skelta integrates seamlessly with SharePoint sites maintaining the usage characteristics, look and feel of SharePoint. Skelta’s Process designer wizard empower non-technical workers to build and deploy document approval or review workflow within SharePoint sites.
Now, only if it didn't cost 100,000,000$ a pop us college programmers wouldnt have to steal, sorry I didn't mean to say steal,I mean borrow, from other people/ unnamed corporations.
Breadcrumb is great tool but it appears that it requires the user to have at least "Reader" access at all the levels of the site otherwise the user can not get into the site to which he/she may even be an administrator. For instance, if I have top level site http://www.toplevelsite and a subsite as http://www.toplevelsite/subsite, and breadcrumb is setup on both the sites. Now, if I have a user "user1" who is not given any access at the "toplevelsite" but he is administrator on "subsite", he is not able to get to "subsite" because Breadcrumb requires him to have access to "toplevelsite" before he can access the "subsite"... We are using subsites extensively and pretty tight security settings as well. It would be nice to have Breadcrumb like navigation with having to give "Reader" access to the whole site structure to each user!!! Thanks.
I still have the problem that the second person on the list of users is said to be the person who made amendments when it was in fact me as (site) Administrator. When other users make changes, the web parts gives their name (i.e the problem seems to be only with Administrator). Why it is always the second person on the User list, I don't know. I found this out by adding a new user and this became the second on the list. But before you say, I then added another user lower down and the web part still says it was the second user who made the changes.
I get the same problems: 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. Cant seem to find a solution on this forum either.
Did you use the packaged version, that includes an installer? Check here for the latest versions: http://weblogs.asp.net/jan/archive/2004/04/26/120508.aspx
I am trying to have the breadcrumb on all of the default.aspx pages, but I can not figure out the code to point to the breadcrumb, is this possible to do? Such as the Document Workspace's default.aspx page in the TEMPLATE area. Any suggestions would be appreciated.
That's an awesome find, I've got to get one. I can set it on top of my XBox. I got into programming on the Commodore VIC-20 (4K of RAM with about 2K usable). I quickly ran out of space and my parents got me a C-64. During that time it dropped from $495 to $225 with a $100 rebate. I also run a C64 emulator on my PC but I haven't tried one on my pocketpc. I wrote a program that managed and scored cross-country (running) races. I have a picture of myself with a commodore 64 in the middle of a golf course next to a finish line. My dad even helped me solder switches onto pins 8 & 9 of the cartridge port. Ah, those were the days. I'm trying to think of my favorite game back then... there were so many!
Sure, no problem!
Can this run on multiple sites?
I got it to work. I was easy to figure out. I really like the work you did. You mentioned an email trigger. Do you have something in place?
Brad, in V1 (which is nearly finished) you can have actions that send emails.
Use sharepoint lists as secondary data sources in InfoPath.
The web server is set up to require client certificate. How should I select the client certificate and provide it to the webservice ? With C# ou VB.NET this work beatifull, but i need something like this in FoxPro 6 or 8 or VB6 , some body can help me please??
Yes, here I go again, chiming in late. Is it possible that the lists your lookup columning into do not allow anonymous access? Just a thought...
nice
Sounds what I have been looking for, please keep me posted when you have implement it. Regards Raul Tejada rtejada@pancanal.com
To: Jan (the blog owner) Thanks a ton!!! Your solution saved my a**! For the last 2 days, I have been banging my head against the wall and my problem was "exactly" the same as the post attempts to solve. This was a perfect, natural fit for my problem. As soon as I implemented the ICertificatePolicy interface and used the ServicePointManager class, the certificate issue went away. None of this is easy to glean from the MSDN documentation. I am sure that even a couple years from now, there will be folks who will find this info. useful. Thanks again.
This looks similar to the CorasWorks email connector/workflow solution, but it's 'marginally' cheaper. Very good. Thanks for sharing.
looks great jan!
adss
What about searching: do you filter the search results to return only document in the "Published" state?
Can you explain a little bit more Thomas? When do you want to filter?
Thanks ;o) EROL
It's not clear from any of the documentation I have found so far whether iFilters need to be installed on the SQL Server (where the content database is) or on the IIS Server (where Windows SharePoint Services is running). Anyone know?
Great stuff Jan, looking forward to checking this out...
What I meant was when a document is not yet published it should not show up in the search results.
Hi Jan! Your RC1 looks promising. :) I tried to download it but I can't (it shows a disclaimer). How can I download it? By the way, I applied for your workspace, but I realized that I can't help/contribute to your project. Feel free to decline my application. :) Thanks!
Hi jan! I have successfully installed the Beta version but after installing the RC1 edition, I am having a problem. I am receiving the error Could not execute the COPY action.(System.ArgumentException: Value does not fall within the expected range. at Microsoft.SharePoint.SPWeb.c(String A_0, Boolean A_1, Boolean A_2) at Microsoft.SharePoint.SPWeb.f(String A_0) at Microsoft.SharePoint.SPFile.a(String A_0, Boolean A_1, Boolean A_2) at Microsoft.SharePoint.SPFile.CopyTo(String strNewUrl, Boolean bOverWrite) Any ideas?
Eugene, that's strange... send me an email and I'll mail it to you. Graham, I've send you an email for some more info.
Linked
Thanks EROL www.mysps.info
Hi Jan, great part. I also am having the issue aggregating the feed from our portal sites, which all have authenticated access. Can you possibly show us how we can include the credentials?
I see where I can exlcude certain lists, but do not know the possible parameters. Also, I would like to use the title of docs by default. However, people rarely fill in this info. So can someone provide a little code to use the title if it exists, otherwise use filename? Thanks, -Tom N.
2 questions/requests re: the navigation web part. 1) Many people, including me, are quite dissatisfied with the default Sharepoint navigation structure. Has anyone modified the nav web part to show all site structure from the top WSS web site down? In this way, it could be used suitably for left navigation. (Therefore, the tree would not change wherever you are in the site). 2)Has anyone put together a collapsible tree structure for this web part, as the number of subsites may get large rather quickly. 3) Can you include other site structure components (web parts) other than subwebs? For example, doc libraries, discussions, events, etc? I think it would make this web part an indispensible addition to/substitute for all other navigation alternatives.
Hi..jan.. i tried to install the ifilter from the adobe's site and also have installed the filter. but now will my query work the same way as it was before.. like it would now search for pdf files as well.. so m i suppose to add some lines of code to accomplish "search for text in pdf file" or it shall automatically be done by installing the ifilter. I use ms indexing service, iis 6 and win xp. For my search page using asp is ixsso.query object. So can u plz guide if i need to do some changes or it should run the same way but give me results for pdf files as well cheers sr301
I am not into biztalk, but I wonder where the selfdescribing part of this webservice is? In this case all service facades could have only one method: Handle(xml). Ok, it's easier.
You're right, the self describing part of the web service is partially gone (the web service tells you that you can submit any XML document). However in BizTalk scenarios agreements are based on schema's rather than service endpoints. For example a receive port (e.g. a queue or ftp location) can receive any type of XML document. Based on the schema of the received document, orchestrations can be started and the message can be processed. If you want to have the same behavior when using a web service, you can use Scott's generic web service. Think of it as a facade that's process driven, between two or more business partners that know eachother.
I am having trouble getting RC1 to work. I was succesfully using the beta and now It doesnt seem to work.
Hi Jan, I installed the beta version, and it works fine but for RC1, it does not work eventhough I followed the instructions indicated on the readme. I don't receive any application error.
i wana take that version
i wan aad 7 version of msn
When I install the Lead-it SharePoint RSSReader Webpart 1.0.0.1.msi.....it never prompts me for the installation location. Does this require a 2003 Server ? Or will it work on a 2000 Server ?
Steve, it should work on both of them.
Jan, I took your idea and instead of using the WSS Web Service, I used the SPS Area Web Service to get a view of the Portal Area structure. You can download it from http://www.peterprovost.org/archive/2004/06/07/1348.aspx
i failed to run your webpart on my SPS 2003. Either installing webpart by means of MSI-pack or installing Leadit.SharePoint.Administration.dll manually resulted the same - the whole webpartpage with your webpart failed to open with "Access denied" error. Can you help me
Still unable to get RC1 to work. I followed the install precisely. Any idea why I am unable to get it to work. In the meantime I went back to the beta version. Please keep me posted
Great webpart! I have a simple question...where should I put it in my site? If I stick it on the homepage, it prompts non-admin people for their password and won't let them in. Maybe I could create a special admin-only list on my site and drop it there?
I could not all a web reference using Visual Studio.NET to a webservice running in SSL. Iam getting an error stating "The proxy settings on this computer are not configured correctly for web discovery. Click the Help button for more information." Can someone tell me the steps for adding webreference a Webservice running in SSL.
Thx Jan!!! There will be a show! :-)))))
I'm having a similar issue that Stan is above, except I am definitely using the same account to in both FrontPage and via the web browser, where the page will give the error the "list does not exist." In FrontPage everything looks great and works fine. Possible ideas on what could be causing the problem -- 1) i have lookup columns in the document library i am setting up the dataview for, 2) the sub-site I am querying does not inherit the permissions from the parent site, though all applicable users have access to both sites, 3)... I can't think of anything else. Anyone with ideas, could you please email me at wss@buttermymussin.com? Thanks so much.
Now Fons and Jan Tielens, have improved on the this with the SmartPart for SharePoint ...
Jan, you did a great job! It's way too cool! It's just so easy to hook up your ASP.NET user control with the smartpart. Just what we need! Now make them connectable! ;-) Again, Wow!
Wow, video. Great man!
What a great way to use .NET and SharePoint! I put an entry in my blog about this as well. Great work you two!
Some explanations : In the code we post on 4/30/2004, we created a class that inherits the wrapper VS.Net build for the web service instead of modifying the wrapper class itself. The reason for this is quite simple. Since the web service class is not modified, you can get new versions of it without having to apply the fix again and again. (this is very useful when the design of the web service is done along with the development of the client side). Just a remark : This error may occur even if the code above has been applied. It seems that Microsoft identified a bug in ASP.Net and has a non-public patch for this (http://support.microsoft.com/default.aspx?scid=kb;EN-US;819450). So, still investigating...
Ok, es tut sich mal wieder viel im SharePoint-Universum.
Great idea. Looking at the video, I only wish my laptop was just as quick at creating visual studio projects!!
You guys are amazing! This is what we have been waiting for. While we where waiting, you just developed it! Great solution to a huge problem.
Nice tool here... added to my blog
I was trying to figure out the syntax for something similar to
Is there anyway you could create an installer for the DropDownNavigation WebPart like you did for the Lead-It Navigation? That would be very helpfull, thank you.
Jan is just too cool!! Just as I am getting over my ecstasy with what he had created with Workflow Lite - now he has come out with Smartpart. This guy should really get a HUGE award for all the great work he is doing in the SharePoint community. I can't stress how impressed I am. Great work again Jan! I have been working very steadily with SharePoint for about 2 years now and I absolutely love it. I love what it does for me today and even more so I love it's potential. Aside from the power given to the information worker (which is tremendous), what really makes SharePoint scream are the web parts, tools and add-ons that developers like Jan come up with that extend the platform....
Jan, you are doing some AMAZING work with SharePoint. I am positively in awe of all the cool stuff that's coming out of your mind. Rock on!
Just great, nothing more to say...
Is there a way to set up an alert for contacts? Specifically, I want to set up an alert for a distribution group, but can't because the group doesn't have a real user id. Any suggestions? I'm new and don't have any .net programming exp.
I'm getting the "Value does not fall within the expected range" error too, with RC1.
I really like it
Thanks for the kind words Jan. I'll try to post some more cool webparts within the next weeks.
I see that Tom van de Kerkhof has created a Treeview Webpart based on Jan and Fons' SmartPart. This is great. It is so exciting to see how many great things are happening right now with SharePoint. It really goes to show how much a difference a community makes to any application or software that is introduced to the market....
if I use ascx file which contains codebehind file and database interaction means it gives me error. but calendar part works great! Can anybody help to connect ado based ascx file to convert as webpart? shridhar
Thanks for this information, EROL (www.mysps.info)
Has anybody had any luck with RC1 ? I'm also getting the "Value does not fall within the expected range" error on COPY action in the Event log.
Jan, Of course, it is possible to run User Controls in Bin direcotry without registering anything inside GAC. Just keep in mind that if you want functionality avalable throught different vservers then GAC is good solution! I also noticed that you are using Wppackager deployment took way to go. One bug you have in the wppackager.xml file is you pasted short token value not the blob use secutil to retrieve the full strong name blob. I will make a write up on this isse :) Stay tune, Maxim [www.ipattern.com do you?]
I am having the same navigation problem as Chris, some subsites don't show the correct tree. I have the following: Site |-Sub1 |--SubSub1 |-Sub2 It shows the whole tree at Site and SubSub1, but Sub1 only shows: Site |-Sub2 and Sub1 shows only: Site |-Sub1 |--SubSub1 Start from root and 5 levels is selected for all of them.
For reference I am running WSS on 2K3 server using MSDE.
I am having the same navigation problem as Chris, some subsites don't show the correct tree. I have the following: Site |-Sub1 |--SubSub1 |-Sub2 It shows the whole tree at Site and SubSub1, but Sub1 only shows: Site |-Sub2 and Sub1 shows only: Site |-Sub1 |--SubSub1 Start from root and 5 levels is selected for all of them. I am running WSS on W2K3 with MSDE.
I am also getting this error, any news on how to fix it? Btw, great job Jan the videos look great for a sharepoint only workflow which is exactly what I'm looking for at the moment. Looking forward to getting this fixed...
Jan, Simple solution for the GAC problem will be. 1. Compile everything with the same *.snk file. 2. Then use C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin\SecUtil.exe -hex -s [path_dll] 3. Add following Code group <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust"> <IMembershipCondition version="1" class="StrongNameMembershipCondition" PublicKeyBlob="0x0024000004800000940000000602000000240000525341310004000001000100BB20A2F20001218C2100806C4A656705F4220FE7636574B9B8128E0AA44BE734F379B88130A29020D658ED8CFA1B0A0C93094A22144C54476A507FBB5D812C94DD412AB260EED31D99857A53E20200AC9020007D852540DB43C54D5269507DD45181B1B5E6766C9E2FB3DD0C931C2D1B22ADFDCEC8FDB02E423E3D8BBD59C4B9" /> </CodeGroup> Right after the following in the WSS_Minimal <CodeGroup class="FirstMatchCodeGroup" version="1" PermissionSetName="Nothing"> <IMembershipCondition class="AllMembershipCondition" version="1" /> 4. IISRest.exe and you ready to go I hope this hepls. Maxim BTW. I am working on the second article on CAS which will cover this in some details [www.ipattern.com do you?]
I am also having the same COPY error. The Delete function works so I know it is executing. Are we able to download the Beta version in the meanwhile?? I can't find it anywhere. Thanks.
Hi Jan, my .NET skills aren't any good so pardon if the question is somehow trivial. It seems I cannot deploy the DropDownNavigation.dll (or the treeview for that matter) in my \windows\assembly directory. I'm getting an error that states the dll has not a strong (secure?) name (more or less, take into account that the error is in spanish). So I can't go any further. Any help with this?
If you want to deploy the DropDownNavigation.dll to the GAC, it will need a strong name. It comes down to generating a public/private key pair with the SN utility, and adding that key to the AssemblyInfo. The complete process is described in this article: http://www.dotnetspider.com/Technology/KBPages/406.aspx Remember that you don't need to deploy the DropDownNavigation to the GAC, unless of course you've made some adjustements that require GAC deployment.
I just follow the instructions to install the SmartPart. I want to try the dropdown navigation example. However, after placing the web part and fill in the path, it returns this error: "Error: unable to load ~\UserControls\Dropdownnavigation.ascx Details: Request for the permission of type Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c failed." Please please help. P.S. I am not a developer. So, please speak it slowly. Thanks a lot.
I also recieved the following error when I attempted to deply the DropDownNavigation user control. Error: unable to load ~\UserControls\DropDownNavigation.ascx Details: Request for the permission of type Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c failed. Please Help...
Attention: works: C:\Test\%SourceFileName%.xml won't work: C:\Test\Test_%SourceFileName%.xml under BTS 2004
I'm having the following Error!! How can I fix it??? Unable to instantiate event handler (assembly "Leadit.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=3948f234bbbabe18", class "Leadit.SharePoint.Workflow.EventHandler"), or report event for "En Progreso/Demo WEB Parts.txt" in "En Progreso". Could not execute the COPY action.(System.ArgumentException: Value does not fall within the expected range. at Microsoft.SharePoint.SPWeb.c(String A_0, Boolean A_1, Boolean A_2) at Microsoft.SharePoint.SPWeb.f(String A_0) at Microsoft.SharePoint.SPFile.a(String A_0, Boolean A_1, Boolean A_2) at Microsoft.SharePoint.SPFile.CopyTo(String strNewUrl, Boolean bOverWrite) at Leadit.SharePoint.Workflow.EventHandler.HandleEvent(SPListEvent le))
Jan, I not sure if you saw this article or not but here is a great explaintion of all ther options you have to calling Web Services http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_wsscodeaccesssecurity.asp Maxim [www.ipattern.com do you?]
I reinstalled and now I am getting the following... Unable to instantiate event handler (assembly "Leadit.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=3948f234bbbabe18", class "Leadit.SharePoint.Workflow.EventHandler"), or report event for "Work In Progress/fdghjhj.doc" in "Work In Progress". Could not read config file.(System.InvalidOperationException: There is an error in XML document (2, 2). ---> System.InvalidOperationException: <WorkflowConfiguration xmlns=''> was not expected. at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReader1.Read8_WorkflowConfiguration() --- End of inner exception stack trace --- at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle) at System.Xml.Serialization.XmlSerializer.Deserialize(TextReader textReader) at Leadit.SharePoint.Workflow.EventHandler.get_Configuration())
Same thing here. Unable to instantiate event handler (assembly "Leadit.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=3948f234bbbabe18", class "Leadit.SharePoint.Workflow.EventHandler"), or report event for "Doclib1/Teste do sp2003.doc" in "Doclib1". Could not read config file.(System.InvalidOperationException: There is an error in XML document (2, 2). ---> System.InvalidOperationException: <WorkflowConfiguration xmlns=''> was not expected. at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReader1.Read8_WorkflowConfiguration() --- End of inner exception stack trace --- at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle) at System.Xml.Serialization.XmlSerializer.Deserialize(TextReader textReader) at Leadit.SharePoint.Workflow.EventHandler.get_Configuration())
Oh my god! It seems that the HTML filtered out some tags... :-( Please see the original post, it should display the corrected XML (again). The Workflow tag should contain following namespaces: <WorkflowConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Leadit.SharePoint.Workflow/WorkflowConfiguration">
Well, that error previously stated: Error: unable to load ~\UserControls\DropDownNavigation.ascx Details: Error de solicitud de permiso de tipo Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. is the same i was getting. I pretended to solve it by deploying to the GAC (no luck) but it seems that's not the cause of the problem at all. Any idea Jan? Thx for the good work
Very nice webparts. But I have a question regarding the navigation webpart. On the main site for the whole portal (I have called it MainPortal) I have put the navigation webpart. Under the main portal, I have 2 sites, called TestSite1 and TestSite2. Under TestSite1 I have another subsite called SubTestSite1. On the navigation webpart that I have put on the main portal page, I get a list of a lot of things, but everything is on the same level, and the sites are not there (I have chosen 5 levels...). The closest I get is a link to "sites" which takes me to the sites page. And from there I can navigate to TestSite1 etc. But I was hoping to get a tree view on the main portal page which included TestSite1 with SubTestSite1 under it, TestSite2 etc... Have I misunderstood anything? Or am I doing something wrong??
Hi Jan, This is really cool And I noticed the config file has got sorted out in RC1c Btw how about including logging in this. Might be easier to troubleshoot issues that may arise that way.
Tariq What do you mean by loggin? Bugs/issues can be tracked in the GotDotNet Workspace. Or do you mean logging inside the workflow engine?
this is only work for serial flow. is it possible to make it parallel also. i mean both work together ??? if yes...tell me in details.....
works great, Having a little trouble with the email.
Unable to instantiate event handler (assembly "Leadit.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=3948f234bbbabe18", class "Leadit.SharePoint.Workflow.EventHandler"), or report event for "Work In Progress/This is work in progress.doc" in "Work In Progress". Could not execute the SENDMAIL action.(System.Web.HttpException: Could not access 'CDO.Message' object. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x80040213): The transport failed to connect to the server. --- End of inner exception stack trace --- at System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters) at System.RuntimeType.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) --- End of inner exception stack trace --- at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) at System.Web.Mail.CdoSysHelper.Send(MailMessage message) at System.Web.Mail.SmtpMail.Send(MailMessage message) at Leadit.SharePoint.Workflow.EventHandler.HandleEvent(SPListEvent le)) For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
When I download the source code for the RSS Reader, the project references an RSS directory that contatins the RSS and RSSFeed namespaces, but the files seem to be missing from the ZIP archive. Please help.
please disregard. I needed to enable smtp mail relay
Now working, thanks.
Jain Could you explain the scenario you are thinking about, a little bit more? Btw, maybe it's easier to contact me through the contact link to solve this issue.
Andy, are you using WSS or SPS?
hi jan, in this existing scenario , only one persone at a time can approve the document after this it moves to next folder for other person approvable.but if more then one person suppose three person want to approve/reject this doc OR any one out of three then this workflow lite will not work.(parallel flow.)
Jan, Why don't you publish the source code? Really nice product, keep working on it!!! Oriol.-
The formulas { FIELD:Title }... don`t work. I have the WSS installed in Spanish, this could influence? If in a parameter in config.xml I put {FIELD:Title}, in the WSS appears the text {FIELD:Title} and not title of the document. How could I use references to other fields of the document library item? Thank you.
Oier, you can replace Title by the name of the field in your doc. lib. For example {FIELD:MyCustomField}
I use SPS...
Great work! Trying to the SENDMAIL action working but having a little trouble. This is the message saved to the event viewer: Unable to instantiate event handler (assembly "Leadit.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=3948f234bbbabe18", class "Leadit.SharePoint.Workflow.EventHandler"), or report event for "In Review/Full page fax print.pdf" in "In Review". Could not execute the SENDMAIL action.(System.Web.HttpException: Could not access 'CDO.Message' object. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x8004020D): At least one of the From or Sender fields is required, and neither was found. I have specified a From email address in the format name@company.com. Lloyd
>I have specified a From email address in the format name@company.com. Sorry, this is incorrect. I've specified the "To" email address like: <Parameter1>name@company.com</Parameter1>. I don't know what user it is using as the Sender. I gess Workflow Lite takes care of that?
Lloyd, could you verify that the account you are using to run the workflow (the one specified in the machine.config), has an email address in SharePoint?
Thanks Jan, that solved it. Is there a particular reason why the workflow user is being used as the sender rather than the "Modified By" user?
Yes, it was a design choice. It's easier to enforce that that service account has an email, than each user.
Encountered same error as Emiel.
Can workflow lite work with Lists too? Like the Issues list? I would like to send email to people based on the status field of the issues list(open, updated, resolved)with fields from the same list in the body of the email message.
Hi, I just read your workspace. Is workflow lite work for SharePoint 2003 ?
Wade, it only works with Document Libraries (by design of SharePoint itself). Riwut, it's for SharePoint Portal Server 2003 or Windows SharePoint Services.
Sorry, I tried on and found out that the file-adapter for non-XML files doesn's recognize the %SourceFileName% property! Does anyone know about this issue?
It seems like I can use the files from version 1.0.0.0. Please let me know if this might cause a problem.
i want msn to come out in june 21st 2004
i want Msn 7 come out on the 1st july 2004
This is just completion of my previouse article on CAS. I am still thinking on finishing off the series with SharePoint specific article and releasing a CAS SharePoint ToolKit. What do you think? Maxim [www.ipattern.com do you?]
I placed the navigation web on the main page of my portal. It shows all of my areas. However, it doesn't display anything from http://portal/sites or below. The CorasWorks workplace navigation webpart doesn't seem to be able to handle this either. Anyone aware of a webpart that can show sites from the portal on down into WSS sites?
Michael, see if this fixes your problem. In "RenderWebPart", add this else clause after the "if(web.ID != childSite.ID)" that is in the "foreach" clause: else { output.Write("<li>{0}</li>", childSite.Title); RenderWeb(output, childSite, 1); } To make it even cleaner, remove the calls to "RenderWeb(output, childSite, 1)" from the if and else blocks and put it after the whole structure. Hope this helps!
As a re on Martin Kirsch's: works: C:\Test\%SourceFileName%.xml won't work: C:\Test\Test_%SourceFileName%.xml Strange because: C:\BT2004demo\%datetime%_%messageid%.xml works just fine here.
Is it possible... to make individual documents [not all] accessible to outside viewers but with one central location? In other words, is it possible to share filtered documents to viewers outside my SharePoint community? Maybe have a library on my root site that incorporates already filtered sub-site libraries? Can I make this possible with FrontPage or any other services? Any thoughts appreciated! Please question if unclear. Thanks all!
Maxim, that sounds really great. A lot of developers are contacting me about SharePoint problems, and in a lot of cases it comes down to problems with CAS. So I do think an article that explains it all would be "a hit"! Contact me if you want more ideas and/or a review.
and smartpart shows (c:\windows\microsoft.net\framework\v1.1.4322\Config\machine.config line 198)
I have added the following class to my code for consuming a webservice (I added it to the form1.cs). I want to be able to accept all certificates for testing etc.. public class TrustAllCertificatePolicy : System.Net.ICertificatePolicy { public TrustAllCertificatePolicy() {} public bool CheckValidationResult(ServicePoint sp, X509Certificate cert,WebRequest req, int problem) { return true; } } However, when I try to build the application, I get the build error: 'TrustAllCertificatePolicy' does not implement interface member 'System.Net.ICertificatePolicy.CheckValidationResult(System.Net.ServicePoint , System.Security.Cryptography.X509Certificates.X509Certificate, System.Net.WebRequest, int)'
Dude, this rocks, You Rock. Been trying to do this for a few weeks, Thanks
UPDATE: By trial and error it has become clear that if you have SQL on a different server then you need to install the iFilter on the SQl Server not on the IIS server.
sr301, Check the Adobe site... there is an issue with ifilter on XP - you need to make some registry changes to fix it.
I get a 401 Exception from the server. I tryed to put some code for proxy settings, but it is not enough ?!
Hi I have tried Smart Part coupe of times.But every time I get the following error message.Kindly help. The "UserControlWebpart" Web Part appears to be causing a problem. Web Parts Maintenance Page: If you have permission, you can use this page to temporarily disable Web Parts or remove personal settings. For more information, contact your site administrator.
I am getting the below mentioned error .I have tried couple of times ...Any help will be highly appreciated. The "UserControlWebpart" Web Part appears to be causing a problem. Web Parts Maintenance Page: If you have permission, you can use this page to temporarily disable Web Parts or remove personal settings. For more information, contact your site administrator.
I had the same failure on the receive pipeline. Undeploying doesn't clean out the GAC as you would expect. I fixed it by incrementing the version of the project and re-deploying.
This seems like too much work! I have a simple XML document with a single repeating section containing only two fields. I want to use both fields within a second form such that theres a drop down list populated by the entries in the first field and have the second fields related entries automatically inserted into a field in the second field. The fields in the first form are 1. the common names of flowers, 2. Their Latin Names How easy could it be! Yours frustratedly nicksoph
Great! thanks for your shares
Brilliant!
Hi Iam trying to add header file to my output given by mapper and attach header file in send pipeline.I have tried with my header schema to give as header file to my output.Thanks Ram
I changed the code to only pull in the users for the current site, rather than for the whole site collection by changing calls to web.SiteUSers to web.Users. I would guess that this is the desired functionality in most cases. May I suggest that this change be made in any future versions.
Hi, I'm using this webparts but the Leadit.SharePoint.Essentials.Navigation only show the first 2 levels on the tree if I use it on the top-level site, if i put the webpart further down the tree of sub-areas it only appers the area itself and none of the subareas, there is a solution for this? Thanks!
Steve, I would be glad to make the changes to the source, but I have no idea how. I see the source is available for download, but I don't know what to do with it after I modify it. If there is some way I can modify the web part in place I will be glad to do that, though.
I was feeling left out....... Error: unable to load ~\UserControls\DropDownNavigation.ascx Details: Request for the permission of type Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c failed. Like the other posters, I've looked elsewhere, but I don't know what's up. Anybody help??
I came across the issue. Instead of opening my HttpRequest with : //request = (HttpWebRequest)WebRequest.Create(uri); request = (HttpWebRequest)WebRequest.Create(url); where uri is of type Uri and url is the string given as parameter ???!!! I am lucky it works, but I don't understand why ?!
Jan - is there a way to allow a trigger to be based on more than one field value? Also, is there a way to tell it to trigger if a value is empty? I've tried " " and "" for my values on the trigger and niether work. I am attempting to reset the "Approval Status" value to "Pending" (2) if the "Approver Comments" is empty but I cannot get it to fire. I am trying to take advantage of the built-in approval / rejection methods that document libraries allow you to enable. The problem is that some of our portal-site administrators will have access to this particular site but they are not allowed to approve documents they submit (they are not defined as site administrators in this specific site, but they are in the actual root portal site). The site has been setup to use "unique permissions" instead of inheriting the parent permissions but I seem to still have problems with it automatically setting the document to approved. Any ideas? Scenario: monthly management reports from our divisions are to submit documents to a specific document library. Once submitted, our president reviews the documents. If he rejects them, his assistant takes care of making the necessary changes. The document is then put back into "Pending" approval and our president is to once again review and approve if necessary. Some people who are submitting documents are part of the portal administrators, but have only been defined as contributors to this specific site. The problem is these "special" users are automatically approved once submitting the document. So, I thought I could check if comments were included and if not, reset the status to "Pending" otherwise allow it to be approved since there are only two people allowed to approve documents and I will tell them they must submit the approval with comments.
Mike, can you send me an email (using the contact form) so we can discuss your problem in detail? At this point it's not yet possible to trigger actions based on the value of 2 fields.
could you please tell the solution for this.
This works great, but not as expected. I was hoping that it summed up all new items on my entire portal, not just the subsites below one single top site.
Hi, I'm following the different blogs for a couple of weeks. And I have to admit I learned some great new stuff. However I'm still suprised by the technical level of all the information, and a low business adaption. Microsoft is trying to move to a service approach........ but I think we are far from their... Sorry to use your blog to share my comments. Greetings, Hans
Oe Oe Oe! ;-)
Add control to the web.config of your sharepoint site. <SafeControls> <SafeControl Assembly="WeatherInfo, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6185e98411448c6a" Namespace="WeatherInfo" TypeName="*" Safe="True" /> </SafeControls>
You have one, avid reader #1 ;)
Yes! I did it! ;-) Thanks for "comming out the closet"!
So, let the posts come... :-)
Great work! I was trying to remove a particular user from the alert through the remove selected alert which I created through this web part, but it doesn't remove em.
Is it possible to trigger on the "Approval status" field/value ? I have tried with no success. I would like to move the documents based on approval status.
Hi When i try to add the useralert web part I get the question for user an password, and access denied. Seems that whatever i try to autenticate with i get a problem. Can anyone tell me what the problem is, and what rights the user should have ? I am running as administrator on aa test-server. Idid run into the same problem with the Snorre
saeed, Look at the original solution posted by Jan. Solutions by Schwank and Skeup&Zeb seem to be a bit overcombinated. There is no need to use that property info. Just use the request object returned by the call to base.GetWebRequest(uri) One more thing. For me changing only .KeepAlive to false didn't help at all. However when I changed also .ProtocolVersion to HTTP10 the problem was gone.
Is the new MSN version free? sandra degarie sdsummit11@hotmail.com
For the people who are attending Teched in Amsterdam, walk to the ask the expert area and ask for a demo on the IBF booth (next to the sharepoint booth) They have a very nice demo about integrating office with CRM through IBF.
Thanks for the fix, it works great. I also have a question. Should you use this method only for web service calls that include WSE functionality or can you use it on all web service calls. P.S. I did see the example on how to fix the issue for non-WSE web services that link to this page...
When I catch "Modified By" fiels I get "#:4Administrator" instead of the value "Administrator" Where did the "#:4" bit come from?? and how can I stop it from adding this extra piece?
I was wondering if Workflow Lite works with other Office versions (2000, xp) because from what I see in the demo it only works with 2003, is that correct??
Hi Jan, First of all : your work is very helpfull to me where I'm discovering Sharepoint features. At the moment I'm trying to implement your Workflow Lite version RC1C. I think I've installed and configured according to the documentation, but when changing a status value in the source document library nothing happens. Not even an error or logging. So I have some questions : 1. How can I find out if the configured config file is or is not used ? 2. Must all actions be present in the config file or can I reduce to for example only the DELETESOURCE action for testing ? 3. Could the fact that I'm implementing for external access (DocumentLibraryURL="http://www.bk2000.nl/sites/wflow/xxx/forms">) be the troublemaker ? 4. I'm running a Dutch trial version of SPS2003. Is there except referring to other FIELD:names as in your example config file anything else that I therefore must change ?
I'm sorry, but doesn't anybody notice on the Navigation part that the indentions are waaaaaayyyyh too far - e.g. 1/2" each level and it does not text wrap - where can you change this???
Problem solved. I was testing on an external documentlibraryurl from within my local network. Works fine now, compliments, I'm very interested in what is to come next.
Hi , I had modified config file and reduced the Actions only to COPY.It's not working ... Whether all actions be present in the config file ?? Pls. respond.
Found this RSS Webpart via Jan's Blog today. I installed it and it's a beauty! Quite nice and very easy to setup. I have noticed more and more examples of content from SharePoint being exposed through RSS feeds and that in my opinion is a very good thing....
Hi Poonam, No, not all actions have to be present. There are a few things however you should look after : Be sure that all colums and actions in your config file have the exact same name as in your document libray, they are case sensitive! In detail : <?xml version="1.0" encoding="utf-8" ?> <WorkflowConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Leadit.SharePoint.Workflow/WorkflowConfiguration"> <WorkflowStage DocumentLibraryURL="-X1-"> <Description>DocumentLibrary 1</Description> <Properties> <Property Name="-X2-"> <Triggers> <Trigger PropertyValue="-X3-"> <Actions> <Action Type="COPY"> <Parameter1>-X4-</Parameter1> <Parameter2></Parameter2> <Parameter3></Parameter3> </Action> </Actions> </Trigger> </Triggers> </Property> </Properties> </WorkflowStage> </WorkflowConfiguration> If for example you want to copy a document from documentlibray work to documentlibrary done Suppose the libraynames are "http://localhost/sites/wflow/work"">http://localhost/sites/wflow/work" and "http://localhost/sites/wflow/done" Replace in the above : -X1- with the source documentlibraryurl : "http://localhost/sites/wflow/work"">http://localhost/sites/wflow/work" -X2- with the column you use for action triggering : for example "Status" Be sure that this column is in your documentlibarylistheader -X3- with the value of column X2 on which you will take action : for example : "Ready" -X4- with "done" In your case both doclibs should have the same columns. If you want to give the document in the destination library a new status you must the setfieldvalue action. I hope this helps, otherwise you can contact me on bk.2000@home.nl Sjeng
This is a great tool for the site. Does anyones knows a feedreader that understands NTLM? I've looked at SharpReader and FeedReader - both work fine on Basic auth, but not with NTLM. Thanks.
when is da new one cumin out!? n is it free!? write bk! xxx
for your question about spliting flat files into multiple xml docs check C:\Program Files\Microsoft BizTalk Server 2004\SDK\Samples\Pipelines\AssemblerDisassembler\EnvelopeProcessing. You shall find the anwser you seek.
will like you to allow me download the new version of the msn. Thanks
kindly help me download your new msn version now. Thanks
>> Does anyones knows a feedreader that understands NTLM? It's a bit "round the houses", but I retrieve RSS feeds with a bit of perl code, and the perl LWP library can be extended to understand how to do NTLM authentication with the LWP::Authen::Ntlm module (that's how I grab RSS feeds off our intranet). So you can either write a bit of perl to grab the feed and hold it locally, or do the hacky thing of writing a page on your own webserver that, on demand, grabs the real feed and returns it - a sort of PerlScript ASP web proxy thing - not difficult if you've done any perl ASP pages before...
Anyone know what settings I would have to change to go from the following schema: <ns0:Customers xmlns:ns0="http://Test.customersenvelope"> <ns1:Customer xmlns:ns1="http://Test.CustomerDocument">">http://Test.CustomerDocument"> <CustomerID>1</CustomerID> <Name>Customer One</Name> </ns1:Customer> <ns1:Customer xmlns:ns1="http://Test.CustomerDocument">">http://Test.CustomerDocument"> <CustomerID>2</CustomerID> <Name>Customer Two</Name> </ns1:Customer> </ns0:Customers> To this simpler one: <Customers> <Customer> <CustomerID>1</CustomerID> <Name>Customer One</Name> </Customer> <Customer> <CustomerID>2</CustomerID> <Name>Customer Two</Name> </Customer> </Customers> Thanks for the awesome example!
Is it possible to combine multiple lists with the same fields into ONE single Data View? I want all my clients to log into a SharePoint Site, go to the list I assigned for their company and enter in a work order. I wonder if there is a way to view the data in all these lists in one view. I know you can query it within MS Access, but I don't want to go that route.
I must admit that I don't get it. I always thought that the initial installation was the killer- sysadmins are very picky about which assemblies are deployed on to production boxes. So the "requires no access to the server once it has been installed" is basically useless... Can anyone clue me in? I'm obviously missing something
Tasia, yes it works even without Office! But of course you won't get the neat integration with Office 2003.
Hello, excelente Job ! Why cant i map it to a dataset ? It gives an exception while mapping it to table name of the dataset. Thanks in advance.
wertwert
I am using WS Portal Server 2003, Windows Server 2003 w/ IIS6.0. All of the help sites I go to say to edit the c:\inetpub\wwwroot\web.config folder but I do not have that file there. Is there another location this should be, there are several when I do a search on the server so I need to know which one to edit. P.S. Is there a way to convert the older webparts MS has to be used in the newer versions of portal and WSS? Thanks!
There is no property called "SourceFileName". I checked with all possible combinations. It didnot work venkat.
Problem with triggering on the "Approval field" solved. If you want to trigger on the approval field (I wanted to copy a document based on the approvalfield value) add this to the config file: <Properties> <Property Name="Approval Status"> <Triggers> <Trigger PropertyValue="0"> <Actions> <Action Type="COPY"> <Parameter1>In Review</Parameter1> <Parameter2></Parameter2> <Parameter3></Parameter3> </Action> <Action Type="SETFIELDVALUE"> <Parameter1>Submitted by</Parameter1> <Parameter2>{FIELD:Modified By}</Parameter2> <Parameter3></Parameter3> </Action> </Actions> </Trigger> </Triggers> </Property> </Properties>
And it's a great macro! :)
The general problem with some of the existing RSS generation systems is the configuration story. A lot of them require adjustment of a custom configuration file which is stored on the file system (typically in the _vti_bin or _layouts folders). Therefore, if you want to add/modify a feed, local file system access is required. Since the Syndication Generator is a web part, you can modify your feed from a browser by simply opening the property toolpane (assuming you have the proper permissions). Thus, the need for file system access is completely eliminated once the web part has been installed.
I wonder how many people living in Luxemburg speak Dutch ?
I've read your article, I didn't know of the Ctrl-I command, so thanks for pointing me out!
I WANT TO DOWNLOAD THE NEW VERSION!! HELP ME
By the book, nice video showing how it should work.
I'm having problems getting the reader to work. When i install the part on my site, and go to 'modify shared web parts', i get about 25 lines of code before the properties display. Even if I fill in all the required information, it doesn't save. is there a particular setting that needs to be turned on or off in Sharepoint for it to work?
this new version of msn is very helping me get to finally talk to my friends.
thanks very much for the tip, Jan
Didn't know about ALT-SHFT-ENTER thx :)
Hello everybody i have the following code to access an application via https: --------------------------------------------- System.Net.ServicePointManager.CertificatePolicy = new TrustAllCertificatePolicy(); httpWebRequest = (HttpWebRequest)WebRequest.Create(url); X509Certificate cer = X509Certificate.CreateFromCertFile(@"c:\CertificadoCliente.cer"); httpWebRequest.ClientCertificates.Add(cer); httpWebRequest.Method = "POST"; httpWebRequest.ContentLength = stringPost.Length; streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()); streamWriter.Write(stringPost); streamWriter.Close(); HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse(); StreamReader streamReader = new StreamReader(httpWebResponse.GetResponseStream()); respuesta = streamReader.ReadToEnd(); streamReader.Close(); --------------------------------------------- Although the connection is created (i think the certificates are correctly installed), i got an exception when i try to close the streamWriter: "Cannot access a disposed object named \"System.Net.TlsStream\"." As you can see i have created the TrustAllCertificatePolicy class, but i still get that exception. Could anyone help me? Thanks in advance. Patricio.
isnt this supposed to be the regular expression? (Dim|Private)\s*(?<varname>\S*)\s*As\s*(?<typename>\S*)
I program in both C#.NET and VB.NET and have experience in VB, C++, and Java. In .NET 2003, at least, C# supports continue. I whish VB.NET would as well. In my experience, VB.NET is too verbose. WithEvents, ReadOnly, Implements, are just a pain. Overall, I think C# is preferable, and I hope it never degrades to the point of losing case-sensitivity. Laslty, if you call a method, add your own (). There's no excuse for being lazy.
Very helpful. Thanks so much!
We have the same problem ! and I tried to fix the problem using the keepalive = false Statement I am really frustrated it doesn’t work, our setup contains a sun machine with reverse proxy with .Net application server when the client try to access the web service error message appear saying "The underlying connection was closed: An unexpected error occurred on a send." Please help….
I was wondering how to limit the amount of records shown, to possible the most recent, or the last id, ive tried using the filter, but there is no obvious way to do this.
GREAT! This is just fantastic stuff!!! :)
Great stuff. Adding the list is an excellent idea. Are you taking suggestions for the next iteration? If so, I have one. Currently you can use SmartPart's libraries in the user control to call Sharepoint. This is obviously very useful. The next step from this, I would think, would be the ability to compile a user control, using SmartPart's facilities, that would be exposed to the world as a full-fledged web part. It would have a separate entry in the web part list, its own name on the title, and no SmartPart user control list dropdown. This would represent what I would think would be a kind of holy grail: The ability to use user controls' full design mode facilities to create a web part.
I have found the solution by myself, the problem was that i have the client certificate installed only for the machine account. I have also installed it for the current user and now all it´s working fine. Thanks a lot. Patricio
Rebecca, I'm not sure this is possible in a pipeline because of the fact that the namespaces help distingush the schemas between envelope and document. However if you just want a new schema to use then just remap it in an orchestration transform map. Great example Jan. I was also struggling with the problem. Just wondering if you figured out how to do this in an orchestration with looping through nodes. I've looked at this message board: http://www.webservertalk.com/archive184-2004-6-267243.html but no one has a clear example like yours. Thanks in advance
Thanks alot, been looking all over for it. A shame it's not in the BizTalk installation procedure. :-(
Thanks Jan, great webpart !
The problem has been fixed in the newest version. More info can be found at http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?id=52.
some 1 please email me if they know when messenger 7 is coming out! ashp9@hotmail.com
Have I listed this correctly? If not, please let me know and I will make any corrections. http://attunesystems.mywsssite.com/wpcatalog/Lists/Web%20Part%20Catalog/DispForm.aspx?ID=1
Yes, thanks for mentioning!
??!thanks!
linked
This is f00kin' awesome! Very rawkin'! I got this goin' no problem. You guys are my fathers!
Hi there, Compliments on your fine web part....it is highly customisable and intuitive. One question - is it possible to set the menu to be expanded by default? -- so the user does not have to press the "Sync Tree" or other levels to view the 1st level of the tree? Cheers, Shane
Nice additions indeed...but no luck getting them to workk here. Although the smartpart installs and displays the Usercontrol list correctly, once I add it to the page it refuses to display some of the UserControls that worked perfectly before (with version 0.1). In particular any Usercontrol that connects to Oracle (via OleDB) won't show in the page (appears just blank). I have <trust level="Full" originUrl="" /> set in the web.config (tried at WSS_Medium with no luck and it broke some things in the proces...) Any ideas? JoSE ==== PS.- GREAT job here Jan, great job
Update: Is not Oracle what is causing problems...all user controls cause them. Even if recompiled with v0.2 of the smartpart.dll. The browsable properties and the list of controls are shown though.
Final update: Got them working now. The problem was I kept using the UpdateControl function that is no longer valid.
Thanks you, good fellow!
AWESOME!
Cudos to you Jan this is a simple and most effective solution that you have developed. This has saved me weeks of potential hell. I owe you a beer! Cheers
no Comment
Will this be available for download in thte future
After Install I get "ACCESS DENIED" to the whole area where I try to place the web part... Is there a solution to the "Access Denied" problem?!??!? Many people have reported it previously, but I see no solution... Jan?? (I had to open it in FrontPage and take it out to regain access).
It appears that the %SourceFileName% property is not recognized in non-XML files. Does ANYBODY have any clue on how to access the source file name in an orchestration for non-XML files? Thanks C
To reslove this problem : Insall sql2000 service pack 3, and give create database permission to 'NT AUTHORITY\NETWORK SERVICE' Hope this Help Regards Gopal Prabhakaran
Hi, Could you tell me please,are there any way to get all web sites on the portal.For example i have two site on portal: 1) MySite 2) Yoursite i want to search thus two site and all of their subsite and directory by using web service are there any web service or services that help me to collect this info. i saw in this tool that there can be only get one site info whose url added adress text box. thanks,
Thanks for the tip! I was trying to figure out how to do this with Sharepoint 2 and it doesnt appear that I need the extra steps but it showed me how to get the list to the usernames URL.
Great work, exactly what SharePoint Needed!! Now for the Question, can it be used to send docs from subsite to a Portal Area? It works fine with doc libs within same area or site
Looks like they got Office 2003 SP1 out today but they are not letting the general public know about it. you must uninstall InfoPath SP1 and then reinstall InfoPath and then install the SP1. Hope nothing Breaks
Dave, this feature will become available in the next version.
I need a date (i mean a date-macro ;)
Jan, I have been using your code to try and figure out how to create an updateable webpart (where I select something from one drop-down list, and it causes the others to requery and redraw.) And yours is great. However, I am having one problem using your code. It has to do with the line: SPWeb web = SPControl.GetContextWeb(this.Context); SPList selectedList = web.Lists [new System.Guid(listList.SelectedItem.Value)]; The web server comes back: Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). Your webpart works fine. But mine using the same code errs. Any ideas? Thanks.
Does this work with SmartPart 0.2.0.1? I downloaded it and it gives an error that it could not load the user control.
some1 addme to their msn when msn 7 comes out and tell me!!!
I also have a problem with the modified by attribute, I get "10;#" appended the front of the name when I use that field value to SETFIELDVALUE another one.
Narive RSS in sharepoint seems to me to be a truly good idea. Flexibility is key here. Allowing flexible syndication across multiple lists, hopefully across multiple sites, might even help sove the similar content/divergent technology issues of sharepoint vs. Blog vs. Wiki. If I consume sharepoint information across sites via rss, make the ability to consume rss another native sharepoint capability, and make it as powerful and flexible as every other sharepoint list - a rss list, if you will.
I have been trying to develop a parallel approval scheme with workflow lite. I was wondering how much success other users have had trying to mimic the approval process of the old document libraries. Right now the document is submitted by a supervisor, is then checked for adequacy by our engineering manager, he then publishes the document(COPY TO MANAGERS AREA, WRITES AND EVENT, DELETES SOURCE). Once in the new library managers can choose to approve the document/reject it or reject it with need of presentation. I am using the standard approve/reject that is built into sharepoint for the General Manager as this auto-approves the document. Any ideas how to keep the document in the same library and let each manager place their stamp of approval on the document?
Hi, Could you help hook me up with "Tim"? I have some ideas I would like to discuss with him... I'm addys@DIESPAMMERSDIEmicrosoft.com Thanks!
I asked for Native RSS support in WSS via the Windows Server Feedback page in February. I agree that this should be able to provide feeds based on filtered content (e.g category). The ability to choose either modified or created date should definitley be included. Maurice Prather's Synication generator is a good starting point as it requires no external tools and no manual intervention once configured.
Is there a way to speed up the time taken for the events to trigger when moving a doc from one library to another?
Is it possible to use workflow lite with a forms library?
Jan, I forgot to say, great work! Jason
I try to install leat-it essentials but I when I install it they didn't ask me for the "Code Access Security Options". When I open my site and try to add this web part I have this error "Web Part 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. " Please Help. Thanks
Sure! its one of those wonderful controls. I downloaded and installed on the on all VIRTUAL SERVER on the Sharepoint server. However in any of the SharePoint site, this webpart is not showing up. I just simply ran the latest version 0.2.0.0 MSI package. What am I missing? I also added the <TRUST> as mentioned in the readme file. Also do you know where are all these web parts are located on the sharepoint server? Also I couldn't locate your .DWP file? Thanks
welcome
The comment about syndicating across lists and sites is a good one, but (I know this is a bit out of scope and\or off-topic) this should really be done at a lower level than RSS syndication. If data could be aggregated cross-list and cross-site as first class data sources (think FP data catalogs), then RSS could be generated from it the same way as a list. Aggregation would be incredibly valuable for more than just syndication.
I think it would be an excellent idea, but you will need to cover all the standards like RSS and ATOM It would also need to be configurable and preserve the security of the portal pages Maybe it will appear in the next version?
for the record : msn messenger 7 is in the works but no release date has been set yet . You can find a lot of info on MSN at http://www.mess.be !
Any idea on how I should do this, I've tried and tried but not getting anywhere. Thanks
Jan, is there an event to catch a doc being inserted into a library?
Jan: great work! However, I have more than 20 areas in my setup, so some of them have been automatically converted to bucket webs by SPS2003. This results in breadcrumbs not working in some areas. Instead of, say, "Area1 / Sub2 / Sub3 /Sub4", I end up with something like "Area1 / C1 / Sub4". More info on bucket webs here: http://blogs.msdn.com/danielmcpherson/articles/115331.aspx. Do you believe this can be overcome? Thanks!
What about within an area-subarea relationship. Will this work as well?
All of my SharePoint sites are NTLM authentication and while I can create the feeds (thanks to Sig Weber, Jan Tielens and DevHawk), aggregating them is more of a challenge. Sure, number of feed readers do support 'basic' authentication, but we don't want to switch to basic. So the ability to syndicate and aggregate through NTLM sites would be a bonus.
i seem to have the same problem wiht the alerts not working and asking me to log in but i only get it if i add the part to a sub site of the main site. if i add it to the main site i have no troubles. i have tried creating a new site, then adding a user and setting them as site admin. i then add teh web part and i get the logon prompt. any help you guys can give me would be great i need to try and get this to work on sub sites as well as main sites.
please release the new msn messenger 7 !!!
Where can i find a place to download that messenger?
i think i saw it on messengerfull.com
This is great. Can you make the data view dynamic (link to detail views). For example, if I had a data view on my subpage of an Event List on the portal root, can I link to the event detail pages? How about applying specific filter criteria to the data view?
hw4ths
another thing you might try... You can access the SoapHttpChannelOptions if you downcast (errr) the Channel property of the SoapSender/SoapClient to SoapHttpOutputChannel. SoapHttpChannelOptions has a KeepAlive property. At least that way you don't have to subclass.
Actually a bigger screenshot is at http://www.nitro-net.co.uk Nitro-Net is a much better site for beta news etc! Join up!
You can also use DebugView from SysInternals to view the output from System.Diagnostics.Debug.Write("...")
Hi, When using "System.Net.ServicePointManager.CertificatePolicy = new TrustAllCertificatePolicy();" Is there a need to call to CheckValidationResult function? If yes where in the code? Because there is no call to this function from your example. Does it works for SSL HTTP POST? Thanks, Asaf
Hi, When doing HTTP POST to SSL I a getting Cannot access a disposed object named "System.Net.TlsStream". Object name: "System.Net.TlsStream". Is there a way to solve this? Asaf
Hey, when I try this I get: System.Runtime.InteropServices.COMException An item with the following index does not exist in the collection: Users at Any ideas?
Jan. This is great. I would like to incorporate WebPart Caching and Async into the SmartPart. Is there a way to get the latest source code? If not do you have any plans to add these features?
Follow the steps listed in the blog entry below to sort the methods alphabetically: http://blahblahg.blogspot.com/2004/08/sorting-methods-in-aspnet-web-service.html
Never mind, figured it out. I never renamed the first data source "Users"
I installed as it is saied bu i can't run it in SharedPoint. The error is: SmartPart 0.2.0.1 Error: unable to load ~\UserControls\UserInfo.ascx Details: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. (c:\inetpub\wwwroot\UserControls\web.config line 102) I made the UserCOntrols virtual folder a IIS Application, I add trust tag in web.config but it is still the same. What is wrong?
Actually, it's not a draw at this moment ;). Five Microsoft Belux employees are blogging: Alain Leroy, Hans Verbeeck, Gunther Beersaerts, Rudi Larno and Yves Kerwyn.
Hi Jan & Fons, Great stuff .... with 0.2.0.0 only some issues on Sessions but viewstates are working fine but storing dataset may cause some bandwidth overheads. Anyone out there got Sessions to work with Smartparts. Looking forward to tryout 0.2.0.1
Please send me the package
Hi i am bit new to WSS ans SPS. i am woking on it for last few days. i wanted to know whether i can provide to security (like which usr can view / add/ delete ) to each item in list. for e.g each contact in Contact List. as far as i know theres no direct way. is there any round about to it. or i need to develop some web parts and stuff like tht pls help thnx
Just tried them on my testmachine (Virtual PC). Be carefull, they install right away! No setup menu or anything, just two klicks and off it goes.. I'm searching for readme's but no succes until so far.
Jan, I did not know either. Thanks for sharing it! I hope fixes are revelant to us ;) Maxim [www.ipattern.com do you?]
This one also now: http://support.microsoft.com/?kbid=841883
So just bug fixes? I was hoping it'd be along the lines of the InfoPath SP, some new things to play with. Any word on the next update that'll have new and\or improved features?
I installed these yesterday, you need to install the WSS one first, then SPS. Like Peter said, it's quick with no menus or associated documentation. The WSS install went OK, but the SPS one killed my portal. Other than the home page, all other links were broken. I'm going back for a second try today.
On the surface, it doesn't appear that the discussion list sort order issue, ie., being able to modify the threaded view to have threads sorted by most recent date at top of list, has been included in this sp.
Here is the official communication http://www.microsoft.com/presspass/press/2004/sep04/09-02SPTSP1PR.asp
I just installed it on my VMWare testingserver. It worked fine there. Both WSS en SPS Service packs installed without a problem. Didn't test de bug fixes yet.
The KB articles are on-line now. I have the links to them in the WSS FAQ sites.
The installation on my developmentmachine went pretty well, but just like David pointed out SP1 is messing up links... Some of the action links like 'Alert Me' or 'Add Listing' have been replaced by strange notifications like '<PRE>{0}</PRE>' & 'An error occurred while creating a new section.' Anyone noticed the same behaviour after installing SP1??
Jan, Congratulations on your new job. I'm sure you'll have lots of fun @ U2U.
Jan, also the congratulations from me and my company Macaw. I'm sure we will work together in the future! Have fun, and keep up your good work for the community.
Jan, it was great working with you. Enjoy the challenge of your new job. Thank you.
Jan Welcome to the team!
Jan, Thanks for all the great times we had together! It was great working together with you. How's your new VOLVO btw? ;-)
Jan, the little we work together I learned a lot from you. Thanks and have a lot of funs at U2U.
Jan, way to go! Keep up the good work, I'm sure we'll continue to meet. Best of luck on the new job!
Jan, Congratulations on your new job. A nice suprise!
Welcome @ U2U.
Nice Work!
Hi guys, thanks for all the nice words!!!
Congratulations, Jan. You'll be a great asset at U2U.
What a team! Can only speak for myself, but I've got pretty high expectations for you guys:) mads
Please provide the link to articles that are mentioned (or other web based resources). It makes it much easier to get there from here. Dave
Dave, the link is in the post (just click the word 'here'). This is the complete URL http://msdn.microsoft.com/office/default.aspx?pull=/library/en-us/dno2k3ta/html/Office2003OverviewDeveloperToolsPrograms.asp
Thanks. For whatever reason, clicking on "here" did not work. Using the full URL did.
Yesterday I tried to split a message in BTS, I found excellent tutorial on how to do that: <a href="http://weblogs.asp.net/jan/archive/2004/03/07/85259.aspx">http://weblogs.asp.net/jan/archive/2004/03/07/85259.aspx</a><br />in the following articleI desc
Finally, Windows 2003 server support!
I've removed it because I have a very low-powered PC at work and having Google indexing going on all the time (and only the ability to pause indexing for 15 mins at a time - too short!) was slowing the machine down even more. I also had a beta download going on in background that was taking days to download. As soon as I removed Google indexing it speeded up by a large amount. So as someone else wrote in a blog. Even Google indexing doesn't work on steroids. Its "background" indexing is just like all the others' background indexing and the only main difference to them is that Google Desktop is free. Well, I can't afford the price.
I agree about the Desktop Search. I think the search space is interesting and has potential, but nobody is quite there for me yet. I keep trying things, and am actually using a couple of the products in a limited fashion, but I have not seen the app that really grabs me in this space yet.
I use a little batch file that uses WMI to do all those steps. The WMI scripts are modified versions from the Biztalk SDK. Heres what my .bat file looks like: - - ------------------------------------ @ECHO Calling the WMI script to Stop and Unenlist the orchestration... @CScript /NoLogo StopOrch.vbs MyCompany.Biztalk.Orchestrations.MyComponent MyComponent Unenlist @ECHO Undeploying orchestration... @BTSDEPLOY REMOVE ASSEMBLY="C:\MyComponent\bin\Development\MyComponent.dll" UNINSTALL="true" @ECHO Stopping Biztalk Hosts @CScript /NoLogo StartHosts.vbs Stop @ECHO rebuild my aplication and install assembly in the gac... DevEnv "C:\MyComponentBusiness\MyComponentBusiness.sln" /Build Debug @gacutil /if MyComponentbusiness.dll @ECHO Deploying orchestration... @BTSDEPLOY DEPLOY ASSEMBLY="C:\MyComponent\bin\Development\MyComponent.dll" INSTALL="true" @ECHO Starting Biztalk Hosts @CScript /NoLogo StartHosts.vbs Start @ECHO Calling the WMI script to enlist and start the orchestration... @CScript /NoLogo EnlistOrch.vbs MyCompany.Biztalk.Orchestrations.MyComponent MyComponent Start -----------------------------------
Finally!
I installed this the other day. One of the post effects I discovered was that after I've edited my SharePoint pages (through the browser interface), and then after navigating the site use the back button in my browser to the changed page I continue to see the cached page, i.e. the page before the latest changes. Anyone else noticed this? David
I've had good luck using NAnt to automate not only the biztalk-specific aspects of deployment (both on developer desktops and on servers) but also things like virtual directory and application pool management (that wind up being part of a biztalk solution.) See www.traceofthought.net.
Findings this afternoon
Where did you find this?
Never mind.
Jan, Congrats! One of these days I sure would like to get to Brussels, Belgium, etc., partake in a developer conference and meet all of you! Bob Mixon http://www.sharepointblogs.com/bmixon
Microsoft Sharepoint Products and Technologies interessante Webseiten, FAQ's, White-Paper's, usw.
Wonder how hardcore you can get:) Let us know where the foils end up afterwards!
Proud of you! Good job! May the force be with you!
Great stuff Jan, ill be sure to check it out !
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
That's it. I'm throwing away our implementation of the "UserControlHost".. SmartPart is the way. Great work guys!
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...
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)?
Nice work Jan. :-)
Congratulations Jan, seriously good work...
I might miss something but I cannot find the source code on GotDotNet. Any clues?
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?]
Thanks EROL
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.
I can't download the smartpart! i cannot find it anymore at gotdotnet, is it moved? thanks
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...
Excellent
A new Beta announcement Monday morning
Interesting - I noticed a couple of month's back that my Hotmail accounts were no longer sync'ing in Outlook - and found a message stating that offline Hotmail access was now limited to premium accounts. Will this be the case with MOOL?
I just sent your blog to the team. Check out the videos on Channel 9. http://channel9.msdn.com
Thanks Robert! I forget to mention the videos... post is updated. :-)
Very nice! It even index your ID3 tags of your mp3 files. Ofcourse I don't have illegal music on my pc :)
"When you press the ctrl+alt+m keys, you will open the Deskbar, but the focus isn’t on the textbox, so you can’t start typing right away." - The focus should go right to the Deskbar edit box. Are you using a Table PC or some other special OS extension? "The space is my taskbar is very precious, the Deskbar isn’t big but it would be nice if for example the Deskbar was collapsed by default." - There are a couple of things you can do here. You can drag the Deskbar off the explorer taskbar, by clicking and holding on the gripper (the dark dots to the left of the deskbar), and dragging it on to your Desktop. It will then float, like a separate window, freeing up Taskbar space. You can also, then, dock it to the sides of your screen, and even set it to autohide (right click on it while it's docked). Finally, if you really want it small, you can actually remove the Deskbar buttons (MSN and/or Go Button) completely, by doing this: - type =regedit in the Deskbar to run registry editor. - Navigate to HKEY_CURRENT_USER\Software\Microsoft\MSN Apps\DB - Add a new DWORD value, named Buttons - Set the value to 1 to remove ALL buttons - Set the value to 2 to remove just the GO button `M
Robert spotted my own additions to his review list. I've not had time for a full review yet, but I did check out my own review points, which I run through at the end of my own <a href="http://zmarties.blogspot.com/2004/12/msn-toolbar-suite.html">first impressions</a>.
well i wasnt so impressed by this search your desktop thing. it is too big, too slow, and doesnt find things as i expoected. a simple search shows up one or two item from "my documents" folder and you have to go change the settings. I'll pass till their 3rd attempt.
Jan, Thanks for the review. It always nice to see additional feedback from different viewpoints like the wish for inclusion of SPS. I personally would like to see some more settings for Outlook as Lookout had (such as what folders are indexed.) I also agree about optionally opening the search within the Outlook GUI. I however, found it to be fairly slow to index my system. I installed it about 10:05am Monday morning and now (2:45am Wednesday) it has not indexed all of my files yet. I have forced it Monday night to Index Now, and I was gone all day today. Of course, it has indexed 276,775 files and thinks it has 11,323 items left to index (this jumps from 0 to 12,000+ often.) Next, I hope that the interface looks more professional. The webpage that is in use for the results doesn't look as crisp as Google's results (also the same as beta.search.msn.com) Of course, it is only a "BETA".
Hi jan, With the list I ment just like with listings in the portal, you can just add another field. If you want extra data on a list itself, store it in the property bag of the SPWeb, you already know which lists are in your site. In the property bag you could prefix with list_<internal list name>_PropertyName to prevent collision.
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?
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
Hi Jan , Its a nice piece of article , but only the text under the pictures are wrong. Maybe u can verify it better the next time :))) Good work !!
Thanks Robert! The text for the pictures was right when we submitted the article. It seems that other articles in the current issue have the same problem... :-)
SPS searching is already in the beta, although hidden/deactivated/incomplete (pick one) and will let you add/remove search servers and more. - Rafael
Wie f
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
S dot One heeft het over .NET » Programmeurs’ fonts
Thanks for the link! I always wanted something a little nicer than the default font (I got spoiled by the nice fonts in Linux). -Matt
http://www.tobias-jung.de/seekingprofont/ This one is nice, too.
Upon further review, I have to give the nod to ProFont: 1. The horizontal lines on the capital "i" are more pronounced in ProfFont, which helps to differentiate between the lowercase "l". 2. The slashed zero (0) in ProFont is easier to see if you sit at a moderate distance from your monitor. 3. The delimiters ":" and ";" are emphasized in ProFonts, which make them _ideal_ for programming in languages like C/C++/Java/C# 4. Curly brace "{}" is "straighter" in ProFont. It's easier to distinguish between "{}" and "()". But I guess I'm just overanalyzing :) Both are better than the standard fonts that install with Windows (with regards to writing code). MS should seriously, for the sake of convenience, include some fonts like these with VS2K5
Lucida Console and Courier New-- both default windows fonts-- aren't exactly chopped liver. I am experimenting with Proggy Clean, personally, but I think all the fonts on the proggy page are quite good and ultimately it comes down to personal preference: http://www.codinghorror.com/blog/archives/000157.html
Twee "Connected WebPart" dingetjes die ik wel leuk zou vinden: - Indepth IFilterProvider. Indien het mogelijk is tenminste: Hoe kan je met een IFilterProvider meer functionaliteit bieden dan een AND opsomming van field/value pairs? - Custom Document Library view styling Aangezien de IRowConsumer van een Document Library part enkel die properties doorgespeeld krijgt die "visible" zijn in de geselecteerde view op de part, moeten we andere "hiding" manieren gebruiken om properties wel te kunnen providen aan de IRowConsumer maar niet te tonen op het scherm. Misschien een cursusje undercover "Extreme Makeover" voor library views?
See Patrick's enrty on this subject for a (hopefully) clearer and English version of this feedback.
Yes, nothing like too little, too late. This is one area where Unix and Linux both shine.
Thanks Jan! Your Smartpart rocks!
Great if you want to search MSN, of course i wanted to search MY DESKTOP. How many MSN WEB references do I need in a DESKTOP search engine. Hello?
Hey Jan, Any wiki web part around ? Do you know one ? Cheers, Peli
Hi, I'm a newbie of SPS/WSS, can I ask you some questions here? 1, how to create personal site according to interent registered user? 2, how to save/load data to/from the third part application(.net web application) using web part connection (Single Sign on?) 3, how to make different page templates/styles for the specific sention in one site? 4, Any of the best forum for SPS/WSS (this site?) 5, Any changes of SPS/WSS in ASP.NET 2.0 6, how to connect to multiple databases (different servers) via one web part? 7, how to intergrate/develop office application for non office2003 user? 8. Is MS application block able to be used in web part? 9, does the search engine in SPS support metadata seaching? Thanks
Hi Jan, bloddy spammers. I have tried what you have outlined with your smartpart. What you suggested was straight forward but I am guess that there is some other quirks to doing this with the smartpart or I am missing something. I am trying to use the dropdown nav feature on the default.aspx page. Using WSS not SPS. It's on WinSBS 2003 Any feedback would be appreciated. amelbguy@hotmail.com
There isn't any NDA for this beta then? (I'm still waiting)
I think the original version of Reporting Services actually did come with an ASP.Net server control. I'd have to dig back into the documentation to find it though.
http://alprazolam.esmartbuyer.com http://alprazolam.esmartdesign.com http://alprazolam.esmartbiz.com http://alprazolam.esmartstudent.com http://www.anzwers.org/free/alprazolam
Hi Jan, Since the time I jumped into SharePoint, you have been my inspiration for the web parts development in the SharePoint. Thanks for the good work and keep it up. -pankaj
Your efforts are inspiring! and very much appreciated. Ed Richard
Great stuff Jan and Patrick - I am so grateful for your constant efforts in the community! Keep it up please. :)
thanks for the sneek peek.. :-)
Hey Jan, this seems to be a very cool piece of software :-), can't wait to download it
hehe, thanks Jan. Doing great stuff.
Jan, Did you have the chance to meet Bill? It looks like you are having to much fun. Maxim [www.ipattern.com do you?]
Jan, triggered by your comment I looked for the ASP.NET server control and sure enough there is one in program files\Microsfot SQL Server\MSSQL\Reporting Services\Samples\Applications\ReportViewer. Using the instructions in http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbwlkWalkthroughConvertingWebFormToUserControl.asp I turned it into an ascx and dll and guess what it works fine with SmartPart! Note, I am not an ASP.net developer at all just Sharepoint, OM and C# but this is good sutff! Hope this helps someone else ;-) Ed
for those of us in the US, can we get further details (slides, downloads, video stream of the conference). thahks, cal kaddourah
Congratulations indeed to you and your dad :o). You guys make a perfect team. Can't wait to download all the stuff !!
It was indeed very nice,... I can't wait to get my hands on the RSS for SharePoint (And also the new IBF 1.5 stuff that Patrick demoed the day before...)
Thanks!
I had quite some expectations for the sharepoint sessions and still I was overwelmed by the content. Thank you and Patrick for all the information and I can't wait to download stuff like the sharepoint application block.
I feel so bad I couldn't be there. But you know why... :-( But, I'm sure you did a terrific job! Greetz, Tom
We rocked! And we will rock again this year. And any of you reading this, we need more guys like Jan at U2U!!! Send me an email (patrick@u2u.be)
Hi "dad", are you (ab)using my blog as a U2U recruiting center? ;-)
In late breaking news yesterday (actually early for my time zone), Jan Tielens reported that screenshots of an application he is developing were leaked onto his desktop in a very strange and unexpected series of events…umm wait that don't make...
erge
We like a kindred spirit! - wondering as a result what you would mean by it all ... for instance, we do not know what MSN means by terms, here, like URL - usually capitals shown there in total: common folk here usually solve or, take care of their personal friends, first, though somebody might very well help me with it. I had thought for example that my own e-mail address would arrive with each message sent to discover even that flashplayer versions ignore those advantages. A piece of advice - when someone wants to display technicalities, they should do so in quantities of some significant value having written such "papers" myself getting them returned with similar comments. We still live in a free country here so that I am leaving any decisions completely up to you - on that proverbial other hand, I would appreciate some furthered instructions! have seen courses offered by parties who look independent of yours without recourse to sufficient knowledge of course. Are YOU TRYING TO FOOL ME, AGAIN - OR, SHOULD WE EXPECT TO LEARN COMPLETELY FROM EXPERIENCES - I WOULD LIKE SOMEONE TO TELL ME! instead of providing that otherwise infinite jargon to me. YOU TAKE UP VALUABLE SPACES IN THE LARGEST OF COMPUTERS' MEMORIES, TOO, surprising me as well because very few users take times even to edit their entries. Good luck to you anyway - most people in this country today still resent foreign blood - I AM NOT ONE OF THEM, SONNY - you ought to however clean up your act as I, myself, do not want to experience its adverse effects, either.
Jan, it's really wonderful tool i saw the short video and it's really amazing. Thank you for that great efforts.
http://kghsjg.k1.xrea.com/ ,http://hls.k2.xrea.com/ ,http://eom.k2.xrea.com/ ,http://www.soudown.net/ ,http://www.998guide.com/ ,
i was looking forward it for a while. it does work well on my server, and it's really helpful. But there's a problem for me, my server is running in a Chinese Version, but the RSS fed by U2U is encoded in iso-8859-1, i need it in UTF-8... and i don't think it can be configured in the config.xml file, how can i fix this up? Please help.... i really need this tool
<snip> Regarding the install services script, we only require devenv because we need to find the location of installutil, which we do by running vsvars32. If you don't have devenv you can modify the InstallServices.bat file with a path to installutil, or just call installutil directly over each assembly. </snip> Found answer at http://weblogs.asp.net/tomholl/archive/2005/02/14/372512.aspx
I'll go!
Reporting Services Web Parts
SQL Server 2005 での、MDX の強化ポイント
Any idea when .NET 2.0 will come out of Bets?
make that beta?
I was there! I believe the mentioned the second half of 2005. But you have to keep in mind that a week in microsoft terms lasts 10 days (quote of Dave Webster)
Where do those events come from? Do we have to run this utility on every machine using the data access block to avoid these events?
To clarify: I have an application i am getting ready to deploy that uses the Enterprise Library Data Block. Will i have to run this utility on the server i am deploying this application on to prevent these events?
Yes, will need to run it on every server that you plan on using the Enterprise Library On. -Add C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 to your path. -Comment out if not Exist "%visualStudioDir%..\Tools\vsvars32.bat" goto HELPVS @call "%visualStudioDir%..\Tools\vsvars32.bat" Double click on the script and it should install all the services without a problem.
I've recently discovered there is a WebPart capable to include ASCX controls. As I have personally...
A couple of years ago, I got a question from an Italian reader about how to load a ASCX dynamically from within another control. And he was a SharePoint developer. The core of what SmartPart does (as I understand its internals) is all here. But your component is very well done and your articles about SharePoint development are excellent. I'm taking some ground in SharePoint through the reverse approach--from ASP.NET 2.0 Web Parts to classic Web Parts. Your articles helped.
Congratulations! Let´s start the work on that next version :-) And yes, a webcast is a good idea.. looking at the workload, we can schedule that in 2008 :-) kidding... let´s find a date from sunny portugal - profke
Thanks EROL MVP SPS www.mysps.info
I've created a Custom Action installer component, which can be used to perform these tasks without the need for installutil or Visual Studio installed. It's on my blog... :-)
From within a MSI package that is..
I am developing an application that will reside on a web farm at a company that generally takes a hard look at any new server software. I began developing the framework for the app using the Enterprise Library. But if the Enterprise Library is going to require utilities outside of the specific app location then it is no longer an option. Too bad. It looked pretty slick. Bill Waltman
test
This can be achieved using Web Service too by giving network credentials,so can you please let me know how this approach can help to retrive document.
Interesting approach, but what happens when a user tries to seach for data ? SharePoint Portals search will respect the security of the documents and so not return these documents. The approach I've taken to this problem is to move the documents to a new location before creating the listings. This also then allows minor versions to occur on the original file and not effect the published version.
Steven makes an excellent point. However, even his solution of moving the documents to a new location (presumably with security set so that the people that need to get to it, can) and then publishing them to the portal from there is a workaround at best. The concept of being able to "publish" a final document from a WSS site to a portal Area should be integral to SharePoint. From a functional or business standpoint it makes sense that this would be a common activity. Unfortunately (and in IMHO), this feature seems to be poorly conceived in SharePoint 2003. The idea of having a menu item (Submit to Portal Area) on the context menu in a Document Library to do the publishing is fine. The idea of only creating a Listing in the portal area when the user clicks on that menu item doesn't make much sense to me because of the security issue described by Jan and Steven as well as other reasons. To me the act of "publishing" a document to a portal area should reflect that the document has been completed in the collaboration environment (WSS) and now is ready to be published to the enterprise-wide "reader" environment (SPS). The "final version" SHOULD reside in SPS. The original "working copy" could be deleted from the WSS site or, at the very least, marked in some way to indicate that it has now been published to an SPS area. Seems to me that something like the following should happen when the user clicks on "Submit to Portal Area": 1. The user is able to choose an Area 2. The user is able to choose a Document Library in that Area 3. The document is copied to the selected Doc Lib 4. The user has the option to create a Listing in the Area (as well as any other Area(s)) that points to the document in the Area Doc Lib that is to be its home 4. The user has the choice of either deleting the original "working" document in the WSS site or marking it somehow as having been published to SPS. All of this should happen when the user clicks on "Submit to Portal Area". Of course, if I thought about it some more I might even want another feature or two, but at a minimum it would be nice to have something like this if anyone from the MS SPS team is reading.
Sorry to get in late but I completely agree with Steven and Jeff. The idea of impersonation is a creative one but the description Jeff gives is exactly how it SHOULD work. I'm catching up on my blogs and did see this post: http://randomelements.me.uk/blog/Lists/Blog/DispForm.aspx?ID=886 I havent had a chance to check the document mover tool out but it's definitely along the lines of what needs to be done. This tool appears to be more for admins to run since it is not web-based. That's a big drawback.
Steven, Jeff, you are totally right! The solution I've used fits the needs of the customer. But I agree that the functionality Jeff described should be a part of SPS itself. Mark, thanks for the link, I'll check it out.
Congratulations and welcome to the MVP Community
Congrats, Jan :).
Congrats Jan!
It's about time! ;-) Congratulations Jan! You really deserve this title! Greetz Tom
Gefeliciteert Jan, super!
Congratulations, Jan.
While i agree withthe sentiment that published content should move to the portal, I'm actually glad it doesn't given other 'features' of the product set. WSS sites are so much easier to manage in terms of backup, scale up etc than a portal that I much prefer the content to remain within a team site. We use a workflow tool (Nintex) to move documents to the 'public' team site, this means it all happens as part of the approval process. Once there the portal area owners get notified of the new content with an alert. HTML content is the stumbling block here, in a web page document library the actual content is an attribute of the webpart, and is lost when the file is moved.
^_^,Pretty Good!
Hi Jan, That's an interesting technique, but won't it raise some security issues? We are basically giving anyone a chance to get *any* url with a more privileged account.
Congrats!
Given the time spam before these announcements I'd say you got it all by yourself (before you joined U2U)! I'd guess for being one of the first free web part providers with Essentials and naturally for your 'building kit'. Well done!
Hi Rui, yes if that account has access to them. Alternativly I would build some security checks based on your own rules before passing the file back. Maybe I should have mentioned that in the post...
Congratulations Jan, you have deserved it.
Congrats, i got it too. Will i see you at MVP Summit ?
so so so great ! BRAVO
Congratulations Jan!
Congrats and welcome to the looney bin.
Congratulations from Italy! :-)
MY BLOG is http://sharepointerol.blogspot.com/ can you change the link, thanks EROL
THX to: Jan Tielens' Bloggings [MVP]Some people are wondering if it’s possible to display the contents...
I definitely like your idea. When I think server explorers in VS.NET, I think of tools that help me do development with the server. Otherwise, why is it in the IDE? Very cool concept.
3-4 months ago I developed (partly developed...) I VS 2005 SharepointListObjectSource, which lets you view all the sharepoint lists within any server (I did a UI Designer for that) and select one....Then it let you databind from the GridView, FormView, DetailsView. Got caught up in "real" work projects though...So never finished it....I had it to the point where you could use the SmartTags in VS 2005 and select my designer, then navigate to a Sharepoint List and double click it...then I had the databinding working.... Lots more work to do though...Editing / Filtering / Sorting...etc....Never finished it. I thought you might be interested....I would like to get back onto that and finish if I can find the time.
Here is my details.. (url above)
I always thought it would be a great idea to develop Sharepoint as a windows app. Anyone keen to join me ? if so, leave a msg on my blog above :)
Thanks for the comments Jan. I like your idea about the code generation, that would be amazingly helpful. The project is getting pretty popular I have received quite a few emails so far, I hope you and anyone else reading this will come along soon and sign up, I think we can create quite an amazing tool out of this. Thanks.
Gratuluji from Czech Republic !!!
Hi Jan, I was trying to add your RSS feed into Fire Fox and it gave me an error saying it was an invalid feed. If you click on your XML button it also throws an error. It seems as if id doesn't like on of the characters in this article. Here is an excerpt of the text containing the character: " get the file which s url is specified " . The character between the word "which" and the "s" seems to be the problem. I just thought I would point it out so you could fix it. :)
Via Jan Tielens, SharePoint MVP, I saw this MSDN article on Developing Integration Solutions with BizTalk...
dfsdfsdfsdf
Often SPS/WSS admins want to "force" a subscription to a doucment library or list etc... for a particular...
The SPSkin Designer can be used to quickly and easily create style sheets (CSS) for SharePoint Portal Server and Team Sites. The Designer provides a GUI interface to modify the look and feel of SharePoint. Once a Style has been...
Is it downloadable? I cannot find the link...
It's only available online I think.
The link appears to be dead.
This is an online stylesheet editor, very nice and very usefull! Thanks!
Reprting Services Web Parts も試しました
Almost worth going to America for! Reply here if you want a beer!
Jan, Too bad you are not going to be in North Carolina unless of course you can change your flight :). I won't be able to make to PA but would love to meet you one day. maxim [www.ipattern.com do you?]
This page contains some free useful tools. I copy the content here just in case... SharePoint Database...
Jan, I used to go to grad school in State College. I recommend the Allen Street Grill for dinner with a view and drinks at Zenos pub in the basement. State College also has a good live music scene so you might check the weekly events rag. P.S. Ask someone about the College-run Creamery for some really great ice cream. Have fun! Patrick Parker patrick.parker@TheDotNetFactory.com
Anyone told you that you look like a young Russell Crowe in the picture you have on your blog?
Is that a good or a bad thing? :-)
Goedemorgen Jan, via Jan Dirk Bakker heb ik je blog gekregen en ik ben opzoek naar een biztalk specialist voor een opdracht in de randstad. Weet jij nog mensen die hier wellicht interesse in hebben? Hartelijke groet, Pieter-Bas Kimmel 06 52 474 854 Profiel: Functie in Opdracht: Senior Ontwerper Biztalk Omschrijving werkzaamheden: Voor het project WIA dient er een koppeling te worden gerealiseerd tussen de IMF applicatie en ODS. IMF bevat informatie t.b.v. WAO beoordelingen. Vanuit het ODS (Operational Data Store) moeten hieraan werkgeversgegevens worden toegevoegd. Voor het realiseren van deze koppeling wordt gebruik gemaakt van het UWV Systeem Integratie Platform (SIP). Het SIP bevat standaard componenten t.b.v. Systeem Integratie en gebruikt technologiedn/ middelen als MS Biztalk, met MS .NET gemaakte omponenten, Info messaging, MQ series/ Websphere MQ, UWVML Voor deze realisatie zoeken we een ontwerper / ontwikkelaar (incidenteel bijdrage aan testen). De activiteiten bestaan uit: - Opstellen / uitwerken technisch ontwerp - Afstemming functionele mappings van velden - Realisatie op basis van genoemde technologiedn - Uitvoeren technische testen - Opstellen installatiehandleiding - Installatie Biztalk, orchestrations, componenten e.d. op (acceptatie)testomgeving(en) - Ondersteunen functionele (keten) testen - Veel discussies met betrokken partijen aangezien SI de spin in het web is tussen de diverse systemen. Benodigde kennis/ ervaring: " Zeer zelfstandig (senior) " Kennis en ervaring met UWV organisatie of grote (overheids)organisaties: politiek sensitief. " Zeer gedegen kennis (en ervaring) Biztalk Server 2004. " Kennis (en ervaring) van Message Queuing (MQ Series/ Websphere MQ en/of Info Messaging) " Kennis (en ervaring) van Web Services / Internet Information Server/ SOAP. " Kennis van service georidnteerde architecturen " Technisch Ontwerp kunnen opstellen aan de hand van opgesteld Generiek ontwerp " Implementeren van het Technisch Ontwerp in de hierboven genoemde technologiedn " Gedegen kennis van XML " Zeer belangrijk: Communicatief sterk PrT " Kennis en ervaring met Microsoft .NET (C#) " Kennis en ervaring van UWVML (XML standaard van UWV) Gewenste ervaring ( jaren, etc.) Applicatie ontwikkeling : 5 jaar + Message Queuing: 3 jaar + Microsoft Biztalk 2004: 1 jaar + Persoonlijke Eigenschappen: Zeer zelfstandig (senior) Verplichte expertisen: E-Business Architecture - XML Internet - SOAP Internet - Web Internet - Web Architecturen Methoden & technieken - Technisch ontwerp Programmeertaal - XML Tools - BizTalk 2004 Tools - MQ Series
RePost : http://www.yeyan.cn/Programming/ExcelXMLToolboxMicrosoftOffice.aspx
Reference: http://bobmixon.xwiki.com/xwiki/bin/view/MSOffice/Excel
Jan, When are you going to be in State College? I live & work about 30 miles from State College. Where are you giving your presentation? Best Regards. David Wertz
I'm in State College now (this week)! I'm doing a course for Minitab.
I believe that any DataLayer must be a simple code block, that they allow operations against DB. That code block would not have to know on the Business Entities. Single to specialize it is to execute the operations (Store Procedures and SQL Sentences) against the engine DB (SQL, Oracle, DB2, etc.), with which this setting. Finally, I invite to you to download the DataLayer.Primitives Public Version. This is very cool Data Layer :) DataLayer.Primitives - Readme! http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=1389 Cheers, Javier Luna http://guydotnetxmlwebservices.blogspot.com/
Updated my list of links: 3rd Party Webparts
What kind of harddrive do you use? An ultra-fast 10.000 RPM SATA or old style IDE 75000 RPM? And does it matter anyway?
I used a Serial ATA hard disk (don't know the RPM but I guess 10.000). I don't know if an "old" IDE hard disk would be enought since I haven't tried that.
Thought I would give a plug for another community site for Media Center, my Podcast the Windows Media Center Show http://www.thepodcastnetwork.com/mediacenter Cheers Ian
I'm loving all these .net blogs starting to take a few ticks away from coding and post about something fun like MCE. I dont have MCE 2005 yet but got discouraged when I tried to install MCE 2004 from my MSDN DVD's. I kept getting a message when trying to boot from the DVD saying it would only boot on OEM hardware. Do you know anything about this? Thanks.
I'm running two MCE PCs, one I have hooked up in a movie room we just built. Running on a projector in 16:9 aspect ratio is the greatest. All the kids and the wife have no problem running MCE, it makes it easier for me. I ripped all my DVDs to disk and now accessing media is easier than ever. The remote scheduler is just icing on the cake, I can schedule recording from work, vacation, wherever. I'm sold on it, not so with the Media Center Extender though. That can prove to be a problem with wireless issues, and lack of codec support. I used to run the ATI AIW with the ATI Media Center, and MCE 2005 is much easier to use than that.
I beleive you can use Nero to burn a .dvr-ms file to a DVD AS a DVD. I've not tried it, but I beleive it works. The Green Button had something on it :) InFact, how about this: http://www.thegreenbutton.com/community/shwmessage.aspx?ForumID=41&MessageID=87204. I beleive you need Sonic codec's / drivers for it to work, tho I don't know which ones :)
The link to Hauppage says the card doesn't come with a remote. Where did you get yours?
I got myself a MS remote control.
Jan, Good to read you enjoyed the dutch mce forum thegroeneknop.nl ! Hopefully it will contribute to an even better MCE expirience for you as it is now. My 2 cents, Harry ;)
My Nvidia DVD Decoder stopped working after 30 days (or something) and the Nvidia store is still offline! My solution was to install PowerDVD decoder instead. Haven't purchased it yet, hoping for Nvidia to come online soon...
Thanks Jan! I will keep that in mind.
Jan thanks for the info, very helpful. I was thinking of using Showshifter but from all reports Media Center XP seems to have all bases covered. Great blog also :)
Scott - I got my MS remote from http://www.pcalchemy.com/product_info.php/cPath/38/products_id/130 There's a less expensive Phillips version, but you can't program the volume buttons and it doesn't have a TV power button. Steve
Hi Jan, Thanks for this blog post... I got this question so often, but never had the time to write it down. Good to have a source to reference now.
ohhh :) What a good idea to try a new SharePoint Nant task !!!
Your students should have been able to find the following post using any ol' search engine... :) http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=70 It's an easy question -- make them dig harder!
Hi Maurice, thanks for the link! I didn't mention it in my post, but the second question was: what if I want to display the contents of a list. :-)
I should also point out that Paul Glavich has uploaded his own version of the selector to ProjectDistributor for download. You can grab it here: http://projectdistributor.net/Projects/Project.aspx?projectId=95
Jan, Why base your custom trust configuration off of the wss_medium and not wss_minimal?
I would also recommend reading the following articles: Why is Code Access Security important? http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=99 Code access security Q&A http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=112 Microsoft Windows SharePoint Services and Code Access Security http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_wsscodeaccesssecurity.asp For what it's worth, I'm a big fan of operating with the smallest set of permissions. :)
Nice work, Jan. This type of overview of web parts and CAS was needed in the SharePoint community, and you've done a nice job of summarizing a lot of the key points. I had contemplated blogging on CAS and creating custom security policies myself, but I think I'll just link to your post instead!
James, I use WSS_Medium for the code that is not signed. Of course if you sign all your code, starting with WSS_Minimal will work as well.
How would you change the parameters in a web part, such as the detail link in the MyAlerts web part, for instance?
Take your time to take a look at some helpful info in the field of loans http://www.highest-credit.com/loans.html home loans http://www.highest-credit.com/home-loans.html payday loans http://www.highest-credit.com/payday-loans.html home equity loan http://www.highest-credit.com/home-equity-loan.html payday loan http://www.highest-credit.com/payday-loan.html refinance http://www.highest-credit.com/refinance.html personal loans http://www.highest-credit.com/personal-loans.html debt consolidation loan http://www.highest-credit.com/debt-consolidation-loan.html payday advance http://www.highest-credit.com/payday-advance.html credit card offers http://www.highest-credit.com/credit-card-offers.html ... Thanks!!!
You may find it interesting to visit some helpful info in the field of pacific poker online http://www.poker-places.net/pacific-poker.html poker games online http://www.poker-places.net/poker-games.html texas hold em online http://www.poker-places.net/texas-hold-em.html party poker online http://www.poker-places.net/party-poker.html poker rooms online http://www.poker-places.net/poker-rooms.html online poker games http://www.poker-places.net/online-poker.html texas holdem online http://www.poker-places.net/texas-holdem.html poker online http://www.poker-places.net/poker.html empire poker online http://www.poker-places.net/empire-poker.html ...
Thanks for that article. An other question : Is there way to order webpart in a zone programatically (IE moving bottom webpart to the top) ? Does the order when I add webpart in my code have any influence? Thanks.
In your free time, check out some relevant pages dedicated to gambling http://www.allabout-poker.net/pacific-poker.html gambling http://www.allabout-poker.net/poker-games.html gambling http://www.allabout-poker.net/texas-hold-em.html gambling http://www.allabout-poker.net/party-poker.html gambling http://www.allabout-poker.net/poker-rooms.html gambling http://www.allabout-poker.net/online-poker.html gambling http://www.allabout-poker.net/texas-holdem.html gambling http://www.allabout-poker.net/poker.html gambling http://www.allabout-poker.net/empire-poker.html - Tons of interesdting stuff!!!
It's more difficult to add a web part to MySite... The question is, do you know how to do this?
Good. :-)
Good to hear you're ok. As a 9/11 survivor, my heart goes out to all of London.
Two dead when I went to play golf. 33 when I drove home. I hope it stops there.
That´s a great news!!! Take care, man.
Bien!!!
2 follow up questions- Is it possible to add a web part connection using this method? and have you ever needed to set AllowUnsafeUpdates to get this to work? good stuff.
follow up- I am using this method via the <executeurl> element of the onet file. For some reason the only way it would work was if I specified the following: SPWebPartCollection parts = spFile.GetWebPartCollection(Storage.Shared); parts.Web.AllowUnsafeUpdates = true; System.Guid wpGuid = parts.Add(wp); If I cast the ListViewWebPart as a WebPart, I can get at the connection properties. I just need to know how to set them now :)
So I know that doesn't have anything to do with your post, but I found out that your MyAlerts webpart suffers the same issues as the What's New webpart (re: http://weblogs.asp.net/jan/archive/2004/04/26/120508.aspx ) if the current user doesn't have access to some WSS lists and clicks on the "Add All" link. Here is the updated code (assuming you're using the same UserCanViewListItems method): private void addAll_Click(object sender, EventArgs e) { SPWeb web = SPControl.GetContextWeb(Context); web.Site.CatchAccessDeniedException = false; foreach(SPList list in web.Lists) { if(UserCanViewListItems(list)) { if(sender == addAllDaily) web.CurrentUser.Alerts.Add(list,SPEventType.All, SPAlertFrequency.Daily); else if(sender == addAllImmediate) web.CurrentUser.Alerts.Add(list,SPEventType.All, SPAlertFrequency.Immediate); } }
Hey Jan, I've just been listening to the podcast, and you touched on something that I've been struggling with for our SP design. We have sites for functional groups, and also sites for cross-functional project teams. Most documents & files relating to work are on sites for each functional group. However, relevant subsets of these files need to be made available to the members project team - many of whom won't have permission to access the functional group site. As you may expect, we don't want to duplicate content, and we want the links to occur "automagically". Have you any suggestions on how to set up this kind of structure?
Hi Jan, Hope you enjoyed SA. Can you email me the SmartPart ? hoping to use it in a project today...
haha~~~great!
hey, i can't open "www.smartpart.info". please email me ~~ choral@gmail.com
can't wait to have ago with this new release.
Sounds great ;-)
Hi Jan, Good idea to webcast the installation procedure. Although it's not that difficult, it's always useful to see someone else demoing the steps. Cheers, //Rutger
Great, very good idea the webcasts. Carlos.
Hi Jan, this is a great web part, i use this in my project since v1.0. But now, I got a trouble. i used smartpart to load my usercontrol in my develop computer, that's runs great. But when I use it in production computer, i got an error after select a usercontrol and click "apply" button. this's the error message i got below: The "UserControlWebpart" Web Part appears to be causing a problem. Web Parts Maintenance Page: If you have permission, you can use this page to temporarily disable Web Parts or remove personal settings. For more information, contact your site administrator. Can give me a help? thanks.
Thanks, can't wait to try it out - SmartPart 1.0.0.0 has already made life easier (for me, anyway!) :) I concur...the installation webcast is a good idea, any clue what the next webcasts will involve yet?
Hi Jan, Thanks for this release!!! Just a question. I would like in order to create a new "webpart page template" add something like this : <WebPartPages:WebPartZone runat="server" Title="loc:MiddleColumn" ID="MiddleColumn"> <WebPartPages:SmartPart runat="server"> <WebPart xmlns="http://schemas.microsoft.com/WebPart/v2"> <Title>Company Logo</Title> <FrameType>None</FrameType> </WebPart> </WebPartPages:SmartPart> </WebPartPages:WebPartZone> But i have an error: ... not registered as safe... however, it is! Have you an idea ? Thanks Sebastien
I’d only been playing around with Sharepoint for a few weeks when I found about smartpart. I just turned a small database web application into a user control. I was using session to persist some data, but switched it to use webpart.SetCustomProperty and webpart.GetCustomProperty and it has worked out great. Smartpart is awesome.
haha great picture. :)
How do I get it to render the contents of a LIST of even better, a VIEW of a list. According to the MS-specs, I would expect something like: http://portal/sites/myproject/_vti_bin/owssvr.dll?cmd=Display&List={38935D12-E871-460D-9CF3-47A620E0E14C}&View={00AF6CA7-EE9A-41BC-9B9C-3AF1FC83EC11}&XMLDATA=TRUE&URLBase=http://portal/sites/myproject/Lists/Risicos/active.aspx But I don't get any results. I tried other things, but best thing I ended up was the list contents as a bunch of XML, but I need HTML!
Very promissing!
Great Post. Is there a way to do it for viewing any kind of info, or webpart? Luis Du Solier G http://spaces.msn.com/members/lduso
Dear Jan: I come from china,I want to known if the code of SmartPart 1.1.0.1 can be offer,thanks. My Msn is asp600@hotmail.com,expect to remit some sps question to you,thanks.
I viewed your pictures on your MSN space. Good eye! Thanks for posting them.
It is TCO, but lets not get picky,... show us some code ....
OK...I finally diversified my podcasts
Hello Jan! Would be nice to meet you. I'm in Slovenia as well. Regards, Jose Antonio jose.morales@b4contact.com
dear jan; i m making sharepoint webparts using smartpart 11.0.0 but couldnt view turkish characters, , tried changing culture or using utf encodings...but no use. i ll be thankfull if there s a way of doing it... thanx.
This is great stuff Jan. I intent on downloading and playing around with it later this afternoon. Bob Mixon
Good news! Can't wait to try this out. And btw, thank you for a GREAT training week in Denmark.
It was my pleasure Thomas!
Hep Thanks for a great course. I learned a lot. -- Eliasen Jr.
>> The only drawback for Europeans << *ahem* There are countries/continents other than Europe and the US :-)
Good work. Now you've opened the gates, you might want to add the following to your installation instructions: 1) add WebResource.axd as a non-managed path. To get started, open Windows SharePoint Services Central Admin. In the "Virtual Server Configuration" section click the "Configure virtual server settings" link. In the virtual server list, click the server that you want to configure. (Most people only have "Default Web Site" here.) Now you are on the "Virtual Server Settings" page. In the section called "Virtual Server Management", click on "Define managed paths". Add "WebResource.axd" as non managed path. 2) Add the 2.0 webcontrols as safe controls. Pretty basic: <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="*" Safe="True" /> <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.HtmlControls" TypeName="*" Safe="True" /> 3) please point the users to the fact that they must derive the user controls from SonOfSmartPart.IAdvancedUserControl and that they must add 2 member functions (see the samples, at least, that is how I got it to work) remark: for some reason I have not gotten a 2.0 treeview at work with a HoverNodeStyle. Just remove it, and it will work.
Is there any way to use gridview which pulls the data from database??? Unfortunatly I'm getting err when I'm tring to ad myGridview i see the info in dropdown list "Could not load myGridview.ascx"
Hello I have a question We want to update our SQL Server 2000 to 2005 and ASP.NET 2.0. How will work our SharePoint Portal after this upgdrade ?(if it will work) We applied WSS SP 2 and SPS SP2. Thank's
I could create a smartpart.wssdemo.com site and give you an ftp connection to the the UserControls folder if you don't find any other hosting solution...
Hi, I understand that you guys are pros using sharepoint. I on the other hand am not. I have sharepoint installed in the default locations. So, out of curiousity, how would the installation video be of help to me? I do not have a c:\WSS folder, my config files are in completely different locations. Why would you show an installer video which will not help a majority of users use your product? Why would you go through the trouble of creating a video which does not mention anything about DEFAULT installations or at least have a reference to how you installed sharepoint? Your only explanation to the WSS file is that it is 'mapped to your sharepoint site'. I am not entirely sure on how, you 'map' a folder to your sharepoint site. It has taken me all day to install your product. I am not complaining about free goods, but since I have yet to use it I can only contemplate that is a good product. In case you would like to get back to me, here is my email: emeshuris@gmail.com
Hi, Thanks for the excellent product. Sorry for the earlier rant, it took me quite a bit of time to figure out the installation procedure. But I did, and am so proud of myself. But I have a ton of questions for you. 1. Is it possible to user third party controls that require licenses? I have tried to include the license files in the usercontrol directory, with no luck. 2. Ado.net 2 has alot of new features. Is it possible to use them? I rarely use them, but the paging property of the datagrid is awesome, but it does not work. I believe that the error that 'Zenon' is referring to is linked to this. 3. I would really like to be part of this and offer my assistance in the data testing of this product. I have plenty of experience with working with data, and have been using visual studio 2005 has been using since the day it was released for MSDN members. -Edward Meshuris emeshuris@gmail.com
Hi, first I want to thank for your great blog! I have a question about Son of SmartPart: I'm new to Web Part development, but when I understand it right, a Web Part especially makes sense in using the main portal features like single sign on or personalisation. (How) Is it possible to embed the SmartPart Web Part into this funcionality - or is it just a way to display a web part offering some proprietary funcions but no connection to the sharepoint techniques itself? Thanks a lot for your hints! Nikolas dongiovanni@gmx.de
Great! i never got on smartpart.info before.....
I had been checking out these guys: http://www.724hosting.com/sharepoint/SPpackages.htm You get some more features but it is 2x as much money. It might be worth checking to see if they are running SP2 and .Net 2.0 . I am going to look into webhost4life. I am mostly interested the cheapest wss host out there.
Jan, I asked them about this and you can get your server moved to V2 for a $10 fee. Just submit a help ticket for this.
yeah just get me that domain
Thanks Bill They have move to .NET 2 this weekend (without asking for the fee!!), now I just have to convince them to move to WSS SP2...
I am having a problem with Son of SmartPart on a fresh install of WSS/SP2. Just a new Team site and adding the Son of SmartPart UC. I get this error in the top section of the Tool Pane Could not open user control path: System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\Webs\STS\UserControls'. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean includeFiles, Boolean includeDirs, SearchOption searchOption) at System.IO.Directory.GetFiles(String path, String searchPattern, SearchOption searchOption) at System.IO.Directory.GetFiles(String path) at SonOfSmartPart.UserControlToolpart.RenderToolPart(HtmlTextWriter output) I ahve been searching and have not found a solution. I am fairly new to WSS but I have set it up for clients and development teams many times so I feel fairly confident the install is good. I have another server running a intranet portal and have not run into this before. Thank you bill
Have you created the UserControls folder over here: 'C:\Webs\STS\UserControls' Maybe the account running SharePoint has no rights for that folder?
Very cool, Jan. Thanks for this!
I can give you a sub site...
Hi Jan, great example for people starting with the smartpart, go on the good job... best regards, Remco
Indeed a good job ! regards Sorin
Jan Man I missed that! Been reading too many books and papers lately. I had added the directory but spelled it as ":\Webs\STS\UserControl". When I was trying to figure this out I was blinded by my mind. It said my eyes saw a matching path, so that was cool. When I read your response I first RDP'd to the server and checked the path. Ahhhh a missing S! Renamed and connected and all is once again happy in my little neighborhood ;-) Jan Thank you for taking the time to reply to what was an obviously "DUMB" mistake. bill
Jan, This is awesome! Everything is much clearer now - definitely a push in the right direction. Thanks for the post! Tim
i want the new msn now !!!!!!!!!!!!!!!!!
There is another option that you could try, at http://www.sharepointsite.com Luis.
One of the most usefull webpart i have ever used. and now i get everything clear
When I test NorthwindControls project on VS 2003 , and deply the user controls to sharepoint , there is an problems , I think it is the connection to SQL 2000 database , because when I test simple textbox control and add it to sharepoint , it works very well ,, if you have any suggestions , please send to me .
Hans and Jan, Are the notes from Hans truely a requirement? Thanks for clarifying. Also, please ammend the note from Hans to indicate that the "safe controls" section is located in the web.config file (some may not know that).
Any chance either of you could post a sample VS2005 .Net 2.0 sample? I'm having trouble getting mine to work. I have added the safecontrol section as Hans described, but am getting a Sharepoint error "The "SonOfSmartPartUC" Web Part appears to be causing a problem."
P.S. Your sample web control works fine.
And, for your sample code to compile, do I need sharepoint installed on my development station? I'm getting a build error "vs2005 the type or namespace name sharepoint does not exist in hte namespace"
And, What are the different versions (WP/UC) targeted to? When should I use one or the other?
Okay, now a few notes re VS2005 and ASP.NET 2.0 from my work: 1) If you're developing on XP, any references to sharepoint will fail. Not a problem, you just cannot build. 2) To deploy a UC, just copy the aspx and .aspx.cs to the usercontrols dir. I'm not sure how this would work if you wanted to deploy a precompiled uc/dll. 3) I've confirmed Hans' remark regarding HoverNodeStyle. The treeview control can exist, just remove the HoverNodeStyle markup in the ascx file. Also, make sure to follow Hans'/Jans instructions on WebResource.axd http://weblogs.asp.net/jan/archive/2005/11/24/431425.aspx /Bob
Great Demo. I think this capability is AWESOME and you did a very good job of demoing it in a way that most folks can understand !!! Keep up the good work. PS - I Applied to become a member of the "SmartPart" workspace on GotDotnet and have never heard back from anyone. Are you still accepting contributors ?
For this to work, do you need to compile the project? How do you deploy an image with the code if youre not compiling (ie, no Sharepoint on your dev box)? I'm getting an error saying WebResource does not exist in the current context. I've added the [assembly ... code to my cs code, and the WebResource.
I installed Son of SmartPart v1.0 by reading the installation guide and I watched the video (very nice by the way). Sharepoint is throwing "The format of the file 'SonOfSmartPart' is invalid." error. It sounds like it does not like the DLL. I have SPS installed. Will The Son of Smartpart run under an SPS installation in a WSS site?
Fun, anyone? j/k It's really a great webpart! but IMHO there is still space for improvement. ;)
Just out of curiosity, being danish and SPS developer myself, what company did you visit? :-)
I was @ WM-Data.
Denis, what would you improve?
Jan, I have put together a wishlist of improvements over here ;) : http://www.blogging4fun.com/denis/FeatureWishlistForSmartpart.aspx
I just signed up last week with WebHost4Life. ASP.NET is not installed by default, but if you enter a ticket in the helpdesk they will do so. They have a chatfunction i've tried a few times now, and whatever the time of the day they always respond very quickly.
After reading the whitepaper about SP2 for WSS and SPS I have come to the conclusion that you better nog install .NET 2.0 if you are using SPS? Is that correct? I only have one virtual directory for WSS and SPS so I can not keep the SPS on .NET 1.1. And SPS on .NET 2.0 raises an error when creating a new WSS site in the sitedirectory... Should I wait for SPS SP3 or do you have a solution for this Jan? thx!
So on the site when she has the bullets, and the red !'s before a list item, does that mean NOT? As in NOT Fixed Scrolling (!Fixed Scrolling) and NOT Cheap and Easy (!Cheap and easy )????
Dear Jan, Sorry for feedback on the wrong article but the LeadIt Essentials post has been closed for comments. First I would like to complement you for the very nice LeadIt Essentials webparts. Problem is that the LeadIt Essentials webpart will not install on a WIN2K3 SP1 server. Is there an update available? As you can read here i am not the only one with this problem: http://groups.google.com/group/microsoft.public.sharepoint.windowsservices/browse_thread/thread/4902652699d5812c/8772a1933a4cb7af?lnk=st&q=leadit&rnum=2#8772a1933a4cb7af Please let me know at kobusterNOSPAM@hotmail.com. Thanks, KoBus
To Chris: Read to the bottom of her post where she writes "!s call out the features we did just because you asked"
please I need 250MB for mee
FYI - SPS and .NET 2.0 do not play nice. My main portals' search capabilites went down and I was getting Gather Log Errors like this: The address could not be found, (0x80042616 - Error in the Site Data Web Service. ) I uninstalled 2.0 and the search feature commenced it's normal operation. I don't know if their are any other problems or fixes but I found nothing to work around that in my searches.
Can you elaborate on hot to implement/where the *.Config would reside?
Here is visible a solution for the entire homepage :-) http://blogs.devleap.com/romeopruno/default.aspx Happy christmas to all
The config file (appropriately named stsadm.exe.config) will need to be placed next to stsadm.exe. If you don't add the config file, you will get the error message, "Version 1.1 is not a compatible version." Found the notes in the last paragraph. (Why uis it you always find something in the last place you look?) http://office.microsoft.com/en-us/assistance/HA100806971033.aspx#4
How do we deploy a Web Part created in VS.NET 2005 to SharePoint? DRP
where can you download windows live messenger i would love to get a copy of this my email address is herrieven@msn.com thanks
Merry Christmas and Happy New Year :-)
There's no gacutil in .net 2.0 runtime,you must install 200+MB only to have this handy tool. Regards.
I mean SDK.
i wont this msn where do u get it frm?????
Please send me invitation masroor342@hotmail.com
hello, great work man, i'm developing a test webpart which lists all active directory users in a domain but when i upload this webpart in sharepoint it gives an error , i think it is aproblem with security , please reply thank you
I would really appreciate an invite, im sure i could offer you some sort of favour in return. my email address is loz14y2k@hotmail.com.
can any one send me invi for new live messenger beta!!! my email: zeeshanqayum@hotmail.com
POOH U GUYZ U ALL LIK SHIT
Plzzz send me an invitation to kebab_prinz@msn.com
please intive me he-ty@hotmail.com
Meilleurs Vœux de Bonheur pour cette nouvelle année. Et merci pour tout ce que tu as fait pour nous. (a WSS user) ;-)
Please invite me : m_tarhsaz@msn.com
Cool Post, Merry Christmas and a Happy New Year!
Cool one, I allready import it to our Mexican SharePoint User Group Site and it works just great, merry christmas and a heppy new year! Luis.
Please Invite me at mk_fighter@hotmail.com Thanks in advance.
Please Invite me at B-side@hotmail.co.uk thank you
hey..plz invite me..my id is nimmi_namita2004@hotmail.com..Thanks!
Please someone invite me danielmnino@hotmail.com Thanks!
hi pls invite me pasquale_@msn.com
You can also use the External Tools (Visual Studio IDE) to Add/Remove DLLs to the GAC.
hi please invite me if you want amwn_ra@msn.com
Hi Jan, I'd like one of this... :) If you want to share one of them here's my address: demiliani(at)gmail.com Thanks a lot.
Hello Jan, I would like an invitation my e-mail: rramirezg@hotmail.com thanks, Rolando
Jan, please invite me : kvantolh@hotmail.com
Wow, that was fast Stefano! One invite is on it's way!
Rolando, you should have received your invite!
Hi Koen, invite is sent!
Wow, 3 invites in 3 minutes! I must have readers that check my blog like every 5 seconds! ;-) Have fun with Windows Live Messenger guys.
Jan, thanks a lot... invite received but with a problem: seems that the link "Download now" on the message is unclickable (it's not a link!!). Maybe a Gmail problem? Are they worried for a competitor against Google Talk?? :))
Maybe you can try forwarding the mail another mail account? Or you can view the html to get the link out of it. Good luck.
Yes obviosuly I've checked the email source and I've found the link.. :) However, it was to signal this curious behaviour! :P
Oooh oooh me please! cromwellryan at hotmail dot com
Hi Jan, if still available I'm interested! Joost
sorry, may e-mail joost.bekel@hotmail.com
The first three u say... :) I was a bit too fast there (Yet too slow)
Jan, please invite me : datawolf2001@msn.com
HI Jan, one for me please :-) thanks, romeo@netdev.it
One for me too, if its available.... rbg_india@msn.com thanks...
I'm interested if you have any left. eichert12 at hotmail dot com.
Hi Jan, manowar@aspnetmania.com big thnx.
Hello Jan, If you could sent me an invitation, my email adresse is rcosta18@hotmail.com Thanks in advance
Ryan, Joost, Bob, Romeo, and Rohit, I sent you each an invite as well. Enjoy. Andrew
I'd like one too please. bryan.corazza@gmail.com -Bryan
pls send me one.. sumon.net(@)gmail.com
I know that it could be impossible.... but... javier_teixido@hotmail.com
me me me torkil[at]torkil[dot]net
If anyone else is offering invites.... Apparently I have to check back more than once a day :) m_bubyn(at)hotmail.com Cheers,
The GAC on my Windows Server 2003 will not allow me to drag and drop the DLL for Son of Smart Part, or use your right-click method. I am using the .NET 2.0 framework. How do i get the DLL into Windows/Assembly?
Wow...you miss a couple of days....and you miss out! Anybody else have invites ? paulio2000@hotmail.com
invite me? tv__casualty@hotmail.com please?
invite wanted for larsflagan%a%t%hotmail.com
Ha! I got an invite
please invite me petedelite@hotmail.com
First of all, I have to apologize for 3 reasons 1. I post something that is not related to the main thread 2. My poor english 3. The rather silly question that is coming... Here is the stupide question. I created a Excel Import Webpart that fills up a contact list. Every field is correctly retrieved, but there is the lookup field exception. I mean, i identify it with a test like follows: if (list_Contact.Fields[myColumn].Type==SPFieldType.Lookup) then, i get the list and field from which it is depending string str_XMLview=list_Contact.Fields[myColumn].SchemaXml; System.Guid myGUID= new Guid(getGUID(str_XMLview)); SPList list_Lookup = web_CurrentWeb.Lists[myGUID]; and i query this field SPQuery sps_Query = new SPQuery(); sps_Query.Query = "<Where><Eq><FieldRef Name='"+getField(str_XMLview)+"'/><Value Type='Text'>" + myRow[myColumn]+"</Value></Eq></Where>"; SPListItemCollection sps_coll= list_Lookup.GetItems(sps_Query); if my ListItemCollection.Count is greater than one (even equals one) i have a match, and accept the data but when i copy it in the list it is ok until the fatidic SPListItem item_ContactToAdd =list_Contact.Items.Add(); foreach (string myColumn in strA_ColumnTitles) {item_ContactToAdd[myColumn]=myRow[myColumn];} item_ContactToAdd.Update(); and then i have a protected field exception.... SNIF... SNIf... SNif.. Snif... snif... (crying aber not too loud) Can you help? I think that for such a guru it is a problem you already faced and solved, that'a why I dare to disturb you with my ignorance...
I don't get this. Martin has in order to get Office Server 12 signed an NDA. In talking about this **publically** at all he is breaking that NDA. In other words in order to blog this he is risking the eternal wrath of Microsoft. Is it really worth it?
Martis is an MS employee, I don't think he risks the eternal wrath of MS. :-)
Invite me pleaseeeee
Invite me please Juanjo018[at]hotmail.com
I'd like one too please. cois492william@hotmail.com
Please when you have one, invite me. Thanks :)
Can i hv the invite too? hkmrtee@hotmail.com many thanks..
I Need An Invite Too... techno_brains@hotmail.com Thanks...
Helo, could anyone send me invation on my email hotdog@slo-mod.com ? I will be really happy, thank you very, very much!! Bye!
I would like one too, lepsgnr@hotmail.com
Can somebody invite me my email is, sraptor@netzero.net
pocholo_comandosvr@hotmail.com
Hello, It seems I always arrive late. But I try anyway. I appreciate it a lot if anybody can send me an invite. thank you lebpatient@hotmail.com Cheers
hi, can i hav the invite as well plz? email: "urbanadrenaline@gmail.com" thanks in advance Dan
Is there any invitation yet?? hahaha kamelloak@hotmail.com
Sup all? I need an invite for; jeff.decelles@gmail.com
my email is snugs12@msn.com thank you so much
here2day_not2morrow@hotmial.com thanks a million.
people need to pass these around quick because a lot of people would like them. add me to your list: kentback(at)elitemail.com
hey could i plz get a WML invite coz im using msn all the time and want to be-able to test out msn 8 A(wml) so ya. my email is saxamufone@hotmail.com(dontspam)
could anyone send me invation please? I would like one too my email: Nu_yuika@hotmail.com Thank you very much Yui
Hi Jan, am I too late? I'd like an invite please missspank(at)hotmail.com Thanks xx
Martin's link is broken...
Want one? Go to my website, www.everythingfunny.com and register to be a member, then go to the forums and post a message asking for one in the 'windows live messenger 8 beta" thread. -chipTM
if there are any invites left, i'd be more than happy to give it a try;) silver010@msn.com
Hello Sir, If there are still invitations left please send one to me. I will be very thankful to you. You can send me at abdulbasit@in.ae Thanks in advance.
lewisbeech [at] gmail [dot] com Thanks :)
Hello.... Could anyone send me invation on my email royal_tartufo@hotmail.com ?
Hi please send me an invite on ez2517@gmail.com thanks
please may i have an invite topcreator@ntlworld.com
invite me please : damnuy@hotmail.com
please invite badboyrhys@hotmail.co.uk
could sum 1 send me a iinvite plz heres my address bradleywake@hotmail.co.uk
1 for me too maqueu@hotmail.com tks
luukereraivo@hotmail.com Thak You! :)
someone plz invite me chrisliggins1974@hotmail.com .. cheers guys
jza_project@hotmail.com plase send me a wlm invite
someone plz invite me bevlisting@yahoo.com ... cheers guys!
can sumone plz invite me? stephen_returns@hotmail.com
I'd like a Windows Live messenger Invite...Thanks... mr232304@hotmail.com
hey...i'd like an invite please... anjobiel4ever@hotmail.com or anjbiel4ever@gmail.com thanks, Gabriel
please send me an invite too at:- parthshah89@gmail.com
simpleplan12516@hotmail.com
please send me an invite to gansolfm (at) hotmail.com thank you!
pls invite me to window messenger 8.0 thanks alot
will you send me an invite email ryan_begen@hotmail.com
Hello will you end me a invite please.. My mail: mr.ronni@gmail.com
hy, please, pimp my MSN, please invite me..... greez chefrocker email: chefrockerxxx@gmail.com
i would like an invite please at rcx_6000@hotmail.com
hey can i have an invite please? finalf4ntasy@msn.com
can you send me one please. lambada23@hotmail.com
hmm this reminds me when i got a gmail invite... please send one to ericpj[at]gmail[dot]com
Hello is it possible for me to get an invite for this please.....my email address is - heidi13_@hotmail.com
hi can i have a invite please, my email is rcooray@evoprojects.com
please send me invite at vozdra_valentin@hotmail.com
Can you please invite me? My email is grey923@gmail.com
if any still exist + prospect of generous people --- could an invite be sent this way: cantmakeasound@gmail.com merci, Xo
If anyone has any invites and would be kind enough to send one my way I'd really appriciate it :) Thanks in advance :D you rock :) Dallas.Hindle@Gmail.com
Ok...this looks great...please invite me also for this WLM stuff...TIA johandevri AT gmail.com thanks Johan
If anyone has any left it would be appreciated if you sent me one =) afireinside27 AT gmail.com
Hey can i have one? computer_kid@rogers.com Thanks
hi man i'd like to try would you please give me one ? thank you
Hey, could i please have one aswell, rolando@dodgeit.com , thank you vary much
I'd like one too, redaleart@msn.com
can u please email me an invite to cyn_lowp11@hotmail.com
can u please send me an invite at trashmebaby at gmail dot com
plz plz plz send me a invite djaby [at] hotmail [dot] com
Hi Jan, Pls send me the invitation. qhwong_devil@hotmail.com.....Thanks :)
Hey could i please have a invite kikflip@actewagl.net.au
hey could i have an invite aditya_m_1809@hotmail.com autovil
send me invite plz darknezz.2004@gmail.com
hi, would someone mind sending me an invites please Thanks thobbs95@msn.com
please me to: beka83@gmail.com
hey can you send invitation to me? ardabey@hotmail.com
can I get one as well... you can send it to astmatrix@yahoo.com
can u plz send me the invitation at esam_atif@hotmail.com, thanx dear.
If someone have some to spare... here is my e-mail: tad3j@msn.com
could i have an invite please email :emanuelcj@hotmail.com
can I pls have an invite bart.wouters@hotmail.com
Can someone send 1 please. raidereyes@yahoo.com
I come here so late, but I still want to have a try. mrpufan@hotmail.com and best wish for everyone who wonder a invite.
I would like an invite. If anyone got a spare invitation, please send to bllau2004@gmail.com. Thanks!
michaelwardsjk@gmail.com can someone please send me an invite for the new msn
if someone has an extra invite could they please send it to michaelwardsjk@gmail.com it would be greatly appreacheated
Hey, wanna invite me, it'd be greatly appreaciated tv__casualty@hotmail.com
an invite pls. shubham@yahoo.com
i'd like one too! hamfast@uol.com.br thx!!
hey please send me an invite twisted_elegance13@hotmail.com
please give me an invite for msn messanger live as i am on messanger everyday and i have been trying for weeks to download it!!! Please send me an invite!!!! my email address is mike.j.smith@hotmail.com
I would also like to get an invite. Like all of them :) parikshit_kabra@hotmail.com
I would also like an invite for WIndows Live messenger. Thanks in advance an d I really appreciate it. My email is lastnightout2000@yahoo.ca
Hi! Is there one invite for me too? Thank you!
Sorry, forget to post my email: jmp3@clix.pt Thank you!
I would like to test the new Windows Live Messenger Beta, so if its possible please send me an invitation. My email is cd_iro@hotmail.com Thanks
Heya, So i realize that its about 80 million people afterwards.. but i guess im here like all the rest Mike.Snoddon@gmail.com
i have one question: if i can get an invite can i give them to others? (like gmail) ygtylmz@gmail.com
hey andrew .. if its possible can u also send me an invite for msn live (or msn 8) email it to me at - lilballer99@gmail.com thanks a lot Jason
Seems like you hand out one invitation, you get a deluge. I'd request an invite if anyone has any left. spacecadet1701 at gmail dot com
hi i need a invite polandm@gmail.com
IF YOU WANT AN INVITE, and have not recieved one ;), give me an email to windowsliveinvites@gmail.com and I'll be happy to give you one.
I would really apreciate it if you would send me an invite Thank you.. and best regards Soham my email : bhatia02@hotmail.com
Can I please get an invite Thanks so much :-) email: starbeamerz@msn.com
i would like an invite please at kavern4@gmail.com
nishant85@gmail.com would love an invite :)
If anyone still has one available... captainvontrapp@gmail.com
Please!!! vinis_ms @ msn.com
Hi, Please send me invite? My mail: bozkurtum@msn.com Thanks...
Thanks in advance navlem@gmail.com
Hi, i would like an invite please at: khalev@hotmail.com Thanks...
Hi i'd like an invite Jan messedupkid@hotmail.com Thanx :)
Hi, i would like an invite please at: azlotnick@hotmail.com
Hello Please invite me I really appreciate it arabinow@gmail.com Thank you!
Hiya every1, I was woundering if any1 can send me an invite plz Im really upset cos my friend has got it and he says its awsome. My e-mail addy is the_one_n_only_little_bill@hotmail.com
Hiya every1, I was woundering if any1 can send me an invite plz Im really upset cos my friend has got it and he says its awsome. My e-mail addy is the_one_n_only_little_bill@hotmail.com Thankyou
i would like an invite please at: gimzajui@hotmail.com
Hello All I have been trying to get a invite for Live Messenger. I would really like to try it out. My email address is jboyd18@hotmail.com
I would like to try it also if there is anyone that can invite me, krutoymuzhik@hotmail.com Thanks So much
I'd really like an invite, if some one has any free invites please invite me gabzlab00@gmail.com
can i pleaase have an invite? arjun4u2nv@gmail.com SAFE!
can u send a invite to me please kashingyip@hotmail.com
Hi Jan, Please Invite me My email id is lambu@hotmail.com
id love to get an invite just to see if the whole interface has changed or not thank amillion in advanc!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
whoops my email is cory_s_monroe@hotmail.com (im not trying to flood......promise)
CynicdarK@Yahoo.com
Hi there, please send an invite to: dj45_666@hotmail.com Best regards to all!
can i have one......xtrilli@gmail.com
please invite me too mauriciorock13@hotmail.com thanks
My email is relish.marado@gmail.com and i like to receive a invite too :D thkx
can i please be invited :D psychoboy70@hotmail.com
Requesting invite to: stealthy618(a)gmail.com Thanks:D
One invite for me too fapeurope@msn.com
invites if you have one please send
cory_s_monroe@hotmail.com send me one please
i hope anyone help me and send 2 me invite and thaanx soo much my mail abd.samy@gmail.com bye bye
Are there any invites left? If so, can I please have one? bl4ckmag3@gmail.com
Where are my manners, sorry, can I have one PLEASE? Night~
Anyone got one for me please? Email chicko_baybee@hotmail.com Thanks
Hello everone PLZ PLZ PLZ I BEG U give me an invite. Lol my messenger is playing up enough as it is and it'd be great to have a new version. icantthinkofanygoodnames@hotmail.com THANKYOU I'll luv you forever:)
please send me in an invite it will be greatly apreciated My Email: mr.austinfletcher@gmail.com
I have 5 invites for anyone that would like to participate in the beta if anyone would like one just email me at crzychicken12@hotmail.com i will only give them to the the first five people so get them quick.
cool stuff
Are there any invites left? If so, can I please have one? winson@126.com
Can i please have an invite? that woudl be great pheldagriff_1@hotmail.com
Can I please have and invite. shadolinx@hotmail.com
As the Community Lead for SharePoint Products and Technologies, I want to thank everyone who's evaluating O12 Beta to stick to their NDAs. Did anyone notice that the said blog entry has been deleted? NDAs apply to internal MS employees as much as they do for non employees. Until Beta 2, only those in the Product Groups should be blogging or talking about O12 features and other info. Beta 1 testers should be using the private newsgroups to ask about and discuss O12, not blogs or other public forums.
Would you mind to give me an invitation sankar666@hotmail.com
Could i have an invite please?? my adress is chrisdie@hotmail.com
someone please help me out!! garrkell@gmail.com thanks =)
Invite me to pls... beekware@hotmail.com Thx!!!!
Hey you guys im sorry but im all out when i get more ill be sure to post ok Andy
Please, if u could send one for me, my address is melissa_spinola@hotmail.com Thanx!
Hi, invite me please olliew321@hotmail.com uk user
Please i´m not speak English, im brasilian, pleasy invite me... my passaport: fgraseffi@hotmail.com
Good lord the email harvest is going to be plentiful on this ranch.
hi can i have also a invite plz mine e-mail : timothy09@hotmail.com thnx
bajolo@gmail.com
Mr. Tielens, I saw this posting for a lite workflow tool. The link on the blog (http://www.gotdotnet.com/community/workspaces/workspace.aspx?ID=C07F64E8-8229-49A1-B160-B24C89122894) seems to be broken. Is there a place I can download the current tool? Thanks, Shawn Wilson
Someone is having a contest for more here: http://www.cybernetnews.com/?p=247
Ive been searching high and low for one of these invites, if youve got one spare can you send one out to n1ckgatford@hotmail.com
hey Jan please send me an invite samtylr@gmail.com thanx, Sam
plz invite me hamid-reza@gmx.de
computercorral@hotmail.com Thanks
clashingpistols@hotmail.com
Can I pleeeease have one of the invites... zachary.mckillop@hotmail.com Thanks a lot :)!
If anyone has an extra one I would love to give it a try. Thanks jonsjunkmail@gmail.com
Can i have one of the invites please? my email is yang_danny19@hotmail.com
Lazzareth@gmail.com Thanks,
pleaesent me one juk608@hotmail.com
Hello Jan, my email adresse is victorhp50@gmail.com tnx.
hi i was wondering if you had a spare windows live messenger invite if you could spare one please send an invite to ubergoobernoob@hotmail.com thank you very much Josh Alexander
Hello If you had any invites left could you please invite me. avani.maan@gmail.com Thank You
could someone get me an invite please? tylercooper@gmail.com Thanks.
gabathuer@gmail.com would be great if i could have an invitation
Please invite me for Windows Live Mail my e-mail address is: k_nasar@hotmail.com Thanks
Please invite me for Windows Live Messenger mr_misterau@hotmail.com
hi jan may i have 1 plz popz1707@hotmail.com thx
could someone get me an invite please? nightcd(at)hotmail(dot)com Thanks.
could u please send me an invite???? Sanghavi_sachi@hotmail.com
some 1 send em a invite thanx walshyboy27@hotmail.com
If someone has an invite available from here, could you please send it to paul.gunner@gmail.com thanks a bunch.
Hi, I would really like to try the new Windows Live messenger. My email is: mikiberd@hotmail.com 10x
hi can you send me one too? roelbuist@gmail.com ty
Plz Invite Me pom607@hotmail.com Cheers M8
hi.. i want my email is evandrodep@hotmail.com thanks ;)
hey, would really apprecaiate if you could send me an invite aswell...my email addy is muhammad.m.syed@hotmail.com
any invite available for spain?? kilomiguelete@hotmail.com
Can i get an invite as well? I REALLY want to try this one so i can have better video conversations with my sister in NYC... My email is: despiar26@hotmail.com
hola...por favor me mandais una invitacion.... botspain@hotmail.com Saludos y gracias!!!
Heya. if any1 has an invite, can you send 1 to me plz... nieldev@absamail.co.za Thx Peace Out :D
Hey guys, I would certainly like an invite. If you can send it to rnb237 [at] hotmail.com
please send me one mihajlo.filipovic@gmail.com
plz send me an invite
Hey i am not shure if you have any left but if so I would love to have one. My email is samokaz2002@msn.com. Thanks
Please, if u could send one for me, my email is gsr0812@hotmail.com Thanks!
hey can you send me a msn invite my email is : sanjeev.mannoe@gmail.com
hi Would I be able to have an invitation. please send one for me, my email is surasitjo@hotmail.com thank you ^^
Hi can i have an invitation too plz :D My email is chibby10@hotmail.com
IF YOU WANT AN INVITE, and have not recieved one ;), give me an email to windowsliveinvites@gmail.com and I'll be happy to give you one. IF YOU WANT AN INVITE, and have not recieved one ;), give me an email to windowsliveinvites@gmail.com and I'll be happy to give you one.
If u have an invite left pleas send me one tnx in advance. van_der_Zwaard@hotmail.com Regards, Adriaan van der Zwaard
I want an invite please email: egyteam@gmail.com thx
i want an invitation please email: oscarimar@gmail.com
Can i please have an invite my email is : craig.lenthall@ntlworld.com
Please send me an invite too!!
amit07@hotmail.com Please send me an invite too!!
can you please send me an invite? florasze@msn.com thanks
can you please send me an invite? maluku4real@hotmail.com thanks
can you please send me an invite? leonbey@hotmail.com thanks
can you send me an invite? alexandre.azevedo@zmail.pt tkx
Can you send me one? gniool@gmail.com
Hello:) I dont know if it is possible to get an invitation, but i really would like to have one this is my email: Noor_Alzahra@gmx.net Thank you alot in advance
Please send me an invite to nvrajesh@homail.com
hey kwl could u invite me please im special :D lifes_a_nipplewilly@hotmail.co.uk
ryanbestofthewest@hotmail.com invite me
hamiltonzfinnest@hotmail.com plez thnx
please can anybody invite me noppus@gmail.com thankzz in advance
thanks to anybody who s invitat me!!!!
I would really like an invitation! bradybunches4@hotmail.com Thanks, Kris
hi plz send me 1 too wiqi84@hotmail.com
Please send me an invitation,thanks a lot chris_linzh@hotmail.com
Congratulation EROL
Please send Invite to djpoppers@msn.com -tx
Please can anybody invite me amir_maor@hotmail.com
pls send an invite cumanji@hotmail.com thanks
Plz invite me. maggot_dc@hotmail.com
If you have one spare i would be very greatfull. jay_hl@hotmail.com
dera sir dear any person who like to help dear all, if you someone has invitation please send me one on ece1128@gmail.com
me too please send me an invitation , and i ask God to bless u all day and night please please please please please please please please please please please please please please merci li_oa_9@hotmail.com t.lo2ai@gmail.com thxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
It would be very nice, if I get an account for the Windows Live Messenger 8. My email.adress is larsimartens@gmail.com thx, Lars
I'd be nice to have an invitations. Please and thank you! my email is A.Element@gmail.com
hey can i please have a invite please my email addy is gohanlaw[at]hotmail.com thanks very much
I'd like any avaiable one dak1091@gmail.com
eu quero um convite =) pode me mandar? espero que sim :)))) "send to me plis" e-mail: paulo_pn@hotmail.com
could i have an invite if possible please cybergenerx (@) gmail .com Thank you.
can i have a invite plz theboywhohasnolegs@Hotmail.com
Can someone please send me an invite? I've been chasing them around everywhere with no luck. My email is mimzo@emirates.net.ae Thanks a million in advance to anyone who helps.
hi please may you invite me to msn live.my msn and email is sagar199@hotmail.com. thanks alot
Hey, can you please invite me. Joedaly66@hotmail.com thanks.
i would like to have a look of that new live messenger. my email is loggica1@gmail.com i hope someone will send me one... if not its ok, take care all of u ;)
Hey, can you please invite me. skyoutback@gmail.com
hey, could you please throw me an invite aswell? thanks a lot !! rohan.lp17@gmail.com / nimrod1788@hotmail.com reguards, rohan
Plz could you invite me eckersley5@hotmail.com thanks alot, Ross
Please, invite me. my e-mail is: a_shema@hotmail.com
chaosfactor10 [at] hotmail.com thank you ery much
hi if youve got any invites, could you send one to mentalentil0@gmail.com thanx
i'd appreciate an invitation to sahink [at] walla.com thanks
I will trade 3 windows live invites for windows live mail. msmasoo@gmail.com
Please invite me.. e-mail: punk_kid_(at)hotmail.com
hi i dunno about all these invites ive tried everywhere for them they are no where to be found im starting to wonder weather or not they actually exsist there are loadz of people on the net advertising that they have them to tell you the truth i think most of these people are using it as a trick to get peoples addis lol i i posted at about 20 sites i aint had result of any there is a programme nocking around that is supposed to let you on without a invite just search for windows live crack in google lol let me know if any1 has any problems it worked for me lol............................. Graham Doherty saggiemaggie7@hotmail.com
Hi Jan, if still available I'm interested! I will be greatful Thanks Farhan Saghir farhansaghir@hotmail.com
hi ! if still available Im interested! I will be greatful Thanks Patel Nikunj niklovesu@hotmail.com
Please send me one: orenamit@gmail.com
hi jan how are you ??? i m a student and i have lots of interest in softwares i would love to have my hands on this windows live messenger if you will be kind and send me a single little innocent invite i will be very glad bye and Take care najam sikander http://www.najam.wordpress.com
oh in all excitement i have forgot to mention my email address its najamsk@gmail.com or dragona_eye@hotmail.com
can u plz send me an invite my email address is dtorrie@hotmail.com thanx damo
can you invite me? :) nipsu009@suomi24.fi
Hey man, please can you send me an invite: hells_angel471@hotmail.co.uk Thanks in advance!
Hi i want msn messenger live please send me invitation in this moment i have msn messenger live but whit patch :S i want complete Msn please Send me Invitation I'm Italian.
hey can i have an msn 8 invite!! my email: silly_lil_munchkin88@hotmail.com thnx! m
Hi, May I have an invite please? My email address is: kramer.van.nostrum@googlemail.com Many thanks, K-man. =)
gnlucci@hotmail.com Thank's
xcruiser@hotmail.com
Hey, Im the 1560th person, lawl. Could ya please send me one to jezadeza@gmail.com :P
please invite me to windows messenger patrickjamelo@hotmail.com
invite me to messenger please stergios87@hotmail.com
can anyone kind enuff to send a invite to hatemails(@)hotmail.com?
please send me one. supersudha1@hotmail.com give the chance to girl from NEPAL.
http://ideas.live.com/AcceptInvitation.aspx?E911D8F6B550EC819C54EFA565635A9E45389F5ADA4C3779941052E8C7E3465FEAF0F8BF654287580C0A0EB3E57D937E http://ideas.live.com/AcceptInvitation.aspx?E911D8F6B550EC814E98AFF34B68255AF240E8F0505EC1F1F2E84B374E3985A4567AC31076A17C494FCAE26157E8B519
may i have an invitation my email is master_jas2006@hotmail.com
Couldi have one too please? infernus@gmail.com
i have 6 invites to give away so if you want one email me (fast) on saxamufone@hotmail.com_donotspam if your not fast enough to get one of the six im happy to trade my last one for somthing, you decide (=
i hope you are invite are not finish
thank you
Any chance of an invite for me please? tom_kemp2003(at)hotmail.com
Could I have one too please? email: avdocu@msn.com Thanks!
Good luck buddy! I will think of you in Bangalore :)
invites please.... ;o) kekex1@gmail.com thanks...
plz send me an invite : jay_patel91@hotmail.com
Please send me a invite: gamix2gamix@hotmail.com thanks :-)
plz send me an invite : masterwong06@gmail.com
Please Send me an invite: mekarski6@hotmail.com
may i have an invite wael123_1@msn.com and i will be most gracefull who ever gives me one
plz can i have an invite samer_rock@hotmail.com
zheng_wang2005@hotmail.com thx
werribee@hotmail.com
Hello! He would like an invitation of Live Mail!! Would anybody have one to do me that kindness? jefelara@gmail.com
plz can i get an invite abudall[at]hotmail[dot]com
ı want it another one ... hknmail@gmail.com pls hurry up :) ı want use it thanks a lot
i needs the windows live messenger invitation very urgently. as its one of the sessions i have studied and need to submit the reports for the same. Please i will be thankful to you for ever. mail me: wsm_mum_hchakera@msn.com
Please Invite me : aissaoui_imad2@hotmail.com Thanks a lot
Can you invite me please ?? Mosabama (at) Gmail.com
I'd like one too please. has001@gmail.com
I would like to have one. Could you please post to sunshrestha@gmail.com. Thank you
please invite me emreenesyavuz@gmail.com
please invite me.. at khalid_shaikh@msn.com
Please invite me :) zaparojdik@gmail.com
Can i plz get an invite, i've been waiting for this for a long time ! plz sweetcar6@gmail.com plz and thx
hey man plz bro send me an invite plz plz plz!!! it is for a good reason my email is extra_special@hotmail.co.il
Can i plz get an invite, i've been waiting for this for a long time ! plz prutsieterke@gmail.com
please invite me : mattke007@hotmail.com
hotdogwong@hotmail.com
invite pls: amanishk@yahoo.com
pleeease someone invite me felipebcs@gmail.com thanks alot!
can someone please invite me id love it
can someone please invite me id love it bryceplatt@gmail.com
Hi Plz i would you like try msn ^^ My msn is : ettore85a@hotmail.it Thank's a lot ^^_^^
I'm not really expecting an invitation because I'm way too late, but still I would like to ask if anyone possibly could, I would love one, and I would also like to say thankyou if you do invite me ^_^. My email is deadfulness@hotmail.com
Can you please please please please give me one of these invites. I need because my patch isn't working... Mail me at xander_computerfreak@hotmail.com Like they would say in Dutch: Alvast héél erg bedankt Thankfull Greets xander
Please Invite me : cushatechno@gmail.com
Hey! I'd love an invite!! Would anyone find it in their hearts to give me one?! Thanks! ericka.punk@gmail.com
Requesting Messenger Invite: keli.at.vinyl@hotmail.com
hi i would realy like to have an invite for msn 8 thanks in advance my email is npw25@hotmail.com
Hi IF anyone has an invite they want to give to me, i would be VERY gratefull mpannen@gmail.com is my mail adress.. Thankx a lot
Hi all, firstly - thanks for the link ;) The reason that the installation guide has been removed from my blog is because it is a bit early in the product lifecycle to be talking publically at that level of detail. I'm hoping to re-publish the article around the Beta2 timeframe so keep your eyes peeled as I know how usefull these kinds of things are. Regards - Martin
hi... anyone send me ... cristianmoro@gmail.com thanks
greetings, i would love an invite Email: disk59@gmail.com ManyThanks lloyd
Thanks for the info, and could be also best tip for customization, like the ones from Heather, or backups or administration?, there are also good ones...
skfan_86@hotmail.com
Hi, I would appreciate if you will invite me on this Windows Live Messenger. My email address is cute_royale@hotmail.com Thanks alot and more power!
Jan, Great files. How do you compile your webparts from vs 2005 to 1.1 framework? Do you use MSBuild?
You don't have to compile to .NET 1.1 if WSS is running on ASP.NET 2.0. Just create class lib. project, add references to System.Web and Microsoft.SharePoint.dll, and use the snippets. Then compile in VS2005 and deploy like you would do for 1.1 web parts.
Hi Jan, please can u invite me? thk holdmont@hotmail.com
Can I be invited,please? andreasmenon@gmail.com
would love to see you post these individual snippets on http://www.gotcodesnippets.net
hi, just wondered if I could get an invite? vtek_d1@hotmail.com thanks
plz can i have un minnijaf@hotmail.com
Hi! If someone has any invites left could u send one 4 me :) I would be really happy:] keiloord@gmail.com
for me too please alemaozinho21@hotmail.com
invite plz hymppa at gmail.com
invite me plz XD xixi_angel@hotmail.com
I'd love to get a chance to try this. burntchips@hotmail.com
Are there any examples of displaying an ASP.NET 2.0 web part in SharePoint using Son of SmartPart? I've found lots of examples of displaying user controls but none using the Son of SmarPart WP. Also, can Son of SmartPart display custom ASP.NET 2.0 web parts that inherit from the WebPart class (NOT SharePoint web parts created in Visual Studio 2005 and extending from the SharePoint dll)? Any help is GREATLY APPRECIATED!!
could you please sent one invites to me? thanks a lot! baixn@msn.com
Can any people sent me a invites, thanks! cbmale@msn.com
please please please invite me i'm desperate for an invite heres my address meganwilson12@hotmail.com
hello.... please please, please and please..... give me one invite? please? my address is ->> suporte@Inets.com.br kis'sss. sharon!
omg omg omg, can you ppppllleeeaaassseee give me a invite to windows live messenger? I love you you forever! pllleeeaassseee. I give u.. cookie, money and.. mcdonalds hahaha. Please? Please please please!!!!!! My email adress is as follows: x_xblackrosesx_x@hotmail.com Thanks
Kylerobinson.93@hotmail.com please. thanks
hi PLEASEEE can i have an invite? i would be really greatful! My email address is slinkybear1@hotmail.com
Hi Can i Please have one of these Invites. Tanks a lot. My eMail: r4zzzor@gloomy-esports.de
can i have one invite please? here's my email: jorge_jmt@hotmail.com Thanks in advance
i want an invation for Windows live messenger
plz send me invatation fast
I have posted a WP C# project template for VS 2005. http://workspaces.gotdotnet.com/jywss
Great job man, this is really nice thanks :).
Very nice :)
Hey everybody!! Please, send me invitation too!!! Thanks guys!! Greets from Brazil for u! my address: williamfaria (at) hotmail (dot) com :)
hello can you please send me a wlMessenger invites. I can't thank you enough. jrlander@hotmail.com
I've got a few available at my blog under "Windows Live Messenger 8 beta invitations available." http://geekswithblogs.net/colinbo
me too! sa5jung87@hotmail.com
can someone send me one too? rawnchong@gmail.com. thanks.
i want one invite!! please brunojg@gmail.com thanks a lot!
Hello Jan, I would like an invitation my e-mail: axe_boy@terra.com.br thanks, Roberto
Could i have an invite pleeeeasse :D gareth.j.h@hotmail.com thanks, Gareth
Me too Me too! dixit_m@hotmail.com Thanks!
Please, invite: ravexx_[at]hotmail.com
plz i need an invite plz send to shadow21992@hotmail.com
hey...how u doing...i have been looking crazy for MSN Messenger live...and i have found it and downloaded it....but i can't log in...cuz someone told me i need a invite...
If you Can Pleease Send Me to : LASTSOFT@GMAIL.COM
can you share the live messenger with me? can you give me a invition? thanks amartya0064@hotmail.com amartya0064@msn.com
If anyone wants an invite, you can contact me at ajh697-wlm@yahoo.ca. I have a bunch of 'em.
Hi Jan, I'm a regular visitor of your blog, but never had commented on the posting. Once more thanks to your posting i've been updated on documentation, thanks.
Greetings Jan & other esteemed Sharepoint WP Developers, Per usual, kudos to Jan for his snippets, and continued trailblazing for us. Say, does anyone know if it's possible to use VS.NET C# Express Edition 2005 to develop web parts for a .NET Framework 1.1 environment? My current engagement is for a very large corporation - the kind that take years to adopt a new change like .NET1.1 - to - .NET 2.0 upgrades. I'll be developing custom web parts for .NET1.1 for at least the next year - but I WANT to do it inside a new version of VS.NET C# Express Edition 2005 (because it's new & has a modest laptop install footprint). Does anyone know if this is even possible, or must I continue to use VS.NET 2003 EA Edition for developing .NET 1.1 - compatible web parts? Any info is most welcome. Cheers, Mark Vogt.Sharepoint Consultant.VOGTLAND.mark.vogt@vogtland.ws
Good luck with your training! If your site and contributions are any indication of the quality of the training then I'm sure it will be fantastic. Cheers, Shane
Good Luck!
Okay, this is off topic, but I was hoping to get some help... What is the component/webpart/whatever that you are using for this blog? I have been trying to use a blog web part for my wss site, and am failing miserably... I tried the blog web in fp2003 and it is okay, but user comments do not appear anywhere except in the lists, and there they do not show an ID for the message they are supposed to be attached to! UGH! Anyone know of an easy/good web part for blogging to add to a wss site???? Thanks! --David
hope your "Office 12" includes Groove! ;-)
I do a trainnig in PARIS : http://blogs.labo-dotnet.com/patrice/archive/2006/02/05/10485.aspx that was a nice day! Best regards EROL
thanks for the heads up :)
Same here, very nice reference
Hmm, you guys are really raising the bar in terms of photo expectations from these events. Ted and I will try to keep up next week from Sao Paulo. Cheers ...
Thanks fot the info...
excellent info! thanks..
Only a note about using VS2005 to build WSSv2 and SPS 2003 WebParts, it's possible using MSBee to target Net FrameWork 1.1 (see http://www.gotdotnet.com/codegallery/codegallery.aspx?id=9ac94da5-8e5a-4a33-beda-9b8d00970371) And I have a template that use this technique in (http://www.ideseg.com/SharePointVisualStudio2005WebPartTemplateProject.aspx) As always great post. Thanks Carlos.
Hey Jan, An interesting point to note about the VSTO 2005 extensions is that the ServerDocument class is presently unable to remove the ActiveX control TrinStrgClass (Trinity Storage Class) from the document. The only way to remove this object is actually to open the document (in Word!) See post at http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=223613&SiteID=1 for details. As noted in the post, you can end up with spurious macro warnings when compositing documents together resulting in multiple instances of this ActiveX control.
Jan -- I've really found your blog very beneficial. I've been moving to ASP.NET 2.0 and am using SonOfSmartPart. I've got the SiteCollection sample above to compile fine, but I'm a little confused how to get it into .Net 2.0 WSS(things are pretty different than when under 1.1). Any help would be appreciated. Thanks -Eric
Jan -- I got it! Just needed to move the .dll to the bin folder. Duh...
Definitely yes on #1. I was doing some smartpart work recently, and found the string-only limitation rather onerous.
Looks cool...Seems like a PSP running Windows Mobile...
Please send an invitation over to 'esb_us AT yahoo DOT com' Thanks! SBC
Sure, Hook me up. Thanks. psiclonik at hotmail dot com
I'd like one too! josh at joshpainter dot com Thanks!
Please send me an invitation to mhueschen AT hotmail.com thanks in advance. MH
I'd like one, too... ekapic at yahoo dot com
Thank you keith warren 7 @ hot-mail no spaces
Yes Please! harrisonj AT gmail.com Thanks!
Drop me one. please. pkremmers AT hotmail.com
SOLD OUT!!!!!!
I still have invites; leave a comment here (http://spaces.msn.com/objective/blog/cns!3A09DD37A6E760B4!906.entry).
I also have invites stephen.muller@gmail.com
I dare to ask for an invite. \o/ Metallikettu ät gmail.com
i wan i wan....... cloudyun83@hotmail.com
invite please.. sweetz_02 AT hotmail.com
Are you kidding me? Is this is a joke. It looks like a PSP that's trying to be a small labtop, thats trying to act like an ipod. Oh yea, and you can draw neet little pictures on it like a etch a sketch. WOW!!!! lt's trying to be to many things at once. Why not just buy a sleek more powerfull 15'' labtop. Is size really that much of an issue between the two? Not to mention the small keyboard is going to be a pain to use. Nice try Microsoft but this will flop, mark my word.
"It looks like a PSP that's trying to be a small labtop, thats trying to act like an ipod" sounds great to me! looks a lot more portable than a 15" laptop!!! Its basicly a larger PDA, with hopefully decent HD size, therefore MP3/Games/Video/Email etc etc all in one.
don't like son of smart part name.SmartPart2 also a nice foolproof installation would be good. when an error occurs within a web control embedded in a smartpart, you just get a standard sharepoint error page. An ability to say what happened would be nice if debugging.
"It looks like a PSP that's trying to be a small laptop, thats trying to act like an ipod" That's right. But it falls short of all. And this is Why. 1. Why would gamer choose this over other gaming products? (i.e. PSP) Is there anything about this that makes it a better game unit to the others? NO 2. Why would someone choose this over an ipod? Three times the size. You can't put this thing in your pocket! And the overall design looks as if it were ripped off a car dvd player mounted in a family mini-van. 3. Is some business exec, traveling sales person or anyone really going to choose this over there Blackberry for email? NO. Once again twice the size. Nor will this replace there laptop either. The size is not that much smaller than a 15'' laptop. No advatage. You can't put it in your pocket therefor you will have to cary it in a bag. So really, it's not "a lot more portable than a 15' laptop!" It's trying to be to many things at once without any improvements to that of the products it's trying to be. Typical MS hardware!!! Unoriginal
I have a few left if anyone still is interested. http://www.cromwellhaus.com/cs/blogs/ryanc/
Nice t-shirt, to bad Im not going...Good Luck!
More cool t-shirts at the BIWUG (Belux Information Worker User Group) stand ...
I want one!
Jan, I will visit you on wensday, would like to discuss SoS. And a tt-shirt ofcourse;-)
Hi, I didn't think people were allowed to demo or talk about SharePoint v3 as it's still under NDA?
come on i want one ,......................... no one comes to my town what can i do :(
In your page of "Building Web Parts the Smart Way Starting with the SharePoint SmartPart", in the second example where it says: public class CalendarControl : System.Web.UI.UserControl, SmartPart.IUserControl { . . . How can I do that but in VB.NET, for example I wrote this: Public Class CalendarControl Inherits System.Web.UI.UserControl Implements SmartPart.IUserControl .... but I have an error, and I can't execute that example, can you help me? Thanks Excuse me for my english
Hey what do I have to do to get one of those? Get Patrick drunk? Done ... http://www.mahugh.com/images/blog/2006/03/07/image09.jpg
Can I be invited too. dnaisan@hotmail.com
How to get Free SharePoint 2007 T-Shirts ? I'm from vietnam. see it very cool.
Although I'm not a SharePoint guy I really enjoyed your session! Unfortunately it was to crowdy afterwards to shake hands.
Great info... Thnx Will SharePoint Designer 2007 will have anything for WebPart developers?If yes what? Its kind a getting annoying to develop webparts with out any design view!
Change #1 would be highly appreciated from my side. Any idea on when this version will be released?
Please one for me too "duracel_ AT hotmail.com
lemmie guess... the name of the shipping product may change in RTM too.. Windows SharePoint Services Version 3 Release 2 for Office 2007/Office 12 Enterprise Portal SP1* *requires Vista Ultimate or Vista Enterprise
Hey invites anyone please? catgisicki@msn.com
Well, this system looks like a pain in the neck. Its cable for the headsets comes out of the bottom so you can't listen to music or anything when its closed. Cool idea on the key pad, but it just wouldn't be good enough for gaming. Its probibly way to small and a lot would be crouded. And of corse, being lazy, they didn't just modify a key bored so that it only had the essentials. Who needs scroll lock or home or insert or page up or down. They could have even made an intirely new keybored. BUT NO! That would involve WORK.
i have 4 invites. Email me if you want one qwerty967 ät hotmail.com
Where is Microsot Office Project 2007 :( Regards, Jerry
This will be interessting. My understanding from a session at the PDC was that cross-site access to lists is a design point for WSS V3. If that underrstanding was correct and is still accurate, the rollup web part is codable. We shall see. There is always CorasWorks, who have provided roll-up functionality in V2
Any left for me? venomed@jippii.fi
For anyone who travels a lot for work, it should be great. I want one just so that I can still get some work done the next time someone in front of my on a flight puts their seat all the way back. I have a 15" laptop now that's a pain to use on flights if the seat in front of my isn't upright.. a smaller, and especially a tablet screen will fix that. All I wanted or expected was a smaller, longer battery xp tablet. Once they get the battery life figured out in the second generation, I'm all set!
ertu505 at hotmail.com
Invite me please.. walsh@most-wanted.com
I am assuming same would be true for WSS?
Who is using 64 bit SQL Server 2000? I would have preferred the test be on 32 bit hardware. Check out my post.
Dion - I think it would be the same for WSS provided SQL Server 2005 is being used and not SQL Server Express 2005. Interesting question though..
Hi.. Thanks alot for your SMARTPART it very usefull for me. Best regards.
please me too...lyzanxia@gmail.com
jmartinezg@hotmail.com .....pretty please!!!! thx =)
yasu.amsel at gmail.com if you could invite me , please and thanks
Jan, keep on doing a good job!! We are using smartpart for more than a year now, and it´s a real big help for us. Yes on #1 and #2. Smartpart2 looks the best to me.
kobbing@hotmail.com plzzz ty!!
Love everything about Son of SmartPart except the name, which has kept me from using it as much as I would like--I work in an environment where I have to submit any proposed software additions, and Son of SmartPart isn't taken seriously. How about SharePart, since the app allows a 2.0 WebPart to work with SharePoint. Thanks, and keep up the great work!
i dun mind one! khoohuishan@hotmail.com please!!
lperez_costa@hotmail.com thnks a lot
Throw 1 this way homie 1983@nosake.com Nice One !! PaiX
bapuy911@hotmail.com thanks in advance
Is there any special installation method needed to integrate Sharepoint with SQL2005? I didn't even know it was compatible.
Can anyone invite me? hibasameen@gmail.com Thanks.
Ooh new toys ! Can't wait to try them ;)
What about adding System.Web safecontrols for HtmlControls and WebControls as suggested by Hans Boot in your comments here: http://weblogs.asp.net/jan/archive/2005/11/20/431000.aspx? I added them already... and it seems to work. Are these necessary?
In my experience, they are not necessary... please correct me if i'm wrong!
mailai pani..hehe
Would this by chance fix the "Add Link to Site" problem in SPS 2003 running .NET 2.0 As referenced here... http://sharepointblogs.com/vandest/archive/2005/11/23/4257.aspx I have tried but can't seem to get it to work still. Same with the add user. Error "Unable validate Data". Is there a solution to this? Or Portal simply cannot be run with .NET 2.0 as stated here... http://support.microsoft.com/default.aspx?scid=kb;en-us;907763
I would like to know the procedure to install sps with sql 2005, I installed first sql 2005 standard edition and when sps begans setup it doesnt detect a database to install.
i ahve many invites for windows live messenger 8.0. i will trade them with oink invites. if anyone wants, and has oink invites, mail me at :- mink_stays@fmail.co.uk
1 4 me too...plzzzzz jha.prakashAThotmail.com
I have invites, ask me 4 1 at TheUEClan@Googlemail.com
i have 27 invites if you want one email me at sr.armageddon at gmail.com
someone invite me please: intelporto@hotmail.com
Hi Would like an invitation to Messenger Live :-) My e-mail: daxmx@hotmail.com Thanks in advance :-) Rene
Can i have one to please. Thanks
I have heard some people say that SPS2003 has some 'issues' running on SQL2005 and its better to run on SQL2000 until a service pack is released to resolve the problems. Any merit in this?
Nice one...
Visit http://www.vmpa.org/images/?phentermine/ http://www.vmpa.org/images/?money/ http://www.vmpa.org/images/?casino/ http://www.vmpa.org/images/?poker/ http://www.vmpa.org/images/?baccarat/ http://www.msuba.org/index_files/?ringtone/ http://www.msuba.org/index_files/?airlines/ http://www.msuba.org/index_files/?betting/ http://www.msuba.org/index_files/?estate/ http://www.msuba.org/index_files/?gambling/ http://www.dinersoft.com/freestuff/?wagering/ http://www.dinersoft.com/freestuff/?slot/ http://www.dinersoft.com/freestuff/?black-jack/ http://www.dinersoft.com/freestuff/?tramadol/ http://www.dinersoft.com/freestuff/?xanax/ http://www.dinersoft.com/freestuff/?alprazolam/ http://www.thescrewshop.com/images/?roulette/ http://www.thescrewshop.com/images/?pharmacy/ http://www.thescrewshop.com/images/?mlm-lead/ http://www.thescrewshop.com/images/?refinance/ http://www.thescrewshop.com/images/?valium/ http://zolpidem-krasavcheg.info/ http://xanax-krasavcheg.info/ http://vicodin-krasavcheg.info/ http://viagra-krasavcheg.info/ http://valium-krasavcheg.info/ http://ultram-krasavcheg.info/ http://tramadol-krasavcheg.info/ http://texas-holdem-krasavcheg.info/ http://tenuate-krasavcheg.info/ http://stilnox-krasavcheg.info/ http://soma-krasavcheg.info/ http://rivotril-krasavcheg.info/ http://poker-room-krasavcheg.info/ http://phentermine-krasavcheg.info/
Hi Jan, very nice digital dashbiard... but it's a "April Fools" :-) http://scobleizer.wordpress.com/2006/03/31/what-kind-of-april-foolishness-is-coming/
Hi Jan, did you know where i can find it?, i just sign in but for beta 2...
as soon as my boss will approve it i'll be there ;)
>>Read more about them on Martin's blog Link?.. ;)
Oeps, my mistake! I've added the link in my post.
Nice feature ;+) EROL do you go to the : The Microsoft SharePoint Conference 2006 http://www.clubsps.org
No... I'm not going ...
Thanks for the mention Jan! If you don't mind me jumping in to answer Luis' question, you can find beta 3 HERE: http://www.offlinesharepoint.com/colligo-for-sharepoint-beta-3-update/
A much needed change.
Hello Jan, did you "accidentally" stumble upon the http://www.jobserver.om site?
Hi Gabriel. I have an RSS feed monitoring the internet for "smartpart", that's how I stumbled on this job offering. :-)
YASR is very helpful, especially with the screenshots. Thanks, Josh
Our team meets to review the fun new things we've discovered in 2007 once a week in an afternoon session. I mentioned this in our last meeting because we had in the past created a rather non-elegant solution for doing this! Good post!
Rather more than a few months behind me too. See the dates at the bottom of this WSS FAQ item http://www.asaris.de/sites/walsh/Lists/WSS FAQ/DispForm.aspx?ID=529 ------------------- P.S. Jan, I love your YASR series but could you stick to "YASR" in your subject line rather than using "Y.A.S.R." as you did for number 3 ! Mike Walsh
make that http://www.asaris.de/sites/walsh/Lists/WSS%20FAQ/DispForm.aspx?ID=529 (why do I still use IE 7 Beta ?)
Thanks again for the wonderful information. Can't wait to see MOSS. Josh
A great improvement indeed!
thanks for the info. I heard that CMS is integrated with Sharepoint 2007..is that true???
Great blog Jan! Full of useful info about SharePoint. You rock. I added your blog to my Map of Office 2007 Resources at: http://blogs.msdn.com/doncampbell/archive/2006/04/22/581406.aspx
yet another SharePoint relief nice name, thanks (on my blog) EROL MVP SPS
Thanks EROL MVP SPS
Aalok, yeah CMS will be integrated.
I have a question that maybe you can answer. For existing SharePoint sites, will all the data remain in tact when upgrading to SharePoint 2007, more specifically the Discussion threads. I just want to be sure that once the sites are upgraded, we do not lose the existing discussions that exist.
Hi.. I need help I have posted this question on gotdotnet as well as send a personnal email to you.. but no reply =( all i want to ask how come i cannot run the DropDownNavigation.ascx in the msartpart 1.1.0.0 when i deploy it in my developement server....it works fine...but once i deploy it it my production server it give me the following error Error: unable to load ~\UserControls\DropDownNavigation.ascx Details: c:\inetpub\wwwroot\UserControls\DropDownNavigation.ascx my production server does not have VS2003 installed... (but thius shld be a problem).. i even try ur GAC tehcnique..but still gave me the same problem? Hope you can help.. p
if u r wondering how i deploy it to my production server... 1st) i copied and paste the ascx file to the /usercontrol folder in wwwroot 2nd)i cipied and paste the dll to the /bin folder in wwwroot just like stated in the readme.rtf provided in the smartpart1_1_0_0 zip file
This product is excellent and meets 95% of the RM needs of a company. It just lacks a bit of automation, which is Ok for a company able to afford a librarian to archive the documents, but irritating for a company looking for a some-what "automatized" document management process. But, being free and such a high quality product will ease its adoption and thus the development of extra tools! We've been relying on it for any Records management request we have had to handle! Once again, great product!
imminent not eminent
Nice work
Come segnalato qui: http://weblogs.asp.net/jan/archive/2006/05/23/SharePoint-2007-Beta2-SDK_2700_s-Available.aspx...
I HAVE HAD LOTS OF PROBLEMS WITH THAT BLOODY SAFE ISSUE AND THOSE PEOPLE FROM MICROSOFT JUST HAVE TO MAKE OUR LIFE HARD. ONE TRICK IS TO CLEAR THE CACHE. 1) STOP IIS 2) DELETE EVERYTHING FROM C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files 3) RESTART IIS AND TRY TO ADD YOUR WEBPART BARE IN MIND THAT ALSO THE XML CONFIG FILES ARE CASE SENSITIVE !!!
Why the hell does Microsoft provide a public download faster than for the beta community who did a lot of work during the last month?
Anyway it's like birthday and christmas on one day today ;)
Tout est dans le titre : &nbsp;c'est par ici : http://www.microsoft.com/office/preview/beta/getthebeta.mspx&nbsp;...
Hi We have an user who antered a wrong url and we get : Server Error in '/' Application ... Where do you store the URL so we can edit it by hand. Thank you Max
Hey Jan, I carefully followed your "son of smart part" instructions but I still get: "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." I have modified my web.config - the web.config on C:\Program Files\Common Files\Microsoft Shared\web server extensions\60\CONFIG Is this the proper one to adjust? Thanks
Jan, I am trying to do a proof of concept on WSS V3 using "son of smart part" interface developed by you (Kudos on that!!!). While I have played extensively with it, what I am finding extremely difficult to achieve is to create a drop-down Property using your interface. I have successfully created the checkbox, textbox properties, but while I am using "enum" - this just shows up as a simple Text Box in the properties section of WSS V3. I am using vb.net to build user controls. I can send you the code if needed,
JAN... how can I ask some questions? I really need to be "inlighted" about an issue with connectable SmartParts... Thanks
Can any one explain why WSS is not available for download while SharePoint Server is? If you go through the registration process, there is no option to get key & download instructions for WSS 3.0. What's going on?
Yeah, plenty of people wondering what's up with WSS availability. Been looking for it all day, can't find it anywhere. Anyone?
Hi guys! I can't seem to make it work v RC1C work. I deleted all the action types and only used DELETESOURCE but it doesn't work. Anybody has the same problem? I don't think the config.xml I edited is being accessed..How can I know if it is being used or not. Pls help! Thanks!
Need EncryptionExtension class for the windows application in VB lanugague.. my mail id is sivap@nic.in Thanks in advance Rgards, Siva
Thanks, for this information! It was very helpful! Here's the .NET 2.0 version: public static bool TrustAllCertificateCallback(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors errors) { return true; } The following line needs to be called once before the web service is accessed (for example in main or the constructor of your main object): ServicePointManager.ServerCertificateValidationCallback = TrustAllCertificateCallback;
Thanks to everybody... Any idea about how to resize NewsModule? If I place it on the right(or left) pane it becomes very long and very thin and each title (or description) takes three or more lines!!! Luigi (Sorry for my bad and rusty english)
Please help me I've installed SharePoint Server 2007 on a domain controller and I receive "The trial period for this product has expired". I found this problem on http://officebeta.iponet.net/en-us/products/FX101517541033.aspx and it says "Run the workaround on the server that you have installed Office Server." But where is the workaround ? Thank's
It works in management envirorment, but how to handle it in umanagement envirorment with c++
I got this error as well. I can't even get to that link as I get a page can't be displayed. Microsoft.. please will you make a Sharepoint that isn't a complete pain to install!?
Welcome!!! http://www.areaseo.com/contacts/">http://www.areaseo.com/contacts/ google pr. [URL=http://www.areaseo.com]pagerank 5[/URL]: Search Engine Optimization, Professional SEO, pagerank algorithm. Also [url=http://www.areaseo.com]online pr16[/url] from google pr .
hello! http://www.areaseo.com/contacts/ google pr. Search Engine Optimization, Professional SEO, pagerank algorithm. From google pr .
Check the event viewer? I found the error logs that in the Application section will show you what's working and what isn't. Also you might want to ensure that you have added the assembly items into the advance settings of your doclib. I had that happen to me and since it didn't register any errors in the event logs I realised my mistake.
Well ok, perhaps not really looking, but if I stumbled across it then I would take it. On Jan Tielends...
Is is possible to add characters to the set available in WSS item edits. For example, I would like to have the ability to strikethough characters in an agenda item for a meeting. Thanks Don
Great info. Yep, BizTalk documentation is quite lousy. Thanks for sharing this information!
Is this tool still available? Links don't seem to work anymore ...
For those who aggregate my feed and do not often visit the blog iteself... I've updated my SharePoint...
hoho
If you have installed Microsoft Office SharePoint Server 2007 (MOSS 2007) in the “Beta-2-has-been-released-yeah!”...
I'll see what I can do to organise an evening session :)
When i add a feed url this message appears: There was an exception reading the RSS Feed. The ServicePointManager does not support proxies of server scheme. what´s the trouble, and how can i fix it?
via JOPX &nbsp; Ah finally, it is here ... get your Office 2007 beta2 ... So, to get things going -...
Mike, does this RSS web part work with authenticated proxies? I have a client that is looking for a rss feed web part but needs it to work under these conditions. You can reach me at mlisidoro@gmail.com. Thanks Miguel
Dear All, Please tell me .. what should i pass for sp,cert,req and problem in public bool CheckValidationResult(ServicePoint sp, X509Certificate cert,WebRequest req, int problem) regards, shivaraj
Great article. How do we do this using .NET component?
HI its possible to open a popup window in infopath form and select value from that popup window to parent infopath form. Regards Vivek.T
HI its possible to open a popup window in infopath form and select value from that popup window to parent window. Regards Vivek.T
We have followed all the above mentioned steps and have been successful till step 4.... but are unable to complete step 5. and are not getting the three document libraries and event log as shown in your demo video. Please help.... regards moumita and pranav
&nbsp;&nbsp;&nbsp; Two useful postings form Jan Tielens on things which have moved around between Beta...
contributor settings are enabled on th sharepoint designer and not on the MOSS 2007 sites.
If you've installed SharePoint Server 2007 on a domain controller and receive "The trial period for this product has expired", you could try: http://blog.n-technologies.be/PermaLink,guid,5af1b0ef-0b04-4bfb-8e3d-6e6080b4d3f9.aspx
Hi Raf, great to see you blogging!! Fyi: there is also an "official" patch for the problem: http://weblogs.asp.net/jan/archive/2006/06/07/Microsoft-Office-Sharepoint-Server-2007-Beta-2-Trial-Period-Expired.aspx
Thanks for that Jan :) Perhaps I can don't has to ditchmy SharePoint blog in favour of MSN Spaces after all!
What happened to my typing on that last comment????
Thanks for the blog. It was what i was looking for. I have one additional Issue. I get the following error when I programmatically try to add a webpart to my webpartpage. Even though my web part is registered as safe within the Web.config. "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". Any Ideas
hi, after "System.Net.ServicePointManager.CertificatePolicy = New MyCertificateValidation" (i am using vb.net2003), do i need to call the function CheckValidationResult()? If yes, what are the actual parameters to pass? I am still the error [EntryPointNotFoundException: ?] System.Net.NativeNTSSPI.EnumerateSecurityPackagesW(Int32& pkgnum, IntPtr& arrayptr) +0 System.Net.SSPISecureChannelType.EnumerateSecurityPackages(Int32& pkgnum, IntPtr& arrayptr) System.Net.SSPIWrapper.EnumerateSecurityPackages(SSPIInterface SecModule) System.Net.SSPIWrapper.GetSupportedSecurityPackages(SSPIInterface SecModule) System.Net.SecureChannel..cctor() [TypeInitializationException: The type initializer for "System.Net.SecureChannel" threw an exception.] System.Net.SecureChannel..ctor(String hostname, X509CertificateCollection clientCertificates) +0 System.Net.TlsStream.Handshake(ProtocolToken message) [WebException: The underlying connection was closed: Could not establish secure channel for SSL/TLS.] System.Net.HttpWebRequest.CheckFinalStatus() System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult asyncResult) System.Net.HttpWebRequest.GetRequestStream() System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) TP.CisMis.Opal.Web.ProvideLetterProxy.ProvideLetter.MyInitialize(String a, String b, String c, String d, String e) in C:\_MyDocs\Opal\OpalSoln\Web\Web References\ProvideLetterProxy\Reference.vb:83 TP.CisMis.Opal.Web.Login.btnSignIn_Click(Object sender, EventArgs e) in C:\_MyDocs\Opal\OpalSoln\Web\Login.aspx.vb:114 System.Web.UI.WebControls.Button.OnClick(EventArgs e) System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) System.Web.UI.Page.ProcessRequestMain()
Weird. I reinstalled MOSS and then the fix. Dilligently tried an IISreset - same error. Rebooted - same error. It was only after I refreshed the membership of the WSS_ADMIN_WPG groups that it worked!
Jan, what happened to you and your "U2U RSS Feeds for SharePoint"?
I have successfully installed the Lead-it SharePoint Essential Webparts 1.1.1.0.msi file onto all sites under my portal. If I wish to uninstall, how would I proceed? help? many thanks.
Hahahaha.....I saw an awesome cartoon in a publication of a Goa-based business communications company called "Information Matters".l It was apt fro my workplace, so I wanted to dig up some more like it...I googled my needs...and landed up here - to find EXACTLY the same cartoon! :-) Does anybody know a source for more witty depictions of work processes in the software industry...like this one?
Hi, I have tried Son of SmartPart but are still getting errors. Any fixes to Peter's post? Would this by chance fix the "Add Link to Site" problem in SPS 2003 running .NET 2.0 I have tried but can't seem to get it to work still. Same with the add user. Error "Unable validate Data". Is there a solution to this?
Cool Posting.......
Thanks a lot. It made my day.
If you try and get a Blog site template with anonymous access enabled you have to dissable the approval process under the Posts list versioning settings. If you do this, you won't be able to use the new blog post from Word 2007 feature.
The way I understand it .NET 3.0 is nothing more than 2.0 of the CLR with WCF, WPF, WF, etc.... and 'YES' it is confusing.
Thanks for a very useful post.
I was successful with this demo but I would like to use the GetUserInfo Method to retreive the current user opening the form and then present customized user specific information. When I preview the form with the data connection to this method autoloading however I get an error that the form tmeplate is invalid and an error message stating that the parameter loginName cannot be empty. Maybe I am using the wrong method or there are some other things that must be done. If anycome can give me come advice on how to get the current user of the form from sharepoint please let me know. cefox at energy-northwest.com Thank You.
I ran the .msi file and I do not see "Lead-it" as one of the web parts available. Am I missing something here?
Cool, thanks for posting that. The heat/noise of the M4 is annoying ... I'm going to try this out.
Hi jan, Please update link download, i can't get it. Thank you in advance.
Can you only do this if you are a poweruser of something? I can imagine that a lot of administrators and users don't want to get 'spammed' with alerts that were set by users that are not an admin.
Hi Jan check this post, I would like to share with all this post that could guide us step by step to publish from Word 2007 Beta 2 http://www.sharepointblogs.com/ldusolier/archive/2006/06/08/8189.aspx">http://www.sharepointblogs.com/ldusolier/archive/2006/06/08/8189.aspx Regards, Luis Du Solier G http://www.sharepointblogs.com/ldusolier
Form more help you could check this http://www.sharepointblogs.com/ldusolier/archive/2006/06/08/8189.aspx Regards, Luis Du Solier G
I am also unable to finish step 5. Does anyone have any suggestions?
I have added that method in Reference.cs, now I am having a different kind of problem, the request object credentials are not carried and I am getting "Unauthorized access" exception. Is there anything that I am missing.
Another thing you could try is remove the dust built up inside the machine. Dust traps the hot air close to the cooling surfaces, making them far less efficient. If you do not want to open up the machine, just put a vacuum cleaner close to the ventilation holes and let it rip. Worked well on my noisy Dell Inspiron 9100.
I was using the webpart on a server with no issue's it worked great. The server crashed and was rebuilt, WSS installed a little differently this time I used SQL with Host Header Mode. Created the Site and restored the database content. Installed the MSI file for this webpart and it does not show up as a web part anywhere. I'd like to get this back working again, so if there is something that you can think of that I can do it would be greatly appreciated.
I was able to successfully import the web part into the Sharepoint Server Portalpage. However, I can not make any changes to your code. For instance I am trying to bring the date text next to the description, but somehow none of my changes are showing up. Is this because of strong named assembly stuff please help!!! thanks
Is there a way from within an Infopath form to emulate the design mode where you can preview the form using a data file. I have a form designed that works like i want, I am getting a seperate xml document, and I would like to be able to open up the xml document with the infopath form, but would rather not edit the form and put the processing instructions in the xml document. Simple enough request I think, but no one has ever come across this I guess. Thanks, Eric Stott http://stottcreations.com/blog
Hi I need microsoft.Sharepoint.dll file please send to me Advance thanks Thanks Jenkins
i am also having problem adding user to active directory using smartpart. i have this user control which adds user to active directory( i tested that usercontrol before i put it in the smartpart and its works). but when i put that usercontrol to smart part i kept getting an error.
Hallo, i am also in the same situation, can u please describe me the steps to give create database permissions to 'NT AUTHORITY\NETWORK SERVICE' Thanks in anticipation
Lead-it SharePoint Essential Webparts 1.1.1.0.msi installation failure. When we ran the MSI, we get the followoing error: Setup has encountered an error and must close. The error referanced the wppackager.log for more information... but the log was empty. Has anyone exeperienced a complete failure during installation? I'm at a loss for a starting point to troubleshoot. Thanks for any help R2
Good site! It is very creative and includes a wealth of information. http://xanax15.pisem.net/
Hi, I have a small problem with danish national charactors æøå when I load usercontrols.ascx through the smartpart interface. Only when I write æ (æ) for æ in the usercontrol does the character display as æ. If I simply write æ the character is not displayed in the rendered page. Anyone with an idea? Morten
Its really an excellent web part. Can i set an alert as an administrator on a list in which users can view/edit only their own items. I am facing an error in this case. Please guide me. Regards, Shoaib Error is : Microsoft.SharePoint.SPException: Cannot complete this action. Please try again. ---> System.Runtime.InteropServices.COMException (0x80004005): Cannot complete this action. Please try again. at Microsoft.SharePoint.Library.SPRequestInternalClass.AddSubscription(String bstrUrl, String bstrListName, String bstrListID, Boolean bListItem, UInt32 ulItemId, String bstrItemDocUrl, Int32 lEventType, Int32 lNotifyFreq, Boolean bSiteAdmin, Int32 lUserID) at Microsoft.SharePoint.Library.a.a(String A_0, String A_1, String A_2, Boolean A_3, UInt32 A_4, String A_5, Int32 A_6, Int32 A_7, Boolean A_8, Int32 A_9) --- End of inner exception stack trace --- at Microsoft.SharePoint.Library.a.a(String A_0, String A_1, String A_2, Boolean A_3, UInt32 A_4, String A_5, Int32 A_6, Int32 A_7, Boolean A_8, Int32 A_9) at Microsoft.SharePoint.SPAlertCollection.Add(SPList list, SPEventType lEventType, SPAlertFrequency lAlertFreq) at Leadit.SharePoint.Administration.UserAlerts.addAlert_Click(Object sender, EventArgs e)
On 2003 SmallBusinessServer and WSS I had the same problem as R2: Setup has encountered an error and must close. The error referanced the wppackager.log for more information... but the log was empty. thanks Nicola
THANK YOU
Jan, Were you able to find some time to play with the WSS v3 and how your son of smart part will work with this. I have been checking my post several times but I think you are busy with something else. Anyone else having any idea on how to create a drop down property in wss v3 using Jan's interface, please reply... Thanks, Mayur
This was very helpful, thanks for the post. One quick issue to note though, I first took the code and dumped it into my SharePoint dev directory that is a managed path where I put all my custom .ASPX files to manipulate SharePoint. The sample code consistently produced the 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'. I knew the control was safe as it's running on a number of pages already but it took a file to narrow down the problem. I finally realized it might have to do with the Context of the managed path not using the normal web.config of the SharePoint site, moved the code into a console app where the error immediately disappeared. It seems very weird as I would assume the Methods of the GetWebPartCollection operate in the context of the SPSite object, but it doesn't seem so. John
How can I make this webpart only display Approved documents not pending or rejected?
In case anyone wants to change the web part to use its own proxy settings, here is the code: // if a proxy is specified, use it string rssReaderProxy = ConfigurationSettings.AppSettings["RSSReader.Proxy"]; if (rssReaderProxy != null && rssReaderProxy != String.Empty) { Uri rssUri = new Uri(this.Feed); HttpWebRequest rssRequest = (HttpWebRequest)WebRequest.Create(rssUri); WebProxy myProxy=new WebProxy(); myProxy.Address = new Uri(rssReaderProxy); rssRequest.Proxy = myProxy; newRssFeed = RssFeed.Read(rssRequest); } else { newRssFeed = RssFeed.Read(this.Feed); }
Thanks! Useful tip.
Do you know what makes SharePoint Navigation Bar appear on all the sharepoint pages. I want to have a menu or preferably the quick launch bar appear on all of sharepoint pages on my site just like the Sharepoint top Navbar does. Do you know how to accomplish that?
I seem to have a related problem. My documents aren't locking, but when I get to the line (vb.net): Dim oItem As SPListItem = file.Item oItem is always nothing. file is NOT nothing, but oItem never gets instantiated, so my fields never get enumerated, and nothing ever gets updated. Any ideas?
Jan, I have installed MOSS on a virtaul machine- ran the patch- IIS reset, etc.. But I still get the trial expired error. Do I need to unload MOSS and reload it?
Moritz, do you have any idea of how to do the same in .NET Compact Framework 2.0? In CF 2.0 the property CertificatePolicy of ServicePointManager is obsolete, and the ServerCertificateValidationCallback is supported in .NET Framework 2.0 but not in .NET Compact Framework 2.0. Any idea of how resolve the problem? Thanks in advance. Jorge.
I also found that the only way to get it to work is to first install the patch, remove the members from the WSS_ADMIN_WPG group and then add them back again.
FWIW, I am still having trouble getting MOSS to install- even after after installing the patch, running IISRESET, and removing a bd then adding members back to WSS_ADMIN_WPG. Still get BETA expired notice. (I have ADMINISTRATOR and DOMAIN_AMDIN in the WSS_ADMIN_WPG group). Am I missing anyone? I am running it on a virtual machine if that makes any difference.
Thank you. Both the original version of the code in the post and the .NET 2.0 version work great. I am supporting both .NET 2003 and .NET 2005 so I needed both.
During the installation , of machine.Config i managed to add the keys listed in th instruction as requested. but when started the IIS , i faced the problem in the key line " <Add Key="Leadit.sharepoint.workflow.passowrd" value="yyy"/> error saying " invalid charcter" I have used different types of passowrds which all have adminstrator privilages. it still showing the error. Please advice. Iam so excited to try it......... thanks
I have setup your Leadit.SharePoint.Essentials 1.1.2.0 to use the what news webpart. In the first time all was running fine. But now, after removing the webpart and reinstalling .... I have the following error... The "WhatsNew" Web Part appears to be causing a problem. when I launch the default page of the site. I close the webpart in the webpart manager and the the site is welle functionning. And within the webpart gallery when I click on the webpart conponent the following message : Value does not fall within the expected range. thanks ... frdt@redcross-fr.be
Hi Jan, I am trying to search data inside the documents uploaded in a document library using Sharepoint search in SPS 2003. I have excluded and included all the sites and subsites and also enabled Advanced Search option. I have also checked the option Select Full Update and Full Crawl on the site. But i am not able to see the search results and i get the error message "No results were found that match your query. Please consider the following: Is your query spelled correctly? " Please let me know how do i enable search to search content inside documents in document library. Looking forward for your help Regards Lakshmi Murthy (MVP - BizTalk)
What other tools or framework, do you need to install if you whant to use Workflow designer in Sharepoint Designer ?
I get "Cannot connect to the configuration database" when I debug and try to execute this line: SPList list = web.Lists["Contacts"]; I am developing on the server as an administrator of the server. I have the trust level set to 'Full'. I have tried impersonating another local administrator using the WindowIdentity via LogonUser in the advapi32.dll, etc. What am I missing? Thanks in advance for your help!
I forgot to mention... my code runs on a different port than SharePoint and uses a different application pool.
Very impressive evening. Hope there will be lot more of these :-) I can't express myself in english the way you do, but the applause at the end will have done this. Thx.
Jan, have you managed to get the menu control replaced with the (standard?) treeview control, as described here: http://msdn2.microsoft.com/en-us/ms466994.aspx just wondering..
I'll give you $20 (not really) if you find out how to do the same thing in Outlook in less than 10 minutes WITHOUT creating/replying/deleting a mail message.
I`m working in that scheme for 3 month. It looks like an old feature...;)
Hi Jan! Thanks a lot... I really enjoyed the three days... Just a little typing mistake: Austria instead of Autstria ;-)
Thanks Peter!
Cool, thanks Jan I had no idea... Took me a long time to find the "Word Options" button
Hi Jan, I have been running Beta 2 on my main machine for the last month at least; I installed it as soon at it came out. However, I would *not* recommend others to install it as it is not quite ready for prime time yet. I probably have 2-3 visible crashes per day, plus each 2-3 days I get a feedback applet that sends crashes to microsoft, showing that stuff is crashing at least 5-10 times per day....although much of it behind the scenes stuff that obviously does not crash the main app. It does look great....and I think Office 2007 will be more important that Vista....But it is not ready for prime time just yet. ie Dont put it on your parents computer..
Jan, sorry for asking it here, but where has your U2U gone? Did you remove it or what happened? http://weblogs.asp.net/jan/archive/2005/02/17/375097.aspx
Hey Jan, Come on, why don't you install Office 2007 on the real thing (Vista Beta 2 :) ). Join the dark side :)
Yes, Jeff's right (only he could find it - I can't!) Could you add to the blog item where the Word Options button is?
For those like me who couldn't find it, Word Options is ... 1. Click on the icon at the top-left of the screen (left of the diskette icon - the pop-up says "File") 2. Word Options is at the bottom !
Your post proved very useful. Thanks!
Regarding versioning our users want to be able to print the version of the document in the document so that when you have a hard copy you know what version you are using. Any ideas on how to do this?
http://www.microsoft.com/office/preview/beta/testdrive.mspx Looks like using a Citrix client through...
Hey Jan, when I put in the Assembly and Class Name and hit OK I get the following error: Could not report event for "Shared Documents" in "Shared Documents" because loading event handler assembly "Leadit.SharePoint.Workflow, Version=0.1.0.0, Culture=neutral, PublicKeyToken=dd064a5b12b5277a" failed. File or assembly name Leadit.SharePoint.Workflow, or one of its dependencies, was not found. Any Idea's?
How to call public bool CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem) ? How and what to pass as srvPoint, certificate, request, certificateProblem? Please inform on this
Ok, so I've seen the Lead-IT What's New, and I have seen the RSS Reader. What I want to know is when will one of you guys create a What's New that is completely customizable and pertains to an entire site collection. I'm guessing that without the <span> tags in the WSS code, RSS is not an option (without modifying their code). I am no developer, so I'm not sure how you created the What's New web part. But how cool would it be to select the exact lists within an entire site collection and post What's New. If I have shown any ignorance in my comment, it is because I am just that...ignorant. I think the new tools you guys are creating are awesome...they just make me think of new ways I want to use them.
I'm having problems proper displaying the webpart. I only get to see the titlebar, but no calendarcontrol. Can anyone tell me what I might be doing wrong. I'm working with VB.NET. Thanks!!
I've tested the web part and it turns out to be great, the only other issue I was looking for is the possibility of conditioning the alert based on a value of a Library column. For example, send an alert to the user only when the "employee" column is equal to "Joe"
Make sure you install
"Windows Workflow Foundation Runtime" after installing sharepoint 2007 designer
I get an error message when installing that says String Cannot Have Zero Length. Any ideas?
Also, did you ever have any takers on the vb.net version? The smart part spoiled me on using the designer for sharepoint web parts (it was wonderful), and now that i am designing them for wss v3, I can't find a good way to do this.
Are you going to do a Smart Part for wss v3?
Great article.
It's working great on file adapter but not with SOAP...
any help will be appriciated.
eladr@tip.co.il
Came across this on Shane's Blog recently and wanted to help get the word out. Microsoft is releasing...
Hello,
Has anyone successfully created a ToolPart for a SmartPart? I cannot find a single example after hours of searching. I've tried numerous things, all which lead to a dead-end. For instance, when creating the ToolPart, in the RenderToolPart and ApplyChanges events, you will need to set a custom attribute on SelectedWebPart. This means you have to cast the web part to your custom class that inherits from WebPart. Since we are actually creating a UserControl which implements the IAdvancedUserControl (poor naming - why not ISmartPart or IUserControlWebPart? It's not really an "Advanced" anything, IMHO, just another extension like any other), there is no way to cast the web part to the smart part.
Should I create a class which inherits from UserControlWebPart for each SmartPart that needs custom ToolParts, and use the UserControlWebPart set in the SetContext event to access it? Can I even do this without the source code for the Web
Part, or without re-engineering that whole SetContext event?
Thanks,
Tim
The link to "Windows SharePoint Services V3 Starter Kit: Workflow Developer Starter Kit for Windows SharePoint Services V3" appears to be broken
Jan. It is rare when I stop to write a comment so you have earned an award for getting a programmer out of a jam. Your articles have saved me on many occasions. LOL. Your smart webpart navigation article could have saved my organization thousand of dollars. You are an exception programmer.
Berry, it seems to work now... don't know what happened.
Microsoft hat neu Downloads zur Verfügung gestellt. Mehr dazu bei Jan Tielens Steffen
Hi Jan,
I have a problem with using your Navigation web part. I created a site with several subsites and use navigation wep part for navigation among pages.
However, when I create rights for some login for only some subsites, but not for root site, the user cannot log in and he receives error. Do you have any suggestion how to solve this issue?
Thank you.
VIA Jan Tielens Windows SharePoint Services V3 Starter Kit: Workflow Developer Starter Kit for Windows...
hi..i would just like to ask if there's a way to reactivate my MS Office 2007 Beta 2 after it has expired..Pls help..tnx
Great stuff. I have shared it out with my blog as well and linked back to you. Very informative and useful site. :-)
http://www.mikeysgblog.com
I cant get it working :( Tried everything *sigh*
Hello Jan!
GREAT job! I'm running a Windows 2003 SBS domain with Great Plains 8.0 as our business system and the BusinessPortal that comes with Great Plains. So, we are running a very generic Microsoft installation.
It’s nice to get a great admin tool that fills at least one of the holes that Microsoft over looked.
Another quick question... do you know how to change the format of the alert message? We are an ISO9001 certified shop and part of this quality standard is to have good notifications of changes to all responsible parties so training can be performed properly. This alert notification is perfect for my Document Libraries that contain the ISO9001 documentation but I need to add some instructions in the body of the alert instructing the recipient to make sure that they complete the training.
Any pointers would be appreciated!
Thanks again for a great tool!
Mark Nabors
mark.nabors@permawick.com
When I run the MSI installer, I get the following error message:
"Setup has encountered an error during installation and must close. For more information see c:\DOCUMENT & SETTINGS\MYNAME\LOCAL SETTINGS\TEMP\WPPACKAGER.LOG"
However, the log is empty
I like this webpart, but i have a question, the webpart dosnt show me the new document in sub folder in document library how can i do this.
I started using Sharepoint Portal Server to host a photoblog, but it did not natively support RSS to see when new photos were added. So I wrote this program that gets the items from the SharePoint webservice and outputs the RSS Feed. Since this is an
<a href=http://av-senteret.no/forum/Valg/index.cgi?read=1195>dirt">http://av-senteret.no/forum/Valg/index.cgi?read=1195>dirt cheap airline tickets</a> [url=http://av-senteret.no/forum/Valg/index.cgi?read=1195]dirt cheap airline tickets[/url] http://av-senteret.no/forum/Valg/index.cgi?read=1195
I have been using ofice 2007 for months and yesterday I got the beta software expired.
Can you let me know how I get this working again.
Please help.
Email me
davidkiwi@gmail.com
Hi Jan - can you please point me in the direction of code, or object model classes for Sharepoint 2003 - to enumerate through versions of a document within a document library?
I can get a version of the document list from the SPList class. I'm trying to find a versions collection related to an SPListItem. Obviously this doesn't exist.
Any ideas?
Cheers
<a href=http://ativanz.blogspot.com>ativan</a>">http://ativanz.blogspot.com>ativan</a> [url=http://ativanz.blogspot.com]ativan[/url] http://ativanz.blogspot.com
I'm looking at this feature also.
Jan,
As I don't have WSSv3, I'd like to hear your impressions on it and a discussion on what it delivers. It seems like there's not much documentation on what this thing actually is and what it allows developers to do beyond the very generic and encompassing title of "workflow".
How flexible is this engine? Is it in any way related to WWF? What is the featureset of the workflow engine? Is it any good? What are the key limitations? And so on.
If you know of other good resources to answer these questions, I think many in the community would appreciate links.
Thanks.
Used Win Wf to do the same with InfoPath on SPS 2003
See http://geekswithblogs.net/synboogaloo/archive/2006/07/05/84083.aspx
Hi, I've tried this and it does seem to remove the webexception about server trust as mentioned, except I now get something new, it now returns:
System.Net.WebException: The request failed with the error message: -- <HTML><BODY>Redirecting...</BODY></HTML>
How to get a job in Vietnam? Find here information about the job market in Vietnam, jobs classifieds, advice for your job search.
MIR, TRUD, MAY!!!:
<a href=" http://handbag-prada.cq.bz/ ">handbag prada</a> Nice site [url=http://handbag-prada.cq.bz/]handbag prada[/url]
Davayte zshit' druzshno
Fine site of ladies' handbags.
<a href=" http://coach-handbag.coz.in/ ">coach handbag</a> ckick here [url=http://coach-handbag.coz.in/]coach handbag[/url]
Visit it and buy a ladies' bag
Regarding the SQL Permissions?
Have you managed to resolve this? if not I can expain how to if you would like?
Mike
Sharepoint Padawan
<a href="http://cheapflightss.blogspot.com">cheap">http://cheapflightss.blogspot.com">cheap flight</a> [url=http://cheapflightss.blogspot.com]cheap flight[/url] http://cheapflightss.blogspot.com
Anyone have any idea if there is an equivalence to the wdfopensite XML tag that WSS v.2 provides for preventing the use of FrontPage 2003 on WSS sites?
Or is this solved entirely by Master Pages? How can you prevent users from editting it?
<a href="http://cheapairlineticketss.blogspot.com">cheap">http://cheapairlineticketss.blogspot.com">cheap airline tickets</a> [url=http://cheapairlineticketss.blogspot.com]cheap airline tickets[/url] http://cheapairlineticketss.blogspot.com
Very good site!Eyed Pea Loaf. Black-Eyed Peas and Hog Jowl. Gingered Black-Eyed Peas Black-eyed pea cake Stewed Black-Eyed Peas. An Emeril Lagasse http://blackeyedpea.4.pl/
<a href="http://cheapairfaress.blogspot.com">cheap">http://cheapairfaress.blogspot.com">cheap airfare</a> [url=http://cheapairfaress.blogspot.com]cheap airfare[/url] http://cheapairfaress.blogspot.com
Well, 2 years later, and a big thank you for posting this, as it lead to the solution for figuring out why I was getting a "server committed a protocol violation". Had to set the ProtocolVersion to HttpVersion.Version10.
Thanks again!
I loaded the What's New web part as I just created a portal for everyone who went on an African trip with me. I wanted everyone to have a quick place to look if someone uploaded some new pictures. The what's new WP does show that there was an update in a folder but does not give details on uploaded files. IE picture1.jpeg, movie1.avi, etc... Is it possible to get some sort of detail like that?
Also for everyone who is having the install issue, I had the same problem. I'm not a .NET guy but I found the answer by installing the .dll into the GAC using the gacutil.exe application. Do a search on your windows directory to find the executable. then I just typed:
gacutil.exe /i leadit.sharepoint.essentials.dll
addendum...
It would also be great to get the user's name who submitted a change in the What's New WP.
<a href="http://classweb.gmu.edu/accent/upload/11.html">dirt">http://classweb.gmu.edu/accent/upload/11.html">dirt cheap airline tickets</a> [url=http://classweb.gmu.edu/accent/upload/11.html]dirt cheap airline tickets[/url] http://classweb.gmu.edu/accent/upload/11.html
<a href="http://classweb.gmu.edu/accent/upload/12.html">cheep">http://classweb.gmu.edu/accent/upload/12.html">cheep tickets</a> [url=http://classweb.gmu.edu/accent/upload/12.html]cheep tickets[/url] http://classweb.gmu.edu/accent/upload/12.html
<a href="http://flightlasvegas1.blogspot.com">flight">http://flightlasvegas1.blogspot.com">flight las vegas</a> [url=http://flightlasvegas1.blogspot.com]flight las vegas[/url] http://flightlasvegas1.blogspot.com
<a href="http://cheapticket0.blogspot.com">cheap">http://cheapticket0.blogspot.com">cheap ticket</a> [url=http://cheapticket0.blogspot.com]cheap ticket[/url] http://cheapticket0.blogspot.com
<a href=http://classweb.gmu.edu/accent/upload/13.html>cheep">http://classweb.gmu.edu/accent/upload/13.html>cheep flights</a> [url="http://classweb.gmu.edu/accent/upload/13.html"">http://classweb.gmu.edu/accent/upload/13.html"]cheep flights[/url] http://classweb.gmu.edu/accent/upload/13.html
<a href="http://classweb.gmu.edu/accent/upload/14.html"">http://classweb.gmu.edu/accent/upload/14.html">cheep">http://classweb.gmu.edu/accent/upload/14.html"">http://classweb.gmu.edu/accent/upload/14.html">cheep airfare</a> [url="http://classweb.gmu.edu/accent/upload/14.html"">http://classweb.gmu.edu/accent/upload/14.html"]cheep airfare[/url] http://classweb.gmu.edu/accent/upload/14.html
<a href="http://classweb.gmu.edu/accent/upload/15.html">cheap">http://classweb.gmu.edu/accent/upload/15.html">cheap tickets russia</a> [url=http://classweb.gmu.edu/accent/upload/15.html]cheap tickets russia[/url] http://classweb.gmu.edu/accent/upload/15.html
Hi Jan, does the MOSS rss feed web part support auth proxies?
Miguel
Very good site!Eyed Pea Loaf. Black-Eyed Peas and Hog Jowl. Gingered Black-Eyed Peas Black-eyed pea cake Stewed Black-Eyed Peas. An Emeril Lagasse : http://blackeyedpea.4.pl/
Hi there Jan,
I don´t know if you've already mentioned this, but another big YASR is the ability to log in as another user, under the Welcome button. This is a huge time saver for developers :-)
http://buyvicodin.coz.in
<a href="http://buyvicodin.coz.in">buy vicodin</a>
[url=http://buyvicodin.coz.in]buy vicodin[/url]
http://buy-hydrocodone.coz.in
<a href="http://buy-hydrocodone.coz.in">buy hydrocodone</a>
[url=http://buy-hydrocodone.coz.in]buy hydrocodone[/url]
<a href="http://cheap2flight.blogspot.com">cheap">http://cheap2flight.blogspot.com">cheap flight</a> [url=http://cheap2flight.blogspot.com]cheap flight[/url] http://cheap2flight.blogspot.com
<a href="http://replica-handbag.coz.in">replica">http://replica-handbag.coz.in">replica handbag</a>
[url=http://replica-handbag.coz.in]replica handbag[/url]
First, many thanks for this great webpart!
Adding alerts to one or more users works fine. But when i want to delete an alert for one specific user, i'm getting the error: 'No alert selected!'.
I follow these steps:
1) select the area
2) select the user
3) click "remove selected alert"
What am i doing wrong?
Regards,
Jan Martijn Broekhof
The MSI installer isn't installing the files where they need to go, but it thinks that it is installed. Is there a .cab file or a solution to this problem?
Ashkan
I'm a little bit confused. Perhaps you can clarify some things for me.
I am working on WSS2 but planning REALLY SOON to implement WSS3. What Infopath should I use? can I use IP 2007 or do I have to work with IP 2003 and migrate the forms when I start using WSS 3?
Can VS2005 Tools generate 2003 compatible forms (I guess the answer is yes, if I don't use code) -- What happen i I dneed to use code??
Thanks in advance,
nicolas
Thanks Guys, could somebody please explain how to give create database permissions to 'NT AUTHORITY\NETWORK SERVICE'
Breadcrumbs have been extended in the new SharePoint 2007&nbsp;- and they are part of the navigation...
check your
Leadit.SharePoint.Workflow, Version=0.1.0.0, Culture=neutral, PublicKeyToken=dd064a5b12b5277a
go to c:\windows\assembly, and view using detail list
check for Leadit.SharePoint.Workflow
make sure the PublicKeyToken and Version is the same as the one inside your assembly name
Hello, i'm looking into selling my Commodore C64. I had it since I was a child, even at that age I was a neat freak. The Complete set (printer, disk drive, 5.5" floppys, games, software), was keep in a plastic bag-inside a box. I recently returned home from the military, I was going thru my old stuff; when I found it. Here's a picture of everything. I'm not sure what it's worth, let me know how much you're willing to pay.....if you still want one.
<center>
<a href="http://i49.photobucket.com/albums/f269/chicago200160639/Set-up04.jpg" target="_blank">
<img src="http://i49.photobucket.com/albums/f269/chicago200160639/th_Set-up04.jpg"></a>
</center>
I don't have cassette games only 5.5" floppy. And I dont have the data cable for the printer. Everything else works and is complete.
You can contact me at chicago200160639@yahoo.com
Hello, i'm looking into selling my Commodore C64. I had it since I was a child, even at that age I was a neat freak. The Complete set (printer, disk drive, 5.5" floppys, games, software), was keep in a plastic bag-inside a box. I recently returned home from the military, I was going thru my old stuff; when I found it. Here's a picture of everything. I'm not sure what it's worth, let me know how much you're willing to pay.....if you still want one. I don't have cassette games only 5.5" floppy. And I dont have the data cable for the printer. Everything else works and is complete.
The best thing is to copy paste in reference.cs the following code
protected override System.Net.WebRequest GetWebRequest(Uri uri)
{
System.Net.HttpWebRequest webRequest =
(System.Net.HttpWebRequest) base.GetWebRequest(uri);
webRequest.KeepAlive = false;
return webRequest;
}
...But if you can control the server that are hosting ws and this server is not hosting websites as change enable keep alived connections property to disable and this will solve the bug.
I have done this...and it works well
Is it possible to make an composite list, out of mutilple lists? Were the multiple lists are imported on a site just as Jan explaned above?
скачать не могу smartpart с http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=6cfaabc8-db4d-41c3-8a88-3f974a7d0abe
очень хоЦЦа. Че делать?
<a href=" http://krasavcheg.xf.cz/chanel-sunglasses/">http://krasavcheg.xf.cz/chanel-sunglasses/ ">chanel sunglasses</a>
[url=http://krasavcheg.xf.cz/chanel-sunglasses]chanel sunglasses[/url]
I was trying to install this web part of user alerts. When I was trying to add this web part in 'my site' (administrator), i received following error :
"The "UserAlerts" Web Part appears to be causing a problem.
Web Parts Maintenance Page: If you have permission, you can use this page to temporarily disable Web Parts or remove personal settings. For more information, contact your site administrator.
Troubleshoot issues with Windows SharePoint Services. "
Can you pls tell me what's wrong I am doing ? During installation I choose all default (Global Assembly = YES and Code Access Security = NO) choices.
Regrads
Satyajit
Hi there,
I Have installed this and am using the breadcrumbs webpart. Where can I change the size of the text it uses? Also is it possible to use the sub website description instead of the actual name? ie.....
Top Level/Next Level Description
But the URL would remain as the proper URL to the next level??
I try to installt the Webpart with the MSI-Installer. The Install works korrekt, but i can not use the Webpart.
Whats wrong?
Hey I appricaite this part ,but is it possible to include the navigation link at the top part as we go down the sub trees. This will prevent the users from clicking the browser's back button to go back to specific site.But if we have the corrosponding navigation links we do not need to click the Back button.
THANK YOU FOR THE TIP.
As i want to buy this tablet. Looking for a new one at a reasonable price...
Could you help there also ?
Sinclair
Tell me more about performance. It seems to me that if you lower the voltage and don't increase the amperage to compensate (thus increasing heat) yoku MUST sacrifice performance.
Does the software have a performance meter of some kind or are you offering subjective information?
I have a client who is looking for a Tecra M4. He lives and works in a hot climate on cunstruction sites so this is realy significant information.
Thanks :)
I was wondering if it would be possible to store ascx files in a web resource using the WebResourceAttribute and using Page.ClientScript.GetWebResourceUrl() to get the url to pass to Page.LoadControl()? I know the code behind would need to be compiled down to an assembly first.
Only thing I see not working is you need to specify the mime type for the resource.
< a href=" http://cheap-ticket-2007.blogspot.com/ ">cheap ticket</a>
[url=http://cheap-ticket-2007.blogspot.com/]cheap ticket[/url]
Good example!
I need to do the following:
<E>
<P1>
<P2/>
</P1>
</E>
where E = envelope and P1 and P2 are message parts 1 and 2.
Can this be done using envelope and document specs?
<a href=" http://ticket2007.blogspot.com/ ">cheap ticket</a>
[url=http://ticket2007.blogspot.com/]cheap ticket[/url]
<a href=" http://cheap-ticket-2007.blogspot.com/ ">cheap ticket</a>
I like this version
same error, what can I do??
can anyoe show me some tutorial as to how to create web parts using .Net
Format and re-install.
Hi, actullay im also developing a desktop based explorer for the sharepoint named "sharepoint tarantula" in VB.Net as final project for BS(IT).... might be u can help us in its development...
My email address is ahmedmuneebch@gmail.com
Regards
Ahmed Muneeb
Can you install WSS V3 on a Vista Ultimate?
Hi piple!!!
<a href=" http://discount-stock-brokers.blogspot.com ">discount stock brokers</a>
[url=http://discount-stock-brokers.blogspot.com]discount stock brokers[/url]
Great Demo
[url=http://air-buy-cheap-ticket.blogspot.com/]cheap ticket[/url]
<a href=" http://air-buy-cheap-ticket.blogspot.com/ ">cheap ticket</a>
amgits !!!
<a href=" http://stock-broker-i.blogspot.com ">stock broker</a>
[url=http://stock-broker-i.blogspot.com]stock broker[/url]
This is very helpful. I tried this in a toolpart to add a new webpart in the current page. It works fine but there is one issue there.
When I add my webpart properties and clicked the OK button on the toolpart, when the page first reloaded, the added webpart is not shown. I can only see the one I added earlier.
<a href=" http://cheap-airfare-2007.blogspot.com/ ">cheap airfare</a>
[url=href=" http://cheap-airfare-2007.blogspot.com/]cheap airfare[/url]
amgit hi hi hi !!!
<a href=" http://cheap-ticket-8.blogspot.com ">cheap ticket</a>
[url=http://cheap-ticket-8.blogspot.com]cheap ticket[/url]
jhui =)
<a href=" http://stock-brokers.blogspot.com ">stock brokers</a>
[url=http://stock-brokers.blogspot.com]stock brokers[/url]
hi Jan,
I installed your webpart, but now all of my SPS sites display the error "Server Error in '/' Application."
I've tried Microsoft KB articles but i hasnt helped. Please help!
I tried uninstalling but i still have the problem. Any ideas what could cause this?
Martin
martin.keen@porthosp.nhs.uk
Once i turned Customerr logging to OFF - i now get:
Parser Error Message: Unable to read the security policy file for trust level 'wss_custom'.
When i examine my web.config file i see a line:
<trustLevel name="wss_custom" policyFile="C:\Program Files\Common
Files\Microsoft Shared\Web Server
Extensions\60\config\wss_custom_wss_minimaltrust.config" />
However, when I navigate to this folder there is no file called
'wss_custom'.
Jan.. Does your install/uninstall routine change any of these things?
HI,
I have 'resolved' this problem by making a copy of the wss_mediumtrust.config file and renaming it.
Do you forsee any implications in doing so?
I also had to make a couple of changes in the web.config file.
still stumped as to why it was referring to the missing wss_custom_wss_minimaltrust.config. Was this anything to do with your webpart?
Cheers,
MK *PHEW!
GHello1!
<a href=" http://cheap-airfare-2007.blogspot.com ">cheap airfare</a>
[url=href=" http://cheap-airfare-2007.blogspot.com]cheap airfare[/url]
It is really a very good example, Is it possible that we can fetch users from a perticular Sitegroup.
<a href=" http://cheap-air-ticket.ueuo.com/ ">cheap air ticket</a>
[url=http://cheap-air-ticket.ueuo.com/]cheap air ticket[/url]
<a href=" http://ford-mustang-2oo7.blogspot.com ">ford mustang</a>
[url=http://ford-mustang-2oo7.blogspot.com]ford mustang[/url]
I GET THE SAME ERROR.
When i want to delete an alert for one specific user, i'm getting the error: 'No alert selected!'.
prem
When i want to delete an alert for one specific user, i'm getting the error: 'No alert selected!'. especially with sharedocuments
Prem
Italy will not appeal.
Just installed 2007 and I do like where Microsoft's going with this one. however I do crash a LOT when using Outlook. it frequantly crashes when an email is opened from the inbox and once and a while upon reply...
anyone share this?
<a href=" http://cheap-airline-ticket-2007.blogspot.com/ ">cheap airline ticket</a>
[url=http://cheap-airline-ticket-2007.blogspot.com/]cheap airline ticket[/url]
first purchase up.
To access the file name of Non XML Files in Biztalk orchestration see the following link.
http://www.developer.com/net/net/article.php/11087_3482346_2
To Access the file name of messages in BizTalk Orchestration, also try this link.
http://www.topxml.com/Biztalk-Adapters/re-2694_Naming-Output-Files-in-an-Orchestration-in-BizTalk-2004.aspx
information page.
hello world!
<a href=" http://online-credit-card-approval-2ooo7.blogspot.com ">online credit card approval</a>
[url=http://online-credit-card-approval-2ooo7.blogspot.com]online credit card approval[/url]
Have A Nice Day!
Have A Blog.
You can also use this
Protected Overrides Function GetWebRequest(ByVal uri As System.Uri) As WebRequest
Dim w As Microsoft.Web.Services2.SoapWebRequest = MyBase.GetWebRequest(uri)
Dim httpw As HttpWebRequest = w.Request
httpw.KeepAlive = False
httpw.ProtocolVersion = HttpVersion.Version10
Return w
End Function
Get the best info.
voudrais repondre a monsieur dubier routier sinclair s'il peut m'ecrire
benissadf@yahoo.fdr
benissadf@yahoo.fr
who is Baxh?
Hi ,
Thats a goog info. Thanks
Is there any ways to enable event handler in Sharepoint 2007
who is hiphop?
<a href=" http://cheap-flight.xcx.pl/ ">cheap flight</a>
[url=http://cheap-flight.xcx.pl/]cheap flight[/url]
<a href=" http://online-betting-888.blogspot.com/ ">online betting</a>
[url=http://online-betting-888.blogspot.com/]online betting[/url]
http://home-equity-line-of-credit-2oo7.blogspot.com
<a href=" http://home-equity-line-of-credit-2oo7.blogspot.com ">home equity line of credit</a>
Very good site with a lot of useful information
archy it i, and i like you!
Very good website you have here.
Thanks for taking a few of us.
Where can i download it?
Hey Jan, great code!
One question: is it possible with SharePoint to create appointments in the portal, so you can schedule a person for an event?
Thanks in advance!
A Vietnam based travel and tour operator specialising in holidays and vacations in vietnam for singles, couples, small groups and families.
onlinekredit
<a href=" http://onlinekredit-2007.blogspot.com/ ">onlinekredit</a>
[url=http://onlinekredit-2007.blogspot.com/]onlinekredit[/url]
This is a very informative site.
I amglad to put my step on it.
To change the look & feel from within Outlook 2007, Go under Tools > Options > Mail Format > Editor Options. Color Scheme is there at the bottom of the first section under Personalize.
buy steroid <a href=http://buy-steroid.501megs.com>buy steroid</a>
I try to setup RSS into WSS by Web Part but unsuccessful.
I have downloaded the snippet ..but don't know how to use it.Please Help..
Keep up this great resource.
hello , this is world.
great article, but I am wondering is it possible to do same thing but directly from SP administration?
What I actualy need, is to create lookup field on list whish is on my root site.
thanks,
jan
I bookmark your site.
I found it very interesting http://pantyhose.wwwwblogger.com
I saw you website.
Well it seems that the webpart is great but the error of access denied and the login box when the webpart is deployed to a SPS 2003 area is breaking the webpart apart. Jan do you have any insights of how to rectify the issue?
hello, your super.
your site very well! http://xoomer.virgilio.it/pizd/work.html
obtaining Schaffner!pores games,Connally grievous borough!
<a href= " http://www.bloghof.net/pub/blogHof/fred2/cheap-air-ticket.html ">cheap air ticket</a>
<a href= " http://www.bloghof.net/pub/blogHof/fred2/cheap-ticket.html ">cheap ticket</a>
Very good website you have here
Great!
I have been looking for ANY information regarding this for a while.
Now, my next question is, what is the best way for utilizing this in my own custom webpart?
I am using the CreateChildControls() method to output the content in my webpart. Can I use this to output the presence information of the users my webpart handles? If so, how? Or do I need to do some combination with the Render() method?
Any clarifiaction will be greatly appreciated :-)
I have just downloaded and installed the RC1c version. All the Installation steps were performed successfully. But i'm unable to see any new columns like Status, comments etc in my library. Nothing in the event logs too. Infact, it doesn't seem to have any effect on the site. Can you please let me know what may be the problem? Thanks.
<a href=" http://cheap-5-airfare.blogspot.com/ ">cheap airfare</a>
[url=http://cheap-5-airfare.blogspot.com/]cheap airfare[/url]
nice work too
I have just downloaded and installed the RC1c version. All the Installation steps were performed successfully. But i'm unable to see any new columns like Status, comments etc in my library. Nothing in the event logs too. Infact, it doesn't seem to have any effect on the site. Can anybody please let me know what may be the problem? Thanks.
Very good wsite.
<a href=" http://cheap--tickets.blogspot.com/ ">cheap ticket</a>
[url=http://cheap--tickets.blogspot.com/]cheap ticket[/url]
hi, i love you.
I found it very interesting.
i love is it.
If it use in commercial, is it need to pay charge?
<a href=" http://cheapairfare.jconserv.net/ ">cheap airfare</a>
[url=http://cheapairfare.jconserv.net/]cheap airfare[/url]
Hi
I'm populating InfoPath 2003 using SharePoint list. In my SharePoint list I’m using paging. Because of that in my InfoPath form it shows only the first page records. Is there is any other to get full data from a paging enabled SharePoint list to InfoPath.
Vivek.T
hi, my name is gclock.
The more you know about site.
Hi pipli! =)
<a href=" http://last-minute-airfare-2007.blogspot.com ">last minute airfare</a>
[url=http://last-minute-airfare-2007.blogspot.com]last minute airfare[/url]
Hi pili! =)))
<a href=" http://airline-ticket-2007.blogspot.com ">airline ticket</a>
[url=http://airline-ticket-2007.blogspot.com]airline ticket[/url]
The more http://xoomer.alice.it/pilod/bingo/
To clarify my last question:
I need to do this programatically (in code-behind) as my webparts that will use this handles everything i code.
Currently I am experimenting with using TemplateColumn and trying to put the html for the presence of a user dynamically into each row of a datagrid. My I seem to come up short of a good solution.
Please help!
Medved! =)
<a href=" http://game-cheats-for-ps2-i.blogspot.com ">airline ticket</a>
[url=http://game-cheats-for-ps2-i.blogspot.com]airline ticket[/url]
hi, my name is jakob.
How to remove an added column from document library
Here is an assortment of various 2007 Microsoft Office SharePoint Server Documentation / Reference Materials...
Hello is a new way.
I really like the concept of your webpart, but I keep running into a security issue when I try to add it to my SPS pages. It asks for authentication when it's added but it will not accept in of the administrator username/passwords. Now at this point, every page I add this webpart to can't be accessed because of adminstrative authentication problems. Is there a method of getting around this, and if not will this a problem any time you work with the SPS alert namespaces?
<a href=" hydrocodone.blog.naszemiasto.pl ">hydrocodone</a>
[url= hydrocodone.blog.naszemiasto.pl]hydrocodone[/url]
Hi ho Silver, away.
Vsem spat`!
<a href=" http://enterprise-rental-car.blogspot.com ">enterprise rental car</a>
[url=http://enterprise-rental-car.blogspot.com]enterprise rental car[/url]
Vietnam real estate, vietnam property, vietnam accommodation, house for rent in vietnam, vietnam house for rent, office for rent
What is software escrow?
<a href=" http://hydrocodone.blog.naszemiasto.pl ">hydrocodone</a>
[url= http://hydrocodone.blog.naszemiasto.pl]hydrocodone[/url]
<a href=" http://lowest-airfares-2007.blogspot.com ">lowest airfares</a>
[url=http://lowest-airfares-2007.blogspot.com]lowest airfares[/url]
Information and pictures about dna.
<a href=" http://lowest-cheap-airfares.blogspot.com ">lowest cheap airfares</a>
[url=http://lowest-cheap-airfares.blogspot.com]lowest cheap airfares[/url]
<a href=" http://mortgage-refinance-a.blogspot.com ">mortgage refinance</a>
[url= http://mortgage-refinance-a.blogspot.com ]mortgage refinance[/url]
Acuvue contact lenses available.
<a href=" http://airfare-2007.blogspot.com ">airfare</a>
[url=http://airfare-2007.blogspot.com]airfare[/url]
forex is not good.
I found it very interesting
<a href=" http://california-mortgage-a.blogspot.com ">california mortgage</a>
[url= http://california-mortgage-a.blogspot.com ]california mortgage[/url]
Thanks for taking a few of us http://xoomer.alice.it/kalich/broker/
<a href=" http://enterprise-rent-a-car.blogspot.com ">enterprise rent a car</a>
[url=http://enterprise-rent-a-car.blogspot.com]enterprise rent a car[/url]
Keep up the good work!
Text: 08fd0715e183b195b6ed0be333347c4c0
<a href="08fd0715e183b195b6ed0be333347c4c00">08fd0715e183b195b6ed0be333347c4c00</a>
[a]08fd0715e183b195b6ed0be333347c4c01[/a]
[a href=08fd0715e183b195b6ed0be333347c4c02]08fd0715e183b195b6ed0be333347c4c02[/a]
[a href="08fd0715e183b195b6ed0be333347c4c03"]08fd0715e183b195b6ed0be333347c4c03[/a]
[link]08fd0715e183b195b6ed0be333347c4c04[/link]
[link=08fd0715e183b195b6ed0be333347c4c05]08fd0715e183b195b6ed0be333347c4c05[/link]
[link="08fd0715e183b195b6ed0be333347c4c06"]08fd0715e183b195b6ed0be333347c4c06[/link]
[url]08fd0715e183b195b6ed0be333347c4c07[/url]
[url=08fd0715e183b195b6ed0be333347c4c08]08fd0715e183b195b6ed0be333347c4c08[/url]
[url="08fd0715e183b195b6ed0be333347c4c09"]08fd0715e183b195b6ed0be333347c4c09[/url]
Good job guys! http://xoomer.virgilio.it/pizd/in/
archy it i, and i like you
Hi,
I am not a developer and new to Sharepoint - I want to create a calculated column that referenced a column in another list on the same site - e.g. My new list will display one line that counts all the lines in the other list that has a certain column set to "Yes"
is this possible - I will appreciate it if someone can come back to me with some suggestions. email ferdi.retief@avroyshlain.co.za
Will this prevent the time-out if one installs the fix before the time-out occurs?
What should be included?
<a href=" http://lowest-airfare-2007.blogspot.com ">lowest airfare</a>
[url=http://lowest-airfare-2007.blogspot.com]lowest airfare[/url]
debt consolodation <a href=http://debtconsolodation.ibusinessdot.com/>debt consolodation</a>
workathome <a href=http://workathome.mycv.tv/>workathome</a>
You are super cool!!!
Good luck with that Artificial Sun thing.. Stay safe.
Thank you http://xoomer.alice.it/kalich/experian/
winstrol <a href=http://winstrol.atspace.com/>winstrol</a>
debt consolidator <a href=http://debt-consolidator.yoll.net>debt consolidator</a>
jkhkhj
sustanon <a href=http://sustanon.ds4a.com/>sustanon</a>
Very useful and interesting site, thanks!
Jan. This is a great tool. Its saved me lots of effort.
I have a question. Is it possible to hide the Smartpart webpart control based on roles?
Thanks in advance
For the record, this is how you do it in .Net 2.0
Private callback As New System.Net.Security.RemoteCertificateValidationCallback(AddressOf RemoteCertificateValidationCallback)
Private Function RemoteCertificateValidationCallback(ByVal sender As Object, ByVal cert As System.Security.Cryptography.X509Certificates.X509Certificate, ByVal chain As System.Security.Cryptography.X509Certificates.X509Chain, ByVal sslPolicyErrors As System.Net.Security.SslPolicyErrors) As Boolean
Return True
System.Net.ServicePointManager.ServerCertificateValidationCallback = callback
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.
xenadrine review <a href=http://xenadrine-review.awardspace.com/>xenadrine review</a>
nextcard visa credit card <a href=http://nextcard-visa.sessocities.net>nextcard visa credit card</a>
workfromhome <a href=http://m.domaindlx.com/workfromhome/>workfromhome</a>
archy it i, and i like you.
I want to add alerts for specific folder in document library, I am able to add alert for files through SPListItem in SPList but do not have idea how to access folder through SPList.
Hi Jan, I am new to share point web parts. Its great web part .
I have two issues
1. How can I modify this webpart to list users only at site level
Can I do it by SPControl.GetContextSite(this.Context); instead of SPControl.GetContextWeb(this.Context);
2. In the current webpart, Remove selected alert is not working for Shared Document List. Do you have fix for it?
Thank you very much for the kool webpart.
you guys rock --- love the RSS web part for Share Point. Keep on keeping on.
debt consoladation <a href=http://debt-consoladation.awardspace.co.uk>debt consoladation</a>
Actually every thing i have done but I am not getting where this DWP file need to store , Acording to you i need to put into WPCATALOG folder but i am not getting that folder , there itself stuck ?
please give me some idea how to solve this problem
1. My actual problem is when i am addind the web part it is telling
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
Dipesh
Ok,
Creating the 'NT AUTHORITY\NETWORK SERVICE' SQL permissions for your Sharepoint Server.....
OK I am going to start from Scratch its easier.
Note: Your SQL Server should be using Windows Authentication.
Open up your SQL Enterprise Manager, goto Security then Logins.
Here you should see all the users and groups that have access, By default you should have the SA account and a few BUILTIN accounts.
Now either right click and select "New Login", here create the user, in this case 'NT AUTHORITY\NETWORK SERVICE' make sure you enable "Grant Access".
Now under "Server Roles" what I did to make sure that I wasn't going to have any problems with this User during the Install I made ithe user a "System Administrator", OK some of you will cringe and say Noooooo... but hey its me writing this and I am doing it may way... (I dont mean to offend).
Then under "Database Access" make sure that you select "Master" and tick "DB_Owner" again I can hear another groan across the vast expanse that is the Net...(Sorry..)
Note: Once you have installed Sharepoint you can always change the premissions of the 'NT AUTHORITY\NETWORK SERVICE' to a less aggressive role.
Ok once you have done all of the above, you can kick off your Sharepoint Install, don't forget to use the "remotesql=yes" switch if your installing Sharepoint on a Frontend Webserver or on the same DB server as SQL.
If anyone thinks I have missed out something please let me know.
PingBack from http://microsoft.wagalulu.com/2006/08/11/rss-feed-generators-for-team-foundation/
You are now part of the BUZZ at SharePoint BUZZ
visit http://www.sharepointbuzz.com
VISIT http://www.sharepointbuzz.com
Thank you http://www.ucm.es/wwwboard/ec/messages/8902.htm
<a href=" http://mortgage-refinance-a.blogspot.com ">refinance</a>[url= http://mortgage-refinance-a.blogspot.com ]refinance[/url]
<a href=" http://cheapticketnew.blogspot.com ">cheap ticket</a>
[url=http://cheapticketnew.blogspot.com]cheap ticket[/url]
<a href=" http://cheapairfareticketnew.blogspot.com ">cheap airfare ticket</a>
[url=http://cheapairfareticketnew.blogspot.com]cheap airfare ticket[/url]
<a href=" http://cheapairticketnew.blogspot.com ">cheap air ticket</a>
[url=http://cheapairticketnew.blogspot.com]cheap air ticket[/url]
<a href=" http://cheapairfarenew.blogspot.com ">cheap airfare</a>
[url=http://cheapairfarenew.blogspot.com]cheap airfare[/url]
Thanks that helps. Just a note that in .NET 2.0 System.Net.ServicePointManager.CertificatePolicy is obsolete and instead, you are expected to define the ServicePointManager.ServerCertificateValidationCallback callback method to do the same thing. This callback has the same signature as ICertificatePolicy.CheckValidationResult, but with the use of parameter-less anonymous methods, you can simply do the following to achieve the same result:
System.Net.ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
<a href=" http://2007cadillac-escalad.batcave.net/home-equity-line-of-credit/index.html ">home equity line of credit</a>
[url=http://2007cadillac-escalad.batcave.net/home-equity-line-of-credit/index.html]home equity line of credit[/url]
<a href=" http://reallycheapairlineticketnew.blogspot.com/ ">really cheap airline ticket</a>
[url=http://reallycheapairlineticketnew.blogspot.com/]really cheap airline ticket[/url]
<a href=" http://cheapinternationalairfarenew.blogspot.com ">cheap international airfare</a>
[url=http://cheapinternationalairfarenew.blogspot.com]cheap international airfare[/url]
businessopportunities <a href=http://businessopportunities.drspages.com>businessopportunities</a>
The best - DISCOUNT AIRLINE TICKET!!!!!
<a href=" http://discount-airline-ticket-2007.blogspot.com ">discount airline ticket</a>
[url=http://discount-airline-ticket-2007.blogspot.com]discount airline ticket[/url]
<a href=" http://airfaresnew.blogspot.com/ ">air fares</a>
[url=http://airfaresnew.blogspot.com/]air fares[/url]
<a href=" http://florida-mortgage-a.blogspot.com ">florida</a>[url= http://florida-mortgage-a.blogspot.com ]florida[/url]
hydroxycut <a href=http://hydroxycut.bebto.com>hydroxycut</a>
<a href=" http://cheapairfaresnew.blogspot.com/ ">cheap airfares</a>
[url=http://cheapairfaresnew.blogspot.com/]cheap airfares[/url]
I am trying to install the Navigation web part but to no avail. I have follow the steps outlined above, but am still getting an error when trying to place the web part on the page. The error is:
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.
Any help would be greatly appreciated. This looks like a fantastic web part and would be very useful.
Liz
hi, nice site.
Great article, Jan. This is a problem not easily diagnosed. Your article gets right to the point in a clear and concise manner. I downloaded a menu web part that I wanted to modify to configure off an XML file rather than hardcode it (as the author did). I could see in his code lines that were commented out because he could not figure out how to read off the local drive. His commented code included attempts to read the file using an absolute path and using a URL. I'm sure he ran into the same security issues that I did when I started modifying the code. After a day and a half of changing user permissions, machine security, implementing various ways to read a file, debugging, googling, I was ready to throw in the towel and hard code my XML when I ran across your article. It worked like a charm. Thanks!
<a href=" http://airline-discount-tickets.blogspot.com ">airline discount tickets</a>
[url=http://airline-discount-tickets.blogspot.com]airline discount tickets[/url]
This post was very helpful! Thank you very much!
The excellent site!!! Want you good luck and prosperities!!
Hi all,
Fot those having the 'Access Denied' issue when using on Portal Server rather than wss sites
please see this link
http://blogs.msdn.com/karthick/archive/2006/02/13/530931.aspx
Explains the issue well.
I am trying to download a file from ssl protected link , with WebRequest.
I tried to use your class but the stream that i am geting is empty.
Can you tell me please if i am doing something wrong?
The Code :
ServicePointManager.CertificatePolicy = new TrustAllCertificatePolicy();
HttpWebRequest webRequest1 = WebRequest.Create(d) as HttpWebRequest;
webRequest1.KeepAlive = true;
webRequest1.CookieContainer = cookies;
webRequest1.Accept = "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
webRequest1.Headers.Set("Accept-Language", "en-us,en;q=0.5");
webRequest1.Headers.Set("Accept-Encoding", "gzip,deflate");
webRequest1.Headers.Set("Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7");
webRequest1.Headers.Set("Keep-Alive", "300");
WebResponse myResponse1 = webRequest1.GetResponse();
Stream ReceiveStream1 = myResponse1.GetResponseStream();
SaveStreamToFile(@"C:\file.csv", ReceiveStream1);
Thanks,Rony
Thanks for the link james. I understand the webpart ony works on the home page, but I'm not sure of how to allow the part to work on subareas. any insight?
Jan, These parts are great. I was wondering about the What's new webpart. I am using sharepoint as our company website. I don't want users to be able to go directly into the Lists and Document Libraries. In the What's New Webpart the List/Document Library link is shown. Is there any way to remove this from the view?
Check out our site at http://www.cimronebraska.org
It's all sharepoint!
[url]http://cheapflightticketnow.blogspot.com/">http://cheapflightticketnow.blogspot.com/]cheap flight ticket[/url]
http://cheapflightticketnow.blogspot.com cool
wieght loss product <a href=http://wieght-loss-product.fateback.com>wieght loss product</a>
Hello
i can't deploy this on spportal 2003 because i create the file *.cab with visual studio 2005.
"La version 2.0 n'est pas compatible"
Have you a solution for this problem?
The spportal 2003 have the sp2.
Ps:Excuse me for my bad english ;-)
<a href=" http://hoodiasideeffectsnow.blogspot.com/ ">hoodia side effects</a>
[url=http://hoodiasideeffectsnow.blogspot.com/]hoodia side effects[/url]
I'm wishing to install the SharePoint essentials. I tried to follow the instructions but I can't find where the WPCATALOG and GAC folders are? I'm using SharePoint Services 2003.
Please help. Thanks.
Vincent
vincent.chai@ledcor.com
Thanks for this webpart, Jan.
I was just looking for something like this.
It works fine!
Firstly just to say great work, a very useful tool. However, I appear to be having problems copying files from a document library in a meeting workspace to a new location. I suspect the problem is due to the root folder of a document library within a meeting workspace being within a subfolder labelled "1". Is there anyway round this?
[url=http://cheap-plane-ticket2ooo7.blogspot.com]>cheap plane ticket[/url]
<a href=" http://cheap-plane-ticket2ooo7.blogspot.com ">cheap plane ticket</a>
<a href=" http://cheap-plane-ticket-aa.blogspot.com ">plane ticket</a>[url= http://cheap-plane-ticket-aa.blogspot.com ]plane ticket[/url]
<a href=" http://airfaretravel.blogspot.com ">airfare</a>
[url=http://airfaretravel.blogspot.com]airfare[/url]
<a href=" http://cheap-air-tiket-aa.blogspot.com ">air tiket</a>[url= http://cheap-air-tiket-aa.blogspot.com ]air tiket
<a href=" http://cheap-air-tiket-aa.blogspot.com ">plane ticket</a>[url= http://cheap-air-tiket-aa.blogspot.com[/url]
http://yandex.ru
<a href=" http://home-equity-line-of-credit-a.blogspot.com ">plane ticket</a>[url= http://home-equity-line-of-credit-a.blogspot.com[/url]
<a href=" http://home-equity-line-of-credit-a.blogspot.com ">home equity</a>[url= http://home-equity-line-of-credit-a.blogspot.com ]home equity[/url]
<a href=" http://cheap-airline-ticketsa.blogspot.com ">airline ticket</a>[url= http://cheap-airline-ticketsa.blogspot.com ]airline ticket[/url]
Cool site!
<a href=" http://dietpillx.blogspot.com ">diet pill</a>
[url=http://dietpillx.blogspot.com]diet pill[/url]
Nice web page! ;)
<a href=" http://birthcontrolpillx.blogspot.com ">birth control pill</a>
[url=http://birthcontrolpillx.blogspot.com]birth control pill[/url]
steve@revfans.com
The best airfare!
<a href=" http://discount-airfare-n.blogspot.com ">discount airfare</a>
[url=http://discount-airfare-n.blogspot.com]discount airfare[/url]
I'm completely confused... This Microsoft support website tells us that SPS can't work with .NET framework 2.0 : http://support.microsoft.com/kb/907763 .
However, we need the WSS to run on the .NET version 2.0 to use the Son of SmartPart !!
I then downloaded the WSS SP2 and the SPS SP2, I completely re-created a web site that I configured to run under .NET 2.0 in IIS (using stsadm -o ....), and it still doesn't work: Every Web Parts are replaced by this sentence: "Web Part Error: This page has encountered a critical error. Contact your system administrator if this problem persists."
Would it be possible to have any help?????
I really don't know how can I fix this problem, as I would like to use the Visual Web Developer 2005 Express Edition for creating my Web Parts...
<a href=" http://lowest-airfare-new.blogspot.com ">lowest airfare</a>
[url=http://lowest-airfare-new.blogspot.com]lowest airfare[/url]
PingBack from http://www.livejournal.com/users/phildeep/13506.html
Hey William ... just catching up on my reading and saw this great comment ... thanks very much for the support!!
David
David Gillespie, CTO, 80-20 Software (makers of Retention Server).
Biztalk 2004 provides a variety of built in macros for dynamically naming files. A full list of macros
<a href=" http://brazilflighthot.blogspot.com ">brazil flight</a>
[url=http://brazilflighthot.blogspot.com]brazil flight[/url]
<a href=" http://cheap-airplane-ticketss.blogspot.com ">airplane ticket</a>[url= http://cheap-airplane-ticketss.blogspot.com ]airplane ticket[/url]
great!! works also if you have .Net 2.0 the same problems occurs when using remoting callbacks, and your solution solve it
Hi, I have installed this as a server farm, as I have already one MSDE instance (Trend Micro IWSS). I now have a central administration page on localhost:10900, but I have no idea how to manually set up a sharepoint.
I could also install sharepoint first and IWSS afterwards, but then i get prompted for the password for the SA account, and I can't find it anywhere.
Any pointers to both solutions would be greatly appreciated.
Thanks, Thomas
Great job keep up the good work, and thanks for the help very appreciated.
u just adjust ur system clock back ur problem will be solved
<a href=" http://really-cheap-airline-ticketss.blogspot.com ">really ticket</a>[url= http://really-cheap-airline-ticketss.blogspot.com ]really ticket[/url]
This things sounds great. We didn't experience any problems in during the installation, but I cannot find the web part in my galleries. Any thoughts on why it might not show up?
Die Axt im Haus erspart den Zimmermann.
<a href=" http://cheap-international-airline-ticket-aa.blogspot.com ">international ticket</a>[url= http://cheap-international-airline-ticket-aa.blogspot.com ]international ticket[/url]
I have anywhere from 20-30 users for each SP site. Is there any way to allow them to still view the page even though the Lead-it web part is on the page? I have it hidden so only I know it's there. When someone who is not an admin hits the page they are prompted for userid/pw and then pushed out to an error page, they don't even get the web part error.
I cant use database. whenever I add a ascx page containing a connection to database I get an error
Can someone post a sample or tutorial of how to use son of smartpart using database connection?
I need your help i developed a portal on the development server now i want to migarte on the production server can some body tell me how can i transfer site from development server to production server
<a href=" http://discountairfarehot.blogspot.com ">discount airfare</a>
[url=http://discountairfarehot.blogspot.com]discount airfare[/url]
<a href=" http://flightsjapanhot.blogspot.com ">flights japan</a>
[url=http://flightsjapanhot.blogspot.com]flights japan[/url]
Vietnam real estate, house for rent in vietnam, vietnam apartment for rent, office for rent
go there!! You'll find whatever you want about Web Parts in the forums... http://www.sharepointu.com
I have the same problem of creating a custom toolpart using SmartPart. Did you have any luck?
Direkter Download: SPPD-049-2006-08-25 Intern SharePointCommunity 1 Jahr - Gewinnspiel 50. Podcast 2.000
<a href=" http://new-order-bride-a.blogspot.com ">order bride</a>[url= http://new-order-bride-a.blogspot.com ]order bride[/url]
Hi Jan. SmartPart seems like a very useful webpart especially for programmers like me who are just starting on Sharepoint.
I tried to use the Sharepoint.dll inside the web user control i created but it's causing an error on my Sharepoint site. I have a feeling this is due to some circular reference. Am I right? If so, is there a way to use Sharepoint.dll inside a web user control that will be placed onto SmartPart?
Sorry for the newbee question. :(
<a href=" http://airfaresw.blogspot.com ">air fares</a>
[url=http://airfaresw.blogspot.com]air fares[/url]
The password has to be at least 7 characters long... otherwise the backup fails without any error msgs...
<a href=" http://cheapairlinetickete.blogspot.com ">cheap airline ticket</a>
[url=http://cheapairlinetickete.blogspot.com]cheap airline ticket[/url]
Hi, I understand your code.But if I do this ,like I want to create a infopath template using c#,how can I do ? or if I want to add one button to a infopath template which had created.How can I do ? please help me ! Thank you ! My msn:llmandlxr@hotmail.com. I am online every day.
We we able to successfully install your webpart. Interesting thing is that now none of the users can access the teamsite without being "administrators". All of them are "contributors" and they get a "login" dialog box, and are unable to login to the site.
Steve.trabun@avistacorp.com
Here's a list (I got from
Jan's Site) of send macros that I reference all the time. Macro...
We are trying to add compression to our WS and we are getting the following error : "The operation has timed-out. ... GetRequestStream()" when the WS make several requests in a short period of time.
We added the following code to accept compressed response:
System.Net.WebRequest request = base.GetWebRequest(uri);
request.Headers.Add("Accept-Encoding", "gzip, deflate");
return request;
It seems that the proxy class is trying to open too many connections to the server when the WS asks several requests in a short period of time and it is not capable of reusing the existing open connections, (i read that max persistent connections to a server is 2 by http protocol limitation). I used TcpTrace to verify this. The odd thing is that, when i use tcptrace, several connections (let's say ten, one per request) are opened without problem. Any ideas?
I tried KeepAlive = false and is not working either.
Thanks man...This was the issues which was creating the big problem for me since long time.
Thanks a lot..
Pushawart
When I want to delete an alert for one specific user, i'm getting the error: 'No alert selected!'.
I have seen this posted earlier too, but could not find the fix.
Can someone help
"Access denied. You do not have permission to perform this action or access this resource."
"Access requests are not enabled. "
What is wrong here? I have tried to login with the Administrator login priviledges.
I wonder about your solution above. I can see that this would work if you are not using a browser-enabled form; but is there a way to do this with the browser-enabled form. I have found one or two examples but they did not work correctly. If you have any ideas I would be very interested.
The excellent site!!! Want you good luck and prosperities!!!
Good! =)
<a href=" http://kitchen-islands.blogspot.com ">kitchen islands</a>
[url=http://kitchen-islands.blogspot.com]kitchen islands[/url]
Question :
Jan take this example , i have 3 users , the user1 have an alert in the anouncements when new anouncement as been added.
The user2 and user3 have been alert when the anouncements where change.
Now the question is...it's possible to send the alert only for one the users depending the change i made ?
Exemple : The user2 submited a new anouncement but it's pending need's the aprovation of the administrator ( user1 )
When the user1 aproves the user2 will recive an alert , but the user3 will recive to , it's possible the user 3 does not recive ?
Answer to my e-mail
f.fernandes@gametal.pt
Problem:
We didn't experience any problems in during the installation, but I cannot find the web part in my galleries.
Can you help me find it?
Answer to my e-mail kirt@seznam.cz
Thank you
For a dataview web part created in FrontPage to consume an RSS feed but get "The
I'm having the same problem with the error message but my server isn't a domain controller? any ideas?
<a href=" http://cheapflightsss.blogspot.com ">cheap flight</a>
[url=http://cheapflightsss.blogspot.com]cheap flight[/url]
<a href=" http://cheapflighthot.blogspot.com ">cheap flight</a>
[url=http://cheapflighthot.blogspot.com]cheap flight[/url]
We didn't experience any problems in during the installation either, and we also cannot find the web part in our galleries.
Can you help us find it too?
scott<dash>i<at>enm<dot>com
[URL="http://flowerdelivery.angelcities.com/"]flower delivery[/URL]
<a href=" http://homeequitylineofcredithot.blogspot.com ">home equity line of credit</a>
[url=http://homeequitylineofcredithot.blogspot.com]home equity line of credit[/url]
<a href=" http://kitchen-faucetsn.blogspot.com ">kitchen faucets</a>
[url=http://kitchen-faucetsn.blogspot.com]kitchen faucets[/url]
somewhere along the post, I seem to have read that these webparts do not work for Doc libraries and lists(works only for subsites). Is that accurate? I'm a amateur administrator on a Sharepoint site and would like to implement your breadcrumb functionality based on your response.
Great Web Part. I have found one problem. I can't delte an alert for a user. I'm getting No ALert Selected. ANy idea why this is happening and what can I do to resolvve this.
Thnask,
George
Exciting website.
Hi, i know that this post is about sharepoint but i can't find an answer anywhere for my problem so i decided to ask you. I'm using a compiled usercontrol that has 2 images set has embeded resources and I've also used the WebResource attribute in my UC.
This UC among others things, should show the image embeded in the assembly but the image doesn't appear. The image is getting the url from "WebResource.axd?d=tYghds...) as it should but the image does not appear.
So, my question is, is it possible to have a usercontrol using an image embeded? How?
I hope you can help me on this because i can't find a solution anywhere. Thanks.
This great resource
Fahad:
you spelt "password" wrong -
" <Add Key="Leadit.sharepoint.workflow.passowrd" value="yyy"/>
Can a Smart Part consume data from a WSS Data View Web Part?
Does anyone have an example of Connecting a DVWP with a Smart Part with a Flash web control?
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?
I'm desperate. I need to get current user name. Pls help
Has Anyone also tryed to instance and use a SQL connection and display items into a simple DataGrid?
this site rocks! http://www.sis.utk.edu/Members/derik/5.html
Why's this a YASR? This was possible in WSSv2 - I use it every single day!
BLOCKED SCRIPTMSOTlPn_ShowToolPane('2');
(ok, there are somethings you can't do, like change properties on a NewFrom.aspx)
I too am having difficulty installing this web part with the same problems everyone above has. Jan, I appreciate this web part is free - but really, can you please respond so that we all know how to install it otherwise we will need to look elsewhere.
VERY GOOD I THINK http://www.opensourcearmenia.com/Members/de/1.html
Nice article!
There are two broken links though. Check the links for the zip files.
Jan - you are a legend ! I have tried every trick I found online and this is the only one that worked. Better still - I actually learned something. Thank you very much.
Sam
Global Team Member Survey
Thanks very much ! 非常感谢!
You can fix this error "
unable to load ~\UserControls\DropDownNavigation.ascx
Details: Request for the permission of type Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c failed"
by modifing your customs policyfile:
<CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust">
<IMembershipCondition version="1" AssemblyVersion="1.0.0.0" Name="SmartPart" class="StrongNameMembershipCondition" PublicKeyBlob="0x0024000004800000940000000602000000240000525341310004000001000100BB20A2F20001218C2100806C4A656705F4220FE7636574B9B8128E0AA44BE734F379B88130A29020D658ED8CFA1B0A0C93094A22144C54476A507FBB5D812C94DD412AB260EED31D99857A53E20200AC9020007D852540DB43C54D5269507DD45181B1B5E6766C9E2FB3DD0C931C2D1B22ADFDCEC8FDB02E423E3D8BBD59C4B9" />
</CodeGroup>
If you still can not fix this, send request to my (hlhamduc@yahoo.com), i will sent to you my customs policy file
Congratulations on a great web site. I am a new computer user and finding you was like coming home. Continued success.
It seems that this web part doesn't work if the sharepoint site is using https. The installation ran fine, but I couldn't browse to find the web part, and I saw the following error message, among other more generic ones, in my Windows Application log. Does anybody know if this WebPart will work with SSL?
The errors:
Error: Failure in loading assembly: System.Web,Version=1.0.5000.0, Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a
Error: Failure in laoding assembly: Leadit.SharePoint.Administration, Version 1.0.0.0, Culture-neutral,PublicKeyToken=bb3cb8ddab1d86c9
I need to be able to populate a dropdownlist programmatically.
There are some articles out there that explains how, but i am unable to make it works. Please help?
John
This is John again, sorry i didn't make myself clear the first time.
I meant i need to populate infopath 2003 dropdown list programatically. Please help?
I thought this would work, but not
this.thisXDocument.DOM.selectSingleNode( "//my:myFields/my:dropdownList" ).text = "test";
How do you do this from inside a SmartPart? I am just looking for a way to get the current Area from inside a SmartPart. It is difficult to try things and debug when I cannot see any error messages inside the SmartPart (come to thinkof it, I will try a try..catch block and print the output in a literal). Anyway, I think it is probably blowing up on PortalContext.Current.
I'm new in this project, maybe it could help me!
Eugene,
Could you please provide some download url for modified code, because i dont have sdk or anything, and proxy is mandatory for me.
How can you assign a task to a group of people? We would like to be able to email the group when the task is assigned. We tried site groups but it will still only let you choose one person from that group.
Kristijan,
I'm sorry, I don't have a place from which to share the code. You would need to download Jan's code and manually insert my modification.
Note that normally you would just configure the proxy in web.config. This code is only for a case where you want the RSS web part to use a proxy while the rest of the web parts (such as the Content Editor WP) do not.
PingBack from http://dotnet06.wordpress.com/2006/09/14/microsoft-windows-sharepoint/
is there a way to add the smartpart to the definition page like what you said in the article?
Hi I have follow all the instuctions found in the in stallation guide. but i keep getting this error
The thing that is strange is that i have registered it on the site as safe. (this is step 4 )
Please i need help
thanks in advance
if you would like to contact me directly here is my email address wesslayer@hotmail.com
Gotchya...
Thanks, by server is behind dosens of firewalls and proxys so i still having problem but it is network matter... Thanks for your quickly reply.
Is there a way to pass more than 1 parameters from the producer to the consumer?
The site is not working, when you try to open it, the pages display this message: An error has been encountered while processing the page. We have logged the error condition and are working to correct the problem. We apologize for any inconvenience.
this is an excellent Help, i coud implement that, but i dont know how i can put a SPAN roud a cell in a dataGrid, sorry, excuseme, could you said how can i do that
I tested the following fix in .Net framework 1.1 and the KeepAlive property is set to false by default, I think this has to do with web service references not being asynchronous by default in .Net Framework 1.1, this has changed for the .NetFramework 2.0 and KeepAlive is by default set to true, setting it to false like the sample above, should be ok and would make it behave like .Net 1.1
I get this error when trying to use the DropDownList Example.
The "UserControlWebpart" Web Part appears to be causing a problem.
Anyone can offer some help?
Any idea if there are any changes with this process in v3/2007. After following these steps, and changing the 60 to 12, I am still having issues.
Thanks for the great post!
Dan
Well, to clarify, you mention that a copy of WSS_Minimal would be fine for signed assemblies. In my experience it was not for OM access. I made a copy of WSS_Medium and it seemed to work. All I wanted was OM access, which is defined as a permission in that file. I guess I could have added that permission to my custom WSS_Minimal. But the process does work.
Thanks Jan!
I installed Shareponint service in windows 2003 machine as part of BizTalk Server 2006 installation.
I followed the instructions given in BT06 installation guide.
After that sites are there in my virtual server is not working.when i am browsing ,getting "The page cannot be displayed".
What should i do for this?
elad,
I've had the same problem. Having had a look around, think its to do with a SOAP Receive location only being able to handle a pass-through pipeline. However, if someone else can prove different, i'd love to see this, else i'm calling the splitter pipeline inside an orchestration!!!
hi, i'm from brazil and i need all pack with 3 files (leadit.sharepoint.workflow.dll , readme.txt , Sample.xml).
I take de movie class WorkflowInstallation.wmv , and i need 3 files for to do the workflow here...
if you've de link... please give me...
Do you know if this feature works on a Blackberry? If not, does it require a 3rd party software?
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.
--
Sachin
sachinup@gmail.com
404.384.0111
Thanks to you my problem solved
Best site - <a href="http://car-alarm.7u1g56.com">Car Alarm</a>
thanks for mentioning http://nlp.awardspace.co.uk/cartridge-inkjet/
It very interesting http://sosi.awardspace.co.uk/casin/
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?
Thanks a lot Jane this son of smartpart helped me a lot.
I installed the SonOnSmartPart according to the instructions.
I keep getting an error:
I completed step 4 of the instructions.
What else should I check.
I've also cycled IIS.
Ron
Thank you very very very much. Wish you luck and mercy from all the creatures around the world.
i wanted to develop web parts in visual studio 2005.i am using web part manager for that.but when i run application i get error:-"localsql server was not registered"
can anyone help me.
Multiple web parts that gather totals from each department and add them up and display them on to one web part on the main page. Please help.
Thanks for posting this. I needed this info for a meeting tomorrow. Everyone here uses LiveLink (from OpenText) and some folks want to migrate to Sharepoint. I'm not sure 2003 is ready for prime time in the "versioning" department. I really appreciate the blog!
How does one go about changing the source (using Visual Studio, FrontPage, etc.) to see only users of the current subsite?
Thank you for sharing your source and web parts. Please, if you have a moment, tell me how I would change the source code to retrieve users from the current web instead of the root site.
Thank you,
Melissa
works great. Thanks~
Hey, Great work man...
I just copied it and it worked !
I am new to Web parts and wanted to know if I can build them with VS2005 for Sharepoint 2003 or can only VS2003 be used. Thanks. Video link is down but would like to know more.
Roo
Can you debug user controls (breakpoints ..) while they run inside Son Of SmartPart in a SP context?
How would I do that?
jean-francois.picard@cactuscommerce.com
Can I call you. I need to create a sharepoint web part using visual web developer. Do you know how? as a prototype I need to create a digitial clock.
my email address is dkf55@yahoo.com
Thanks ... excellent post
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.
Stanley
I am trying to use <b>"Application Report for file %SourceFileName%"</b> for SMTP adapter. %SourceFileName%" works for file adapters but not for smtp adapter. I tried using TempFile name = System.Convert.ToString(FILE.ReceiveFilename); and then pass it to EmailMessage = "The file name "+ TempFile + "was sucessfully processed.";
I get an error Error 12 illegal use of identifier 'FILE.ReceivedFileName' in an expression. Any sugesstion is much appreciated.
Many thanks
Dragonheart
How can you debug (brakpoints) user controls hosted inside SOSP?
I'm using VS2005 and WSS2.0
JFP
I get the following error when I try to add the web part anywhere except home page.
List does not exist The page you selected contains a list that does not exist. It may have been deleted by another user. Click "Home" at the top of the page to return to your Web site.
I have changed the URL to the site I am trying to add it to.
SPSite site = new SPSite("http://localhost/sites/test");
SPWeb web = site.OpenWeb();
SPList list = web.Lists["linksList"];
ListViewWebPart wp = new ListViewWebPart();
wp.ZoneID = "TopZone";
wp.ListName = list.ID.ToString("B").ToUpper();
wp.ViewGuid = list.Views[0].ID.ToString("B").ToUpper();
SPWebPartCollection coll = web.GetWebPartCollection ("default.aspx", Storage.Shared);
coll.Web.AllowUnsafeUpdates = true;
coll.Add(wp);
AJ
PingBack from http://chaespot.com/web2.0/2006/10/04/westwood-web-20/
Hi!
Like mauro giuliano said "It's great, Jan i've search this trick around the world". My words exactly. Thank you for showing this trick. Regards Viljem, Slovenia.
To joseph: getting current user:
var objNetwork = new ActiveXObject("WScript.network");
var user = objNetwork.UserDomain + "\\" + objNetwork.UserName ;
I want the new vergion of msn....
thank you, this was very helpful
Hi..... Im the team leader of a team developing SharePoint Explorer in VB.NET 2005 might be you can help me..... I have few confusion regarding the Object Model for Developers given in SDK for SharePoint.... so please reply my email addresses are
ahmed_muneeb@hotmail.com
ahmedmuneebch@gmail.com
-------
Team Leader
SharePoint Tarantula
+92-321-6218648
For those of you who got screwed by dropping the web part on to a sub area, remove the web part from the installation (stsadm.exe -deletewppack). You will now be able to get to your page and delete the errant parts.
Take care of it and keep it on the road!
The What's New Web Part suddenly stopped working for me. Not just displaying incorrectly or anything, but a bonafide WSS Web Part error being unable to display.
Where can I get the answers to some of the questions in this blog? Specifically the solution to the "access denied error"
rcanham@interiorsavings.com
I have been completely unable to implement ifilters on WSS 3.0, but have been able to do at least the pdf iFilter on WSS 2.0 on SQL 2005.
Can anyone help?
PingBack from http://www.livejournal.com/users/vlad_major/14268.html
works great ... thanks 4 solving that problem
Can any one please tell me where to get the Leadit.SharePoint.Workflow.dll from, it isn't in the installation package....
Hi my name is Robert. I am using Son of smartpart to display user control with graph and controls. I have applied one dll file in my user control and the website run correctly but when I am applying this user control to sharepoint 2007 site it shows the below error:
"Error: unable to load /UserControls\viewspice.ascx
Details: c:\Inetpub\wwwroot\wss\VirtualDirectories\80\UserControls\viewspice.ascx.cs(17): error CS0246: The type or namespace name 'spice' could not be found (are you missing a using directive or an assembly reference?)" And I have already applied that dll and name space to the project I do not understand why its happening? If anybody help me it will be great.
Thanks all.
I am facing same problem like Robert malvino mentioned above. I created user control with Charts using Dundas charts.
I copied the DUndas DLL and usercontrol dll to the bin folder but WSS cannot load the control.
I think since dundas is a separately licensed software, I am facing this issue. is there a way to make this user control show on sharepoint site?
Iam trying to add built in RSS Viewer Web Part on my sharepoint site but iam not able to get any information from source. i have Provided Annoucement RSS feed URL for the RSS Viewer webpart but not able to display any content from annoucements ..
The error is "The RSS webpart does not support authenticated feeds".
Will Appreciate if any one can brainstrom on this.
KP.Mani
Hello Jan - first a vote of thanks, I put your UserAlerts webpart on one of my virtual servers over a year ago - it worked just fine.
Problem is now, I have more virtual servers and want to add UserAlerts to them. If I run the .msi installer again it tells me that this package is already installed. I thought I might get round this by copying in the .dwp file into the \wpcatalog\ directory for that virtual server. So far so good, when adding a new webpart to the WSS site it recognises it in the virtual gallery, but won't let me add it as it is not trusted as "safe".
Can you give me some pointers please. Thanks in advance.
Great Post, but have you heard of the same issue occuring in non-Share Point applications? I've recently updated a VS 2003 app to VS 2005, and I get the same error everytime I post. I tried removing the axd extension from my IIS configuration, but it still occurs. Any advice?
Peter
I've installed the MSI and restarted IIS but can't for the life of me work out how to use the web part. Any chance of a quick overview?
Van phong du lich, cong ty du lich, trung tam lu hanh quoc te A Chau: du lich nuoc ngoai, du lich Viet Nam, du lich Thai Lan, du lich Trung Quoc, Du lich Singapore, du lich Malaixia
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?
Thank you for this posting. It was very helpful
I've managed to get the Alerts Webpart working, but only within a Team Site.
How do I get the webpart working within the main portal?
Do you think anyone reads all this?
Hi All...... I need help so please do reply if any body knows the solution..... Actually I am trying to make an explorer of SharePoint Services 2.0 Using VB.NET 2005... the problem which I am facing is when i try to get all list items of selected list e.g. Announcements using code it throws an exception "OUT OF INDEX"... it is because of the edit field of sharepoint list which is present in every list.... i first populate the field of the selected list then i try to get the list items..... so please help me out... its really urgent...
Please reply on ahmedmuneebch@gmail.com or ahmed_muneeb@hotmail.com
SharePoint Explorer
Hello all
If you have a problem while you are removing alerts (it says no alert seleted whereas you seleted one),
Then you have to set all EnableViewState to TRUE in UserAlert.cs
Good job Jan !
I've just installed the Web Parts and they are great ! The Breadcrumbs and Navigation items should have been in the Sharepoint Services distribution to start with, because they are essential to a meaningful implementations. I am happy you jumped in and provided them.
For the people that have trouble installing them : I bought a book ('Sharepoint Services Inside Out') that helped me fight through this lake of mud. I think that when you want to go to this extent customizing Sharepoint Services such an investment might be a good idea.
Thanks...!
Reseting the system time of the server back worked for me. The server first started crunching like hell as if competing against Kasparov but eventually opened the required site. Then just reset the time to current time and all seems well...at least 15 minutes ago (you never know..)
Sorry guys, my post just about resetting the system time doesnt work. It did for half an hour, and now I have the same problem again. All sites except central administration give http 404 (Not Found). First occurance of "trial period expired" was after creating MySite and clicking in the welcome page to get back..and all was gone.
Hi am just starting with Infopath 2007.
Everything went fine with this example until the point where the datasource has to be replaced:
thisXDocument.DataObjects["DummyUsers"].DOM.loadXML(
thisXDocument.DataObjects["Users"].DOM.xml);
Do you know, how I can do this with Infopath 2007?
Andrea
I've been working to get this running, and now I finally did. here are some stuff I had luck with, and a few questions for problems I still have.
The new columns (status, comments) must be added by you to the document library.
If you want to extract the files , you can run the command -
msiexec -a <leadit-msi-file>
which will create network install, but in the resulting directory you get all the files from the install and do the manual install steps from the readme.
To test if the XML file is getting run or not, just put some random text at the top, and then try to run the event. If it was run, you'll see an error in your application event log about an invalid XML file.
----
I'm having some trouble copying docs between libs. It just keeps telling me my "In Review" folder does not exist.
Is there any more explicit documenation for the actions and what the parameter fields are supposed to be? I can tell mostly from the config file, but is there any other examples not in the default config file?
Thanks. Great looking workflow tool, and free to boot. Too bad it won't likely be updated with MOSS 2007 supposed to include many of these features out of the box.
Installation problem: Are there any experiences with an installation on a 64-Bit Machine (Windows Server 2003, SharePoint with SP2 running under .NET 2.0, web.config correctly modified)?
The SonOfSmartPart.dll appears in the GAC, but all SharePoint-Sites return the Error "File or assembly name SonOfSmartPart or one of its dependencies was not found."
does smartpart compatable with WSS V3?
To all those having issues with "unsafe" web parts, I also ran into this issue. The few key points that made it work for me:
1. Make sure version numbers are consistent between web.config and the .dwp file for that assembly.
2. Make sure public key is the same between web.config and the .dwp file for that assembly. Further, make sure it's the right public key. =]
3. RESET YOUR IIS AFTER EDITING WEB.CONFIG.
For some reason, the changes didn't propagate until I completed that last step; after that, the web part was "safe" as could be.
I tried to inject the navigation webpart into a master page (not inside a web part zone), and although it displays properly on the page and in split mode of Sharepoint Designer, the web interface Site Settings--Master Page tells me that my "system master page" is not valid.
So this means it can't be correctly inherited by subsites, nor can I attach this master page to content pages so that the navigation webpart is consistent across all my sites.
Any idea as to what is making my page invalid?
is it possible that a function in VB.net return more than one value?
Anyone knows the solution here?????????
How can I expose properties from the user control to the sonofsmartpart properties panel ?
I have the same problem ("The RSS webpart does not support authenticated feeds" error) since I have updated to Beta 2 Technical Release. It was working fine before TR.
Any idea what could cause this problem?
PingBack from http://www.livejournal.com/users/adnani/5002.html
Same here "The RSS webpart does not support authenticated feeds"
Any solutions?
Tnx in advance
I have one problem. I have created a custom xml disassembler component. Say my xml are similar to the xml you have shown.
But in my case the incoming xml wont have namespace associated with it. I tried without the namespace, the disassembler doesnt work. It is giving me the same xml in the output.
Can't xml Disassembler work without the namespace????
Please reply back, as i desperatly need a solution for this.
I found solution on "our" problem!
http://blogs.msdn.com/markarend/archive/2006/10/03/RSS-Viewer-web-part-and-authenticated-feeds.aspx
Cheers!
Very useful post. Thanks!
When I create the envelope schema to match the data coming in from the SQL adapter everything works great as long as the targetnamespace for the SQLService.xsd (autogenerated) and the Envelope schema remain the exactly the same. If the namespace for the envelope is say "AccountEnvelope" and the SQL Service schema namespace is "AccountResultSet" the disassembler throws an "Unspecified Error". Now, I have no problem with leaving the namespaces the same for both documents, but, this only works when I test the envelope using the xmldasm.exe utility and where I specify the document using the -ds directive. If I create a pipeline, specify the envelope schema, and specify the document schema, I get an error saying that BizTalk doesn't know which document to take, the SQL Service one, or the Envelope schema. Since both documents have the same structure, and the same namespace this is a problem. Please advise me as how I can solve this.
Nick
I get a "Missing component Detected" ....Microsoft Windows Workflow Designer.... I installed it and de-installed it and again. It still comes up with the same error. I already upgraded to B2TR
Wow, it has been a long time since my last blog post! For those of you wondering: your browser is not
Yes, it was a great week! Thanks for all the knowlegde you train us!
Until a next time!
Best regards!
Oh finny, i read your post and i seat just near you :D
So a small world ....
>>>I post the same kind of post but in french :D
http://blogs.developpeur.org/themit/archive/2006/11/06/teched-2006-here-we-are.aspx
I would like to map a column of a list (different from the ones marked with an asterisk) to an RSS tag... someone has an idea on how this can be done ?
Is this message little enough to be one of... lost idea
problems:
1. only strings can be passed
2. only 1 parameter supported
Este post do Jan Tielens fala sobre as Visual Studio 2005 Extensions for WSS v3 que acabaram de ser ser
Joris Poelmans is excited about the Visual Studio 2005 Extensions for Windows Sharepoint Services , which
If I change the value in the useralert.cs how do I repackage and install.
We did the same for EditForm.aspx page. Its showing all the controls and updating the page successfully. But only problem is when we try to edit using "Edit Properties", its going to root site and giving error message.
But when we give the correct url on the browser, then its working fine...
Please feel free if the question is not clear...
Please help me out from this problem...
Manish was right. A few years later and this blog post is still helping.
Thanks Jan. It really did work.
And besides, you can do you're own code inside of the CheckValidationResult method, instead of simply returning 'True'.
did you notice that you cant add web parts to a page with the editform or the newform? I write about it in my blog, including a workaround.
However, I wonder if the same problem exists with the changed forms. can you try?
How can we capture the user name Entered in the box using code/Javascirpt in the AclInv.aspx page?
I have to connect People and Group list to another list, so that whenever a new user added to the People and Group, that user should automatically add to another list.
After promoting the infopath user property to Sharepoint site , Is it possible to filter a view using [Me] in WSS 3.0 or MOSS 2007?
release candidate 1 in the gotdotnet workspace does not contain the dll.
The posted code works great, my question is about selecting the ClientCertificate that should be put into the request. I have a windows application that uses many Web Services that use SSL. Is there a way i can make the Internet Explorer Certificate selection box popup so the user can choose the certificate they want to use? I wrote my own dialog box which shows all the certificates in the user's Personal store, and they can choose which one to use from that. The problem with my own dialog box is that, unlike IE, I don't know how to filter out which certificates are not valid based on the certificate the server is using. So my dialog box might have 4 Certificates listed in it, but only 2 will work for the server. I don't know what logic IE uses to eliminate the others. I would have thought that the server Cert and the client cert would have to have identical CA's but that does not appear to be the case. So I either need the logic that should be used, or more preferably, i'd like to show the dialog box that IE shows so that they can select their cert from there. can you help?
Also Ometa has a very advanced Rollup Webpart. They have an online demo on www.ometa.net
Thank for your post, it really helped me.
Do you know if its possible to change the body of the email sent by an alert?
miguel.bgomes@gmail.com
Is there any way to change the email that alert sends? I would like to know if it is possible to change the body of that email and how it's done?
Hi Jan, great blogging.
I've had a crack at this previously and it seems to work fine for lists, however I've been running into an issue when I attempt to create a custom edit form for a document library.
After I create the editform and finish editing it, I then right click on the document library and attempt to assign my new edit form as the default edit form to use via the properties.
1. Right click the root document library folder and select properties
2. Go to the 'Supporting Files' tab
3. Click the browse button next to the 'Edit document properties form:' text box and browse to my newly created 'Edit' form.
4. Apply the change.
When I try to apply the change however it comes with the error: "The page you have selected does not contain a reference to the correct SharePoint list. Please select another page."
I have successfully created a number of new edit form's for other list types and assigned them as the default edit/view forms via the above method, but always get the above error when attempting it for document libraries. Has anyone found the same with document libraries?
Pete
For alerts i think Microsoft.SharePoint.Portal.Alerts.Alert class will be used.
Code will be something like that:
SPUser user = site.RootWeb.Users[ddlUser.SelectedItem.Value];
SPList list = listCollection[new Guid(ddlList.SelectedItem.Value)];
System.Guid guid = System.Guid.NewGuid();
UserProfile tempUserProfile = (new UserProfileManager()).GetUserProfile(user.LoginName);
Alert alert = tempUserProfile.Alerts.CreateAlert(new ListAlertType());
alert.ObjectID = guid.ToString();
alert.Name = "Alert: " + list.Title;
alert.ObjectDisplayName = list.Title;
alert.ObjectUrl = "url_of_the_list";
alert.ConditionText = "items are discovered or items are changed";
alert.Query =
"( "+
"("+
"(\"urn:schemas-microsoft-com:sharepoint:portal:objectid\" = '{"+guid.ToString()+"}') AND (\"DAV:contentclass\" LIKE 'STS[_]List%') "+
"OR "+
"(\"urn:schemas-microsoft-com:office:office#ows_ListID\" = '{"+guid.ToString()+"}') AND (\"DAV:contentclass\" LIKE 'STS[_]ListItem%')"+
") "+
"AND "+
"((\"PKMEvent\"='ADD') OR (\"PKMEvent\"='MODIFY'))"+
")";
alert.DeliveryChannels.Add(new PortalChannelSettings());
alert.DeliveryChannels.Add(new EmailChannelSettings(user.Email, Microsoft.SharePoint.Portal.Alerts.EmailChannel.Frequency.Immediate));
alert.Commit();
alert.Activate ();
When i followed the above steps, it gave me error
"Type 'Microsoft.SharePoint.SPFieldUrlValue' in Assembly 'Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' is not marked as serializable. "
I am using a hyperlink column inside my list.
Right on dude. This saved me some time...
Thanks for Son of SmartPart! Great component!
Now I also want to know how to expose properties
from the user control to the sonofsmartpart properties panel.
I want to use properties such as DB connection string etc
or else my user control won't do much.
Or I could use a SharePoint list to store the necessary
properties, but I really don't think that is the right way to do that.
Thanks a lot in advance
Javier
when sharepoint 2007 will be avlb for download ?
I am getting the problem when i add follwing node in web.config file
<system.net>
<defaultProxy>
<proxy
usesystemdefault = "false"
proxyaddress="https://localhost:9000"
bypassonlocal="false"
/>
</defaultProxy>
</system.net>
after running the appliction i get follwing error
The ServicePointManager does not support proxies of https scheme.
plz help me
Jan - it's cogito ergo sum, not codito ergo sum
I'm attempting to use your control. Forgive me, but I am just learning SharePoint. I followed your instructions on adding it to the SafeControls section, but I still get "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." Any thoughts? Also, what is the "GAC"? As such, I don't know where I'm supposed to put the DLL. Any help would be appreciated.
Hi, looking for software, any updated links?
Aj
Great article. It brought me a step closer to solving my problem but unfortunately not close enough.
I managed to import the list I want from the page to the subpage in the data source library. However, clicking and dragging causes an unpleasant "server returned a non-specific error".
where does the madness end? I've been trying to use roll-ups and god knows what else for a functionality that I presumed should be intrinsic to sharepoint. When we create a list i thought the subpages should be able to use the data in it as well :(
PingBack from http://techtalkpt.wordpress.com/2006/11/16/windows-sharepoint-services-30-ready-to-download/
Jan
Any idea of when MOSS2007 will be ready and insight on pricing? I am new to SharePoint and am trying to weigh my options.
Luke
Anyone as a clue about upgrading from a B2TR to a 3.0 final?
Didn't see any papers about it :/
Please check this URL for Trial product keys and install instructions:
http://blogs.msdn.com/sharepoint/archive/2006/11/16/announcing-the-rtw-of-wss-and-office-sharepoint-server-2007-standard-and-enterprise-evaluation.aspx
Pascal, try this:
http://technet2.microsoft.com/Office/en-us/library/0af1c7a4-a054-40c3-b495-71371bed4af81033.mspx?mfr=true
Nice tool, I am trying to modify it to allow target = blank but this is the first web part changes for me and I have vs2005 and can't don't know how to get it to compile under .net 1.1 for ms portal server 2003. Any ideas?
Am Ravikumar. i want to know about Microsoft Grid Computing .
Plz send me any Notes to me My Id is arvapalliravi@gmail.com.
I am getting the job on grid computing. And i want know that microsoft purchased grid computing r not ?
Thanks & Regards,
Ravikumar.A
I have been digging into this library and find it quite useful. However, I have seen one problem that I am not sure how to get around. Everything works fine util you want to reference another class library project in the SharePoint project. When the solution is generated, it ignores the referenced project and will not include the assemblies from the referenced project within the SharePoint project. I've tried it with the web part project and the empty project with the same results. The problem seems to stem back to the SPDevTools.dll that is being used to generate the solution files and deploy the solution. If I reference and external assembly or resource, I would expect it to be included in the manifest.xml file that is created and included in the "wsp" file. Any suggestions or comments?
Can someone please elaborate on this statement...
----------------------
Where is this file located?
Jan, all of your great stuff is provided without any copyright notice or statement of what rights we might have in the software. Is your intention to make it public domain? Where we can do whatever we want with it, use, modify, distribute, etc, no concerns if people do so commercially or not?
We would like to use this internally to our company, a fairly large F500, but our legal guys like to have some explicit statements if possible. All software is automatically copyrighted in US so its not a good thing to just assume we have any rights
Any insight would be appreciated
set your Script in JScript Language, and send that Script for me,plz.
my e-mail : armin.ghasemi@gmail.com
Do you know anything about the Microsoft sponsored tech show to be held in Lisbon, Portugal Feb 2007?. We were invited to attend and I can't really find anything about it. Thanks
Rob
hello , i'm Youssef Bani i live in marruecos in smal village it's name JDAID in way of merzouga taous zagoura 20 kms from taous ,i'm organisation of bivouacs , campany and travels in morocco exactlly in desert , because there are lot of places in desert out way , lot of tourists they past just in ways but there are lot places don't see it for example gravurs ( writing of old people in rocks )and oasis of palms and nomads's life : how they are facing thier hard life i try to help them , bat we i don't have a lot ot possebility to do this so i demande for all can help nomads in desert just contact me i we help them togather , and descover desert , traditions, music berberes, sleaping in tents , travels by camels, by 4x4....... so if you can help nomads in desert or wat to spend a good travels in desert, you want to descover it ,........ can you Contact me: 0021268370986 adresse: bani youssef jdaid - tous - rissani maroc :deserto_smida@yahoo.fr G.P.S.:( N : 30 50 903 , W:004 09 747 ) more informations i hope to answer contact me . youssef bani
Please after following this procedure it convert nicely
In the form I have a lookup field and I want to lookup no at th full table but at the filtered part.
How can I do that ?
Max
InfoJet Service, a product like InfoPath Form Services!
http://www.infojetsoft.com
The download link has moved and it's now at http://msdn.microsoft.com/XML/XMLDownloads/default.aspx
EXCELLENT ARTICLE.
When I followed the instructions to create the dataformwebpart, my attach file button no longer worked.
The error that I received was "This form was customized not working with attachement."
I am wondering if you have ran into the same problem?
G'night
Hi Jan!
I have the same problem as Pete: It works well with list, but not with document libraries.
After editing my own "Editform2.aspx" and when I'm trying to change the Form that the document library sholud use I get the following error:
"The page you have selected does not contain a reference to the correct SharePoint list. Please select another page."
Has anyone idea how to deply this issue with document libraries?
/Willy
How do you add context menus programmatically?
I created the custom edit form as per requirement , but when i click "new" in allitems.aspx it gives error "Invalid page :)" ..Am not sure why is this happening.
rags
> scott
You find this file when you download the full source code
> George Schneider
You must Visual Studio to recompile, recreate a cab file and deploy it in your portal.
> Miguel
In the folder SharePoint Portal Server\DATA\Alerts\1036
you have XSL files that you can modify if you want to change email appereance...
This is an excellent tip. In Novemebr 2006 the Microsoft documentation on this subject is as obtuse as ever, and this solved my problem. Thanks a lot!
What specific information can be searched for in SharePoint Services ver 2? Can all fields in the "properties" of a Word document be searched for? Does the Adobe PDF ifilter allow the searching of file properties?
Me too getting the same error " The Form was customized not working with attachment"
If you haven't tried the new Visual Studio extensions for Windows SharePoint Services v3.0 November CTP, you really owe it to yourself to take a look as soon as you can. It just might revolutionize the way you approach SharePoint solution development. Much of the initial buzz has focused on the Solution Generator, which is a very nice idea. But there is a lot more going on under the hood. In this post, we'll take a peek inside the Team Site Definition template.
Flickr is cool - but our office has it blocked - so we cannot see any of the pictures in your blog.
I am trying to use the Son of SmartPart and deploy it in WSS 3.0. However, when I have deployed my content in WSS 3.0 by importing the DWP using the Site Actions menu rather than creating a WPCatalog directory in the root of the Sharepoint folder, I get an error message when attempting to execute my web part with a message of "File Not Found". I have looked for any solution to this but have not found any as of yet.
Do you know why this might be occurring?
Samir Vaidya
ssvaidya@mail2architect.com
I have just managed to get the UC controls up and running on Sharepoint 2007 with great success! However if I try and use any of the Sharepoint 12 features I get a mismatch. When will you be releasing a version of the dll that uses 2007?
Anyone get this to work on WSS 3.0? It quit working for me once I upgraded.
When I try to add an alert to all users, it adds the account I'm logged in on multiple times instead.
I'd love to hear if anyone has any success getting this working with version 3.0 (or sharepoint 2007). I don't know how long I can go without this function!
I wanted to note that I just ran into this outside the context of SharePoint. Using Fiddler and some troubleshooting, I found another thing that can cause this that I haven't seen anyone else report yet.
I had defined a wildcard application map to:
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll
In order to force everything through my custom authentication scheme (i.e. you couldn't browse directly to a resource without providing authentication first). It was a cheap way to that goal--but had the undesired side effect that you are discussing here. My solution was to remove the wildcard application mapping and seek alternatives. Anyway, I wanted to note it in case someone else runs across this in the same way.
Dear Sir,
It is a very nice idea and I hope it is very useful.
Yours faithfully, SeyedMohammadHossein Mayboudi
PingBack from http://arnabsamanta.wordpress.com/2006/12/04/important-blogs/
Hello Jan:
I have created a dynamic class out of an xml file.
Is there a way to be able to access properties of the generated class as:
tempClassType.Property1
tempClassType.Property2
Got my point? I want the user to be able to access the properties that I have added to the class without having to use GetProperty method
Is there a way?
I have followed the above URL for RSS feed in MOSS B2TR, As i save the settings done in "Application Management" -> "Authentication provider" my Portal site is completed getting distorted and showing the Following error "Service Unavailable"
Then i have revert back all the changes then my site was working fine, even i have checked the security identity of my application pool as "Network security" then also it is creating a problem.
Kindly help me out,
Good to see the return of SmartPart! We found the previous version invaluable for quickly developing UI-intensive web parts. The deployment info for SmartPart was good, but I was wondering if you have thoughts for deploying the user controls that get hosted by SmartPart? There doesn't appear to be a built-in mechanism for deploying user controls, and we're finding the solution\feature framework to be surprisingly un-extensible -- there doesn't seem to be a solution event receiver class like there is for feature, for example. It may just be the lack of documentation at this point, but we also can't find if there's any way to get to the files in the solution package itself from the object model.
This control seems to be very useful. Will source code be posted or available?
Thanks for elaborating, MisterGUI.
If I can get this recompiled (I'm an admin, not a developer), is it safe to simply install the updated version over the top of the original, or should I uninstall the original first? The WSS site is now in production, so I don't want to screw up anything.
BTW, is there an updated version that fixes the "No alert selected" removal bug already available somewhere?
Scott
Well I was waiting for smart part!! Its works as it promised.
Great work Jan! Keep it up!
We have created a user control with Atlas, and we successfull added it using smart part. But the problem is some part of the Atals are not working properly... It will be great full if u get some way to work it out..
In Atlas control if we remove "EnablePartialRendering='True' " its works fine, the problem after removing this is "Post back is happening"... which makes the usercontrol work slower
how do you create a user account in sharepoint 2007
I'm a developper, not an admin ;-)
I think you can overwrite the old version but i'm not sure.
It is possible (at least that's what i did) to compile a new dll and overwrite the old one in the bin folder for example
C:\Inetpub\wwwXXX\bin
on your server.
I'm sure it worked on my server but i don't know your "configuration" and especially i don't know if you have this folder...
I hope i was clear ! :)
I have been trying to get my existing User Controls that were originally developed under Son of SmartPart and I have tried migrating them to Return of SmartPart, however, I have had no success since attempting to do this. I have been using the Microsoft Enterprise Library in the past with strong naming to call my data access methods, but none of my SmartParts seems to be working any longer. Is there a way I can trace this to find out what suddenly stopped working by migrating them to WSS 2007? I have checked the Event Logs and nothing is being reported there which should indicate that there are no security permission issues or compilation errors.
Are there any other ideas on how to resolve this?
Thank You.
did you check out my utility kit?
http://spstips.blogspot.com/2006/11/announcing-sharepoint-tips-utility-pack.html
Well the article link does not work, the ipattern domain is parked.
How can we expose properties (that are also personalizeable) with Return of SmartPart? I tried the above but didnt work. Thanks.
I'd like to use a smart part to load an object. Can your smart part do this? The specific object is the OWC version 11. With ordinary web parts, i'd load the object like so response.write("<object clsid... however that object is disabled in sharepoint. I'm looking for a solution to this.
A better way (in my opinion) of doing this is by using the ListFieldIterator webcontrol (found in Microsoft.SharePoint.WebControls). Simply remove the ListFormWebPart on the page you want to customize (say EditForm.Aspx). Set the ControlMode property to Edit,Display or New, and it will render the fields accordingly.
You can also exclude certain fields, by setting the ExcludeFields property to #FIELDNAME1;#FIELDNAME2; ...
Took me a quite some time to figure this out (I even tried writing my own Iterator using Reflection) so I thought it might be worth sharing.
Hi. Do you have any idea why inserting a webpart in a aspx page in the _layouts folder gives an error?
Jan when I try to duplicate this I get "COM object with CLSID {BDEADEBD-C265-11D0-BCED-00A0C90AB50F} is either not valid or not registered". Am I missing something?
PingBack from http://gaba.lenard.hu/2006/03/16/porgessuk-fel-a-sharepointot-sql-server-2005-tel/
Can you please tell me where can i find the resource for hosting an usercontrol on sharepoint using your control which has a code behind file.
HI Jan, I need to create alerts on due date in task list. Could you please help me out to chieve this.
Sangeeta.
I installed the msi to a specific webste: http://test.company.com (ex). Afterwards I go to SharePoint site to add the web part and I get the following 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."
Can someone help me?
gdurish@hotmail.com
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.
Check out the SharePoint Manager 2007
http://www.sharepointblogs.com/keutmann/default.aspx
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
Why the members webpart shows several users that are online, and do have Office 2003, as offline? I have a wss site with a members webpart and several users that are showing online on Communicator, appears as offline in the webpart.
Hi. I have a series of actions (send mail, copy, set 3 different values) to take place when an event triggered.
sometimes the actions didn't take place. and gives impersonation error.
How should i solve this? appreciate any help.
PingBack from http://www.wehuberconsultingllc.com/wordpress/?p=103
Hi, everybody...
I am using the trial versions of SharePoint server and SharePoint Designer.
I have a custom list with 3 fields (two text, one date): Title (required), Customer (required) and EntryDate (optional).
Using the custom edit form, I confront a strange behavior. Whenever I try to edit a text field, if the date field is not blank, I get the following error:
"The data source control failed to execute the update command".
If the date field is blank, no problem occurs. If I edit a text field and the date field is not blank, in order to avoid the error I have to edit the date field with a different value. Of course, this is not acceptable.
I get the same error as others.
"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."
Why dont you post a solution.
Why are you doing the return of smartpart with the son of smart part doesnt work?
PingBack from http://www.irishdeveloper.com/uncategorized/get-list-of-site-users-in-infopath-form/
I have a user control that references Microsoft.Practices.EnterpriseLibrary.Data.dll, which is installed in the GAC, on the machine that is hosting Sharepoint 2007. The user control works from asp.net, but I get an error when I try to display this control using the new SmartPart control. The error message is as follows:
Error: unable to load ~\/UserControls\WebUserControl3.ascx
Details: c:\Inetpub\wwwroot\wss\VirtualDirectories\8001\usercontrols\WebUserControl3.ascx(9): error CS0234: The type or namespace name 'Practices' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
Any information you can provide will be greatly appricated.
Dawn
Another article that demonstrates the power of SmartPart !
Can 2 smart parts "talk" to each other on a single page?
Hy,
How do I use a Site column on the root when I created my site column in a site under the root.
The source of the site column isn't the same. It seems that we can't only use the site column under the site we created it.
I found the solution. you have to force the upgrade of Sharepoint to 2.0. I found it on another site. It would still be helpful to post complete step by step instructions to lead us that don't know what they are doing.
I was just hired by a client who is experiencing authentication problems on their WSS sites (subsites only). There are users who have read access to a parent site and read access to a subsite. They can access the parent site properly but when they try to access subsite (with Lead-It Alert webpart) they keep getting prompted for a login. If I make the user an Admin for the subsite they don't get prompted. If I remove the Lead-It part and then put them back to Reader they can access the subsite properly. Does lead-it need elevated permissions to work. I can see how it needs permission to add an alert but just to paint the page it should not require elevated privledges, should it?
Bill_Brace@hotmail.com
I use the Partial Class mechanism of VB to keep the changes to my web reference in separate file (so if I rebuild the web reference, the changes don't get wiped out).
The web reference name is NwsNoaa in this example.
'-------------------------------------
Imports System.Net
Imports System.Web.Services.Protocols
Namespace NwsNoaa
<System.ComponentModel.ToolboxItem(False)> _
Partial Public Class ndfdXML
Inherits SoapHttpClientProtocol
Protected Overrides Function GetWebRequest(ByVal uri As System.Uri) As System.Net.WebRequest
Dim w As HttpWebRequest = DirectCast(MyBase.GetWebRequest(uri), HttpWebRequest)
w.ProtocolVersion = HttpVersion.Version10
w.KeepAlive = False
End Class
End Namespace
Tanks
Really grate
Only one thing
Does it work on AD GROUPS?
Christmas Day falls on December 25. It is preceded by Christmas Eve on December 24, and in some countries is followed by Boxing Day on December 26. Some Eastern Orthodox Churches celebrate Christmas on January 7, which corresponds to December 25 on the Julian calendar. December 25 as a birthdate for Jesus is merely traditional, and is not thought to be his actual date of birth. Regards
yea could u plz send me an invite for live messenger.. my email is lilmanloco3@hotmail.com thanx buddy
PingBack from http://www.livejournal.com/users/anni_lj/57836.html
i am trying to get a simple rss viewer on my web page. but i get an error:
"Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Windows SharePoint Services-compatible HTML editor such as Microsoft Office SharePoint Designer. If the problem persists, contact your Web server administrator."
surya
I've had these webparts up and working on my portals and they are fantastic. I recently did a server move and was unable to get the webparts to move with the portal. I figured I'd just re-install it and now I can't do that either. The problem is that even though the installer asks permission to write to the GAC nothing is ever put in it? I've logged on as a Domain and Local admin. Has anyone else run into this issue? I know with the 1.1.1.0 the .dll was right there in the packaging so I could add it manually, why is the 1.1.2.0 dll not in the package so I can put it in manually or is it somewhere and I just missed it. Any help would be great feel free to e-mail me: chucky303@msn.com. Thanks
Justin
Would something like this be available for MOSS 2007?
I can't find the web.config files in inetpub\wwwroot directory.
What should I do?? Please advise me. Thanks for your help in advance!!!
I'm trying to save changes from my local version in SharePoint Designer back to the server and I'm getting the same error message as Surya:
How did you install this under Vista? Is it supported? Does it run when Vista starts up?
Jeff Lynch
I don't get it, what idiot designed the wss object model? Return true or throw an exception, c'mon ...
I want to display all fields but only edit some fields and so I went to set the 'control mode' to 'display' for some fields and I found that this only works for text field but not for dropdown field or checkbox field. Any solutions?
i tried everthing u guys have posted above but nothing works for me.
i m working on .net 1.1 SP1. please help
PingBack from http://blog.bonathan.co.uk/?p=10
I have some difficulties using SPS Views with User Controls and SmartPart.
View returns only all items when using User Controls. When i execute exactly same codes in custom WebPart, it works fine..
Need help for resolving that!
Thanks heaps, - just what I was looking for :)
I have tried this six or seven times now and all seems to work fine until I try connect the webparts, the connection option on the webpart is greyed out.
I am using MOSS 2007 and VS 2005 and "son of smart part"
P.S I think your blog is great!
Simon
hoe cud i remove the menu (sort and filter) from the column headings?
This webpart is SO worth the extra effort. I tried Tim Heuers and yours is so much better.
Some of the reasons I find this more useful:
It automatically shows all of the "Details" of an entry in the feed. This is great for weather updates being posted on your front page.
Also, it gives more options with titles and appearance customization.
I really love this web part!
Keep on coding!
Any idea how to tell if the document was uploaded or created via a template? I want to disallow uploading of documents to my library.
Instructions on installing for newbs:
GACutil.exe to install the .DLL into your GAC.
To do this do the following:
Start > Run ... > cmd
In the command window type:
cd C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 (version may vary depending on your system)
Type:
gacutil /i <directory to the dll file from the package> (I extracted it in c:\temp)
Copy your .dwp file to C:\inetpub\wwwroot\wpcatalog (if that is where your site is located on the C:\ drive)
Edit the C:\Inetpub\wwwroot\web.config file as instructed above (the SafeControls part)
Import the DWP file (from the wpcatalog directory) into SPS.
PingBack from http://www.decatec.it/blogs/PermaLink,guid,dfa9c82e-1bfa-4f1a-a571-7aba4042b37b.aspx
Disturbed,
Could you please explain in a little more detail how to use the ListFieldIterator webcontrol? I don't quite understand how you implement that.
Also, did using the ListFieldIterator solve the error of "The Form was customized not working with attachment"?
This article (and everything else on this blog) is brilliant - no where else on the web have I seen demonstrations of how to make things work displayed so clearly and simply.
Thanks for saving me a lot of hassle.
i realise that the son of smart requires us to copy our *.ascx and also our source in this case is *.ascx.cs file to the UserControls folder. I am wondering is it possible for me to upload my ascx to the usercontrols and compile my code to DLL n stored in the bin folder instead like the old smart part? i dont want any1 to view my source code.
Is there any information on integrating SmartPart with the Office Sharepoint Desginer? We are using this to edit our pages, and SmartPart doesn't seem to work too well with it.
Jan -
I got this much figured out after a little poking around. My problem is the email infrastructure - what goes into the underpinnings of sending email? Can you refer me to an article or a book? Basically, I have a MOSS 2007 installation on a server, and in order to create users I created user names for that server (we don't run Active DIrectory - is that required?). So when I edit the user, there's no email address associated, and no way I have found to add one - whether I'm editing the user record inside SharePoint, or on the server. I've found a couple of internet posts that talk about ActiveDir and Exchange2007, but I've pointed the outgoing email at our SMTP server (and THAT requires authentication, which SP doesn't seem to give me a way to provide).
Thanks for any help you might be willing to share. I realize you're not a public support site, but I thought I'd ask - if you could even point me toward an active user forum, I'd appreciate it very much. I'll check back to see if you are able to respond.
Hi Jan. In relation to this feature, I have some findings as well. Try to look at the default "newsarchive.aspx" page found in the Pages lib of a standard News site. What does it do? Close to nothing. No filters or anything are set in the Content Query WPs on this page that would give a view of expired news pages. A bit strange...
Also, what happens when an item reaches its "Scheduling End Date" - the page is set back to "Draft" state. Important to be aware of, if you consider that at least all Approvers will always see Draft pages. So, if you look at the default Content Query WP displaying news pages, the user with Approve rights will see published news item mixed in with all drafts, including news items that are drafts because they have expired. You can fix this by adding a filter to the Content Query WP, saying "Approval Status != Draft". OK, so why don't you just add another filter on "Scheduling Start Date" and "Scheduling End Date" in the Content Query WP? Well, I've tried, but have been unable to set this up. The query simply does not return any items, once I use these two fields to filter on.
So for now, I'm considering a solution that ignores the built-in "Item Scheduling" for my news/news archive. Simply add two date fields of your own, and use those for filtering out expired items into a display of a news archive. These two new date fields should also be avalible for a custom Archival workflow, so can actually archive news pages once they expire. (I've not verified this yet).
If anybody has other findings/ideas on this, I would love to hear about it!
PingBack from http://www.decatec.it/blogs/2007/01/10/Sharepoint+Performance+Benchmarking+Standards.aspx
Hi, I have too this problem "The page you have selected does not contain a reference to the correct SharePoint list. Please select another page"
Any solution?
I suspect you missed a NOT here ...
"which I could answer straight away (this happens more than I'd like it to happen)
I would certainly be very happy if I could answer questions right away most of the time.
Has this webpart been upgraded for use on WSS 3.0 sites yet?
What I don't get is that the alerts interface implies that you can add multiple users to the alert, but only adds the logged on user. Very frustrating.
How does this handle authentication issues. The built-in rss feed web part does not even handle its own rss feeds if they are passed through an https connection.
Does this handle authenticated rss?
Very good project! <a href= http://ultram.newox.info/day-next-ultram.html >day next ultram</a> <a href= http://ultram.newox.info/ultram-effects.html >ultram effects</a> <a href= http://ultram.newox.info/ultram-tramadol-hci-tablet.html >ultram tramadol hci tablet</a> <a href= http://ultram.newox.info/is-ultram-addictive.html >is ultram addictive</a> <a href= http://ultram.newox.info/ultram-and-fibromyalgia.html >ultram and fibromyalgia</a> <a href= http://ultram.newox.info/ultram-pill.html >ultram pill</a> <a href= http://ultram.newox.info/ultram-and-depression.html >ultram and depression</a> <a href= http://ultram.newox.info/ultram-price.html >ultram price</a> <a href= http://phentermine.newox.info/buy-phentermine.html >buy phentermine</a> <a href= http://phentermine.newox.info/phentermine-online.html >phentermine online</a> <a href= http://phentermine.newox.info/cheap-phentermine.html >cheap phentermine</a> <a href= http://phentermine.newox.info/buy-phentermine-online.html >buy phentermine online</a> <a href= http://phentermine.newox.info/order-phentermine.html >order phentermine</a> <a href= http://phentermine.newox.info/phentermine-diet-pill.html >phentermine diet pill</a> <a href= http://phentermine.newox.info/phentermine-prescription.html >phentermine prescription</a> <a href= http://phentermine.newox.info/phentermine-adipex.html >phentermine adipex</a> <a href= http://phentermine.newox.info/phentermine-side-effects.html >phentermine side effects</a> <a href= http://phentermine.newox.info/cheapest-phentermine.html >cheapest phentermine</a> <a href= http://phentermine.newox.info/order-phentermine-online.html >order phentermine online</a> <a href= http://phentermine.newox.info/phentermine-no-prescription.html >phentermine no prescription</a> <a href= http://phentermine.newox.info/herbal-phentermine.html >herbal phentermine</a> <a href= http://phentermine.newox.info/discount-phentermine.html >discount phentermine</a> <a href= http://phentermine.newox.info/purchase-phentermine.html >purchase phentermine</a> <a href= http://phentermine.newox.info/phentermine-hcl.html >phentermine hcl</a> <a href= http://phentermine.newox.info/buy-cheap-phentermine.html >buy cheap phentermine</a> <a href= http://phentermine.newox.info/type-of-phentermine.html >type of phentermine</a> <a href= http://phentermine.newox.info/adipex-phentermine-vs.html >adipex phentermine vs</a> <a href= http://phentermine.newox.info/phentermine-cod.html >phentermine cod</a> <a href= http://phentermine.newox.info/phentermine-pill.html >phentermine pill</a> <a href= http://phentermine.newox.info/phentermine-weight-loss.html >phentermine weight loss</a> <a href= http://phentermine.newox.info/phentermine-online-pharmacy.html >phentermine online pharmacy</a> <a href= http://phentermine.newox.info/phentermine-information.html >phentermine information</a> <a href= http://phentermine.newox.info/phentermine-pharmacy.html >phentermine pharmacy</a> <a href= http://phentermine.newox.info/phentermine-on-line.html >phentermine on line</a> <a href= http://phentermine.newox.info/cheap-phentermine-online.html >cheap phentermine online</a> <a href= http://phentermine.newox.info/phentermine-hydrochloride.html >phentermine hydrochloride</a> <a href= http://phentermine.newox.info/phentermine-forum.html >phentermine forum</a> <a href= http://phentermine.newox.info/phentermine-diet.html >phentermine diet</a> <a href= http://phentermine.newox.info/how-does-phentermine-work.html >how does phentermine work</a> <a href= http://phentermine.newox.info/phentermine-for-sale.html >phentermine for sale</a> <a href= http://phentermine.newox.info/fastin-phentermine.html >fastin phentermine</a> <a href= http://phentermine.newox.info/overnight-phentermine.html >overnight phentermine</a> <a href= http://phentermine.newox.info/phentermine-free-shipping.html >phentermine free shipping</a> <a href= http://phentermine.newox.info/phentermine-online-purchase.html >phentermine online purchase</a> <a href= http://phentermine.newox.info/phentermine-cheap-discount.html >phentermine cheap discount</a> <a href= http://phentermine.newox.info/cheapest-phentermine-online.html >cheapest phentermine online</a> <a href= http://phentermine.newox.info/lowest-price-phentermine.html >lowest price phentermine</a> <a href= http://phentermine.newox.info/extra-cheap-phentermine.html >extra cheap phentermine</a> <a href= http://phentermine.newox.info/where-to-buy-phentermine.html >where to buy phentermine</a> <a href= http://phentermine.newox.info/generic-phentermine.html >generic phentermine</a> <a href= http://phentermine.newox.info/buy-phentermine-on-line.html >buy phentermine on line</a> <a href= http://tramadol.newox.info/buy-tramadol.html >buy tramadol</a> <a href= http://tramadol.newox.info/buy-tramadol-online.html >buy tramadol online</a> <a href= http://tramadol.newox.info/cheap-tramadol.html >cheap tramadol</a> <a href= http://tramadol.newox.info/tramadol-online.html >tramadol online</a> <a href= http://tramadol.newox.info/order-tramadol.html >order tramadol</a> <a href= http://tramadol.newox.info/tramadol-side-effects.html >tramadol side effects</a> <a href= http://tramadol.newox.info/tramadol-hcl.html >tramadol hcl</a> <a href= http://tramadol.newox.info/tramadol-ultram.html >tramadol ultram</a> <a href= http://tramadol.newox.info/tramadol-hydrochloride.html >tramadol hydrochloride</a> <a href= http://tramadol.newox.info/tramadol-prescription.html >tramadol prescription</a> <a href= http://tramadol.newox.info/purchase-tramadol.html >purchase tramadol</a> <a href= http://tramadol.newox.info/tramadol-cod.html >tramadol cod</a> <a href= http://tramadol.newox.info/discount-tramadol.html >discount tramadol</a> <a href= http://tramadol.newox.info/drug-tramadol.html >drug tramadol</a> <a href= http://tramadol.newox.info/tramadol-addiction.html >tramadol addiction</a> <a href= http://tramadol.newox.info/buy-tramadol-now.html >buy tramadol now</a> <a href= http://tramadol.newox.info/tramadol-apap.html >tramadol apap</a> <a href= http://tramadol.newox.info/buy-cheap-tramadol.html >buy cheap tramadol</a> <a href= http://tramadol.newox.info/tramadol-hcl-side-effects.html >tramadol hcl side effects</a> <a href= http://tramadol.newox.info/online-pharmacy-tramadol.html >online pharmacy tramadol</a> <a href= http://tramadol.newox.info/overnight-tramadol.html >overnight tramadol</a> <a href= http://tramadol.newox.info/tramadol-information.html >tramadol information</a> <a href= http://tramadol.newox.info/tramadol-withdrawal.html >tramadol withdrawal</a> <a href= http://tramadol.newox.info/order-tramadol-online.html >order tramadol online</a> <a href= http://tramadol.newox.info/cheap-tramadol-online.html >cheap tramadol online</a> <a href= http://tramadol.newox.info/tramadol-hcl.html >tramadol hcl</a> <a href= http://tramadol.newox.info/medication-tramadol.html >medication tramadol</a> <a href= http://tramadol.newox.info/tramadol-line.html >tramadol line</a> <a href= http://tramadol.newox.info/tramadol-without-prescription.html >tramadol without prescription</a> <a href= http://soma.newox.info/buy-soma.html >buy soma</a> <a href= http://soma.newox.info/soma-online.html >soma online</a> <a href= http://soma.newox.info/soma-carisoprodol.html >soma carisoprodol</a> <a href= http://soma.newox.info/cheap-soma.html >cheap soma</a> <a href= http://soma.newox.info/ash-of-soma.html >ash of soma</a> <a href= http://soma.newox.info/soma-san-diego.html >soma san diego</a> <a href= http://soma.newox.info/buy-soma-online.html >buy soma online</a> <a href= http://soma.newox.info/order-soma.html >order soma</a> <a href= http://soma.newox.info/soma-drug.html >soma drug</a> <a href= http://soma.newox.info/aura-soma.html >aura soma</a> <a href= http://soma.newox.info/watson-soma.html >watson soma</a> <a href= http://soma.newox.info/akane-soma.html >akane soma</a> <a href= http://soma.newox.info/soma-fm.html >soma fm</a> <a href= http://soma.newox.info/generic-soma.html >generic soma</a> <a href= http://soma.newox.info/purchase-soma.html >purchase soma</a> <a href= http://soma.newox.info/prescription-soma.html >prescription soma</a> <a href= http://soma.newox.info/soma-sale.html >soma sale</a> <a href= http://soma.newox.info/order-soma-online.html >order soma online</a> <a href= http://soma.newox.info/soma-side-effects.html >soma side effects</a> <a href= http://soma.newox.info/buy-cheap-soma-online.html >buy cheap soma online</a>
The "Whats New" web part has been installed by our corporate administrators and I'm using it on my local site. How do I exclude items that are older that a certain date? The problem is that the list fills up and new items do not appear at the top nor old item drop off the bottom.
is there any demo on developing the usercontrols with code behind and integrating with other assembly(Microsoft Application Block)?
i would be appreciated if that is one because i currently dont agree of uploading my ascx.cs (source) file to UserControls folder. I might miss out something, but to my knowledge of "Return Of Smart Part" it requires my source file as well, else it cannot load the my usercontrols into the smartpart, correct me if i am wrong.
hi,
thanks for the wonder return sun of smart which work wonderfully with my wss 3.0. Just my 2 cents thought, i wonder if it possible not to upload my control as well my source code the UserControls?Or is there any documents regarding this issue?
Please advise
PingBack from http://www.decatec.it/blogs/2007/01/16/Sharepoint+2007+WorkFlow+Intro.aspx
The same for me. I tried all, but nothing works.
I need to send a file with todays date. I used %date%_%SourceFileName% but didnot work.
Any suggessation?
Sovana
After implementing the suggested workarounds, I have not been able to get the Trace files to output and I also get authentication errors from the web service that I am calling.
It appears that the security information is being lost when the getWebRequest method is overriden as suggested. (however, I can't verify this as the trace is not working)
Im using WSE2.0. Has anyone else experienced this and come up with a solution?
Please can u advice on How To Access Active Directory through
Gerdes:
Well, ListFieldIterator is what ListFormWebPart uses to display the fieldcontrols of a content type. It will not show the toolbars usually shown by ListFormWebPart, however. If you need those and just want to customize the appearance of the form, you should edit the different templates found in \12\TEMPLATE\LAYOUTS.
Anyway, here's some basic code to get the ListfieldIterator working in a webpart. You could probably add declaratively to a page as well.
WebPart code(add reference to Microsoft.SharePoint and include 'using Microsoft.SharePoint.WebControls':
protected override void CreateChildControls(){
ListFieldIterator it = new ListFieldIterator();
it.ControlMode = SPControlMode.Edit //can also be New, or Display
//let's say we want to exclude the field "Title" in our form
it.ExcludeFields = string.Format("#{0};", "Title");
this.Controls.add(it);
Now, just add your webpart to a page of your choice (like EditForm.aspx, for example). The webpart will display all fields except "Title".
Let me get the soft copy of this project?
My email id is rajatpk@hotmail.com
Raja
Please, any examples for creating a custom toolpart property would be appreciated. I would be glad for any documentation regarding this topic as well.
Jan, surely you must have an example that you used for development of this feature.
I was seeing the same "Unable to display this Web Part" error for all external fields, until I remembered that I need to configure the proxy that SharePoint uses in web.config.
Hello Jan,
a small remark : you can skip overriding the Render() method. WebPart inherits from System.Web.UI.Control which will by default render its childcontrols. So you only need to add the BulletedList to the childcontrols in CreateChildControls(), which you already do.
Have fun coding ! Stefaan
Thanks for the screen cast, very useful!
I have the same problem as Rick, I can't assing email addresses to my users!
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!
I am getting Error : Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. (Error code: 18456).
I am installing WSS 2.0 with MSDE2000 and do not have a method of modifying permissions. MSDE2000 doesn't have an SQL Manager. You create an instance and use it, no modifying. Please help...
Hi all.
I'm using SonOfSmartPart with WSS 2.0, Windows Server 2003, .NET 2.0. All works fine, but only if i use an account which belongs to the local administrator group on the WSS-Server. If i move my Domain-Users in the local admin-group, all works.
In any other case i get a "Access denied..."-Message from WSS.
This is true, even if i want to access a site with an empty SonOfSmartPart-WebPart, so it does not seem to be a problem with my user controls.
Does anyone has a solution for this?
Hi everyone. Great site. Hold on.: Thanks!,Hi everyone. Great site. Hold on.: Thanks!
Your site looks great!!!!!!!!!! Please, look at my ;) Thanks!,Your site looks great!!!!!!!!!! Please, look at my ;) Thanks!
hi.. just droppin by your site.. its really cute nice work!: Thanks!,hi.. just droppin by your site.. its really cute nice work!: Thanks!
Great place to visit!: Thanks!,Great place to visit!: Thanks!
Wien ist mir im moment zu distanziert... Dann will ich dir wenigstens auf diesem wege meine lieben grube zukommen lassen!!! :) Thanks!,Wien ist mir im moment zu distanziert... Dann will ich dir wenigstens auf diesem wege meine lieben grube zukommen lassen!!! :) Thanks!
I will recomend this site... Excelent work!!! May I use your palette at my site? Thanks!,I will recomend this site... Excelent work!!! May I use your palette at my site? Thanks!
Very nice resources! Thanks!,Very nice resources! Thanks!
I just like to say that your website is absoulutely brilliant!!! Do you think my sites too brilliant ;) ? Thanks!,I just like to say that your website is absoulutely brilliant!!! Do you think my sites too brilliant ;) ? Thanks!
Really amazing! interesting site. keep up the good work. Thanks!,Really amazing! interesting site. keep up the good work. Thanks!
i think u guys are really cool
?
Nise site. Thanks you Thanks!,Nise site. Thanks you Thanks!
http://2site.com/xzmeap
<a href="http://2site.com/xzmeap">download wwe ringtone for free</a>
[URL=http://2site.com/xzmeap]download wwe ringtone for free[/URL]
http://2site.com/ctvhqe
<a href="http://2site.com/ctvhqe">download free ringtone for verizon phone</a>
[URL=http://2site.com/ctvhqe]download free ringtone for verizon phone[/URL]
http://2site.com/efbhjs
<a href="http://2site.com/efbhjs">download free ringtone for verizon cell phone</a>
[URL=http://2site.com/efbhjs]download free ringtone for verizon cell phone[/URL]
http://2site.com/gjrhbz
<a href="http://2site.com/gjrhbz">download free ringtone software</a>
[URL=http://2site.com/gjrhbz]download free ringtone software[/URL]
http://2site.com/mbjhrz
<a href="http://2site.com/mbjhrz">download free ringtone wap</a>
[URL=http://2site.com/mbjhrz]download free ringtone wap[/URL]
http://2site.com/srbfjh
<a href="http://2site.com/srbfjh">cingular download free ringtone wireless</a>
[URL=http://2site.com/srbfjh]cingular download free ringtone wireless[/URL]
http://2site.com/ejphca
<a href="http://2site.com/ejphca">ringtone and wallpaper free download</a>
[URL=http://2site.com/ejphca]ringtone and wallpaper free download[/URL]
http://2site.com/bjevxg
<a href="http://2site.com/bjevxg">download free real music ringtone</a>
[URL=http://2site.com/bjevxg]download free real music ringtone[/URL]
http://2site.com/wzhtgd
<a href="http://2site.com/wzhtgd">download free ringtone telus</a>
[URL=http://2site.com/wzhtgd]download free ringtone telus[/URL]
http://2site.com/xvghqb
<a href="http://2site.com/xvghqb">ringtone and blackberry and download and free</a>
[URL=http://2site.com/xvghqb]ringtone and blackberry and download and free[/URL]
http://2site.com/tbfqhm
<a href="http://2site.com/tbfqhm">download free ringtone motorola v60i</a>
[URL=http://2site.com/tbfqhm]download free ringtone motorola v60i[/URL]
http://2site.com/ctqgab
<a href="http://2site.com/ctqgab">download free i730 motorola ringtone</a>
[URL=http://2site.com/ctqgab]download free i730 motorola ringtone[/URL]
http://2site.com/uncibm
<a href="http://2site.com/uncibm">download free kyocera ringtone</a>
[URL=http://2site.com/uncibm]download free kyocera ringtone[/URL]
http://2site.com/mhagjf
<a href="http://2site.com/mhagjf">download free nokia 3595 ringtone</a>
[URL=http://2site.com/mhagjf]download free nokia 3595 ringtone[/URL]
Will return in the near future. good job. excellent site. Thanks!,Will return in the near future. good job. excellent site. Thanks!
Sorry I'm new to InfoPath...I've copied the code:
thisXDocument.DataObjects["DummyUsers"].DOM.loadXML(thisXDocument.DataObjects["Users"].DOM.xml);
But problem occur when I try to build my solution, where it thrown an error for nothing knowing "thisXDocument".
What should I do here?
Greetings from KSA. I read that you liked it here back some time ago. Would be interested in a return? We are putting together some Sharepoint wss3 Accelerators and have started to look at the training and solutions required.
Having some external expertise to help us may be benefitial.
We are located in Riyadh, not Jeddah where you were before.
If you are interested email is sparks@op-sys.com.
phillip
Very creative... May be you make new design for my sites? Thanks!,Very creative... May be you make new design for my sites? Thanks!
Hi Stefaan, you are absolutely right! I'm so used to building web parts with a more complex UI so I implement the Render method myself all the time by default... :-)
[url=http://annuncio-prestazione-sessuale.hitopeurope.info/]annuncio prestazione sessuale[/url] [url=http://annuncio-prestazione-sessuale.hitopeurope.info/sarai-testo-accordo.html]Sarai testo accordo[/url] [url=http://annuncio-prestazione-sessuale.hitopeurope.info/concerto-springsteen-torino.html]concerto springsteen torino[/url] [url=http://annuncio-prestazione-sessuale.hitopeurope.info/servizi-posizionamento-sito.html]servizi posizionamento sito[/url] [url=http://usato-quattro-ruota.hitopeurope.info/]USATO QUATTRO RUOTA[/url] [url=http://usato-quattro-ruota.hitopeurope.info/time-share-resort.html]TIME SHARE RESORT[/url] [url=http://usato-quattro-ruota.hitopeurope.info/tavolo-legno-brescia.html]Tavolo legno brescia[/url] [url=http://usato-quattro-ruota.hitopeurope.info/foto-sara-valbusa.html]foto sara valbusa[/url] [url=http://die-cast-car.hitopeurope.info/]Die cast car[/url] [url=http://die-cast-car.hitopeurope.info/motore-alta-frequenza.html]MOTORE ALTA FREQUENZA[/url] ,[url=http://annuncio-prestazione-sessuale.hitopeurope.info/]annuncio prestazione sessuale[/url] [url=http://annuncio-prestazione-sessuale.hitopeurope.info/sarai-testo-accordo.html]Sarai testo accordo[/url] [url=http://annuncio-prestazione-sessuale.hitopeurope.info/concerto-springsteen-torino.html]concerto springsteen torino[/url] [url=http://annuncio-prestazione-sessuale.hitopeurope.info/servizi-posizionamento-sito.html]servizi posizionamento sito[/url] [url=http://usato-quattro-ruota.hitopeurope.info/]USATO QUATTRO RUOTA[/url] [url=http://usato-quattro-ruota.hitopeurope.info/time-share-resort.html]TIME SHARE RESORT[/url] [url=http://usato-quattro-ruota.hitopeurope.info/tavolo-legno-brescia.html]Tavolo legno brescia[/url] [url=http://usato-quattro-ruota.hitopeurope.info/foto-sara-valbusa.html]foto sara valbusa[/url] [url=http://die-cast-car.hitopeurope.info/]Die cast car[/url] [url=http://die-cast-car.hitopeurope.info/motore-alta-frequenza.html]MOTORE ALTA FREQUENZA[/url]
Will this be upgraded to support WSS 3.0?
This will miss any web parts that are currently in an error state. :)
This is a nice feature, but troubleshooting for a newbie is difficult. I can assign the alert to a group of my choice, and the group will be told 'ben signed you up for alerts', but alas, no alerts are sent...
Jan, Thanks for the parts bro. Quick dumb question....
If I upgrade to your new webpart Leadit.SharePoint.Essentials 1.1.2.0 from the previous version, what will happen to my current wss sites that use the older webpart?
Will I have to redeploy the updated webpart to all my wss pages?
Donavon
>Sorry I'm new to InfoPath...I've copied the code:
>
>thisXDocument.DataObjects["DummyUsers"].DOM.loadXML
>(thisXDocument.DataObjects["Users"].DOM.xml);
>But problem occur when I try to build my solution, where it thrown >an error for nothing knowing "thisXDocument".
>What should I do here?
Try taking out the this in front of thisXDocument, it should be just XDocument...well, for me anyway.
Thanks for this tip Jan, very helpful.
cheers
I still get this message! I can't recolve this problem!
Yep, still happens in ASP.Net 2.0 and WSE 2.0 and the security info is lost. At the top level webservice level, you can't get to the underlying connection that is used and overriding the getwebrequest method loses the security info :-P
To all users using InfoPath 2007....if you are using thisXDocument.blah blah blah, you need to change the type of code your form is using. Create a new form, go to Form Options, Programming, and change your code to C# (InfoPath 2003 Compatible). Now start the tutorial over and everything should be working as intended.
I believe InfoPath 2007 has a new object model which causes the code listed here to not be recogonized anymore? I really don't have any idea, I just know that trick worked for me.
I am also having a problem using a few of the more advanced web services. I am trying to pull only users with a certain level of access to the site and just like Clay Fox:
"When I preview the form with the data connection to this method autoloading however I get an error that the form tmeplate is invalid and an error message stating that the parameter loginName cannot be empty."
If anyone knows how to rectify this problem or how I can store a value to this parameter before the data is queried, please let me know.
I am running into the "The data source control failed to execute the update command" But with data views. I can insert, delete, and save an unchanged row; beut everytime I try to save an edited row it error. The only refrence I have found points to incorrect data type for the database (MS SQL Server 2000 sp4). Any thoughts?
For several weeks now, I'm desperately looking for an AJAX course. I'm glad U2U is organizing a course on that subject. I'm especially interested in the Jason subject. Can you please inform me if this will be included in the course? And are there still seats available for that course? Thanks in advance for your reaction. My email address is colinphil@hotmail.com
Kind regards,
Colin
Hi Colin, I checked with Kevin (our AJAX expert and trainer), he will cover JSON (aka Jason) in the course, but the focus will be on the ASP.NET AJAX extensions. If you can register on the U2U site, then there are seats available. See you next week!! :-)
Did anyone ever receive an example of creating a custom toolpart property with the "Return of SmartPart" version? I need one as well.
http://fdsfggfdfg.com
<a href= http://forum.78rus.info/wet-bitches.html >wet bitches</a> [url=http://forum.78rus.info/wet-bitches.html]wet bitches[/url] <a href= http://forum.78rus.info/gayfart-galleries.html >gayfart Galleries</a> [url=http://forum.78rus.info/gayfart-galleries.html]gayfart Galleries[/url] <a href= http://forum.78rus.info/gay-dicks.html >gay dicks</a> [url=http://forum.78rus.info/gay-dicks.html]gay dicks[/url] <a href= http://forum.78rus.info/tranny-pantyhose.html >tranny pantyhose</a> [url=http://forum.78rus.info/tranny-pantyhose.html]tranny pantyhose[/url] <a href= http://forum.78rus.info/facial-vids.html >Facial Vids</a> [url=http://forum.78rus.info/facial-vids.html]Facial Vids[/url] <a href= http://forum.78rus.info/mature-bj.html >mature bj</a> [url=http://forum.78rus.info/mature-bj.html]mature bj[/url] <a href= http://forum.78rus.info/spanked-boy.html >spanked boy</a> [url=http://forum.78rus.info/spanked-boy.html]spanked boy[/url] <a href= http://forum.78rus.info/skinny-whores.html >skinny whores</a> [url=http://forum.78rus.info/skinny-whores.html]skinny whores[/url] <a href= http://forum.78rus.info/boob-oops.html >boob oops</a> [url=http://forum.78rus.info/boob-oops.html]boob oops[/url] <a href= http://forum.78rus.info/amsterdamrubber.html >amsterdamrubber</a> [url=http://forum.78rus.info/amsterdamrubber.html]amsterdamrubber[/url] <a href= http://forum.78rus.info/rubber-catsuit.html >Rubber Catsuit</a> [url=http://forum.78rus.info/rubber-catsuit.html]Rubber Catsuit[/url] <a href= http://forum.78rus.info/riderswives.html >riderswives</a> [url=http://forum.78rus.info/riderswives.html]riderswives[/url] <a href= http://forum.78rus.info/watching-wife.html >watching wife</a> [url=http://forum.78rus.info/watching-wife.html]watching wife[/url] <a href= http://forum.78rus.info/wife-watcher.html >wife watcher</a> [url=http://forum.78rus.info/wife-watcher.html]wife watcher[/url] <a href= http://forum.78rus.info/wet-wifey.html >wet wifey</a> [url=http://forum.78rus.info/wet-wifey.html]wet wifey[/url]
Yeah - Cool to know that Jan.
Works just like the integration with Office 2007 documents.
1000 Thanks. This was just what I was searching for
SAVE LOT OF TIME , ND GREAT
Can you enable a search capability on the mobile view?? cannot figure out how to do it
I have disabled the contributor setting, but i still get the access denied error message, when i try to copy and paste a pre-existing masterpage.....
Cool. Eh... what about validation? I assume this will not be applied when editing the field in SharePoint?
I'm very interested in this component. Where can I find documentation/code samples? The URL http://dotnet.leadit.be/extendeddatagrid/ doesn't work
Just wanted to send you a note that you have been adding to SharePoint Buzz
the Sharepoint 2007 SDK link should be:
http://www.microsoft.com/downloads/details.aspx?familyid=6D94E307-67D9-41AC-B2D6-0074D6286FA9&displaylang=en
PLEASE I NEED SOME HARDCORE BOOKS.
What a rubbisg website this is !!
you should not do or make the things work in this way
Hey Jan,
The Nintex workflow 2007 product is real, we are providing a hosted beta trial to the public.
Please email sales@nintex.com to for the beta creation.
Launching in Berlin at the Sharepoint Conference Feb 12 - 14.
Brett Campbell - Sales Director Nintex
Great course, Go Kevin
You do not need his tool to remove user alerts!!!! IT IS EASY IN SHAREPOINT
http://www.microsoft.com/resources/documentation/wss/2/all/adminguide/en-us/stsf13.mspx?mfr=true
The url to the download does not work!
With version 3.0, you won't need a a special web part to set up alerts for other users.
All you need is to do is...
Open a list --> Actions --> Alert Me --> Send Alerts To --> Users text box
Fill in all users you want to send alerts to and click OK.
@Thomas,
you are correct, in fact it is is also the warning you receive when you enable this in Infopath
Help!
I have installed the RSS reader follwing your instructions but when I enter the feed's URL and click Apply/OK on the web part, I get this error message: The "RSSReader" Web Part appears to be causing a problem.
Troubleshoot issues with Windows SharePoint Services.
Any ideas what I did wrong?
Great web part!
In issue i'm having is on a site that is using Forms authentication with anonymous access. Pages that do not have an instances of the smart part load fine. as soon as I drop an instance of the smart part on the page, i get redirected to the site login page.
It seems to be some type of security issue with the UserControls folder, but I have not been able to figure it out. Anyone else out there using the smartpart with anonymous access??
I ran into similar problems as Thomas. As his post suggest one may add 2 custom date fields, however how do you actually enforce them. Even if you make them "required" the poster can still post an article without having those fields show up and ask to be filled in. So my question is how do you make these 2 fields show up in "create an article" page or even when you go to "edit" article, because it doesn't even show up there, the only place your 2 custom date fields will show up is when you go "view properties" of an article page and then "edit item".
A problem we have with Sharepoint 2007 (MOSS, release) is that user don't get the pop-up window if they want to edit the document. They can choose to edit the document by using the dropdown menu but clicking on the document just opens the document in read only mode without the pop up.
I as an admin on the other hand have this pop up....
Anyone with suggestions?
Our users are all on XP, Office 2003 and IE6.
Document library has require check out enabled and all users has contributor access.
Does Return of SmartPart provide communication for the different types of interfaces provided in SharePoint, such as IWebPartField, IWebPartRow, IWebPartTable, and IWebPartParameters.
This technique works great! However it breaks the upload attachment feature and throws the below error message.
"This form was customized not working with attachment"
Has anyone found a way around this or to evoke the attachement JavaScript?
Thanks a lot. This was a good solution to the problems we faced.
Please disregard my previous post. I was able to get the web part working. For some reason my SP system did not have a wpcatalog directory. Once I added dwp file to the directory, the web part worked.
Jan, thanks for the greate coding.
Wow what a great news.
Thanks for sharing :-)
Great news. Thanks.
Work flow in SharePoint thats Great!!!
Hopes to see lots of integration in SharePoint 2007.
Just one request to all you leader...plz extend the expire date of the beta product :)
Himadrish
THE REAL ASP.NET 2.0 SOLUTION:
I fought this for a while and finally got the right code to fix this problem in ASP.Net 2.0. As many of you know, ASP.Net 2.0 generates the proxy classes dynamically so you can't just simply edit them. The key is in a new feature, 'partial classes'. Below is everything you need to know to fix this in ASP.Net 2.0.
First, my web reference declaration is:
weather.ndfdXML
The standard instantiation would then look like:
weather.ndfdXML2 wxService = new weather.ndfdXML2();
With this setup, I ran into the exact same problem everyone else has written about here and rarely solved.
First, add a new class and make it a partial class (C# code posted):
using System;
using System.Net;
using System.Web.Services.Protocols;
namespace weather
public partial class ndfdXML2 : weather.ndfdXML
//throw new Exception("Custom WebRequest override code hit!!");
System.Net.HttpWebRequest webRequest = (System.Net.HttpWebRequest)base.GetWebRequest(uri);
webRequest.ProtocolVersion = HttpVersion.Version10;
You can optionally uncomment that new exception to verify that the code is indeed executing.
Second, change you instantiation inside your code to the following:
Now everything works great!!
tried to install this in WSS v3 and didn't seem to work...
any thoughts?
Vince has updated this ...
New version plus more explanation http://blog.thekid.me.uk
Hi Jan
Thanks for the post. :-) We are looking at enhancing this feature in the next release. Would be great to get some feedback from you if you get a chance to test this.
Chandima
can you please leave some example on how to nest
For Each item in itemCollection Loop
It will be of great help.
Hi , jan
I Made a Searching Software and it is finely used by client but currently my client want to integrate my software with sharepoint
client want searching from inside share point using web parts.
please give me any solution
I am getting following error -
There was an exception reading the RSS Feed.
System.Net.WebException: The underlying connection was closed: Unable to connect to the remote server.
Jan could you help me.
- Supreet
Good to hear you're in South Africa :) Hope you enjoy your stay here in Johannesburg!
This certificatePolicy overriding was such a lifesaver here at the corp. Thanks a zillion!
Jorge Silva,
PG Stream.
I am receiving this error when trying to add the webpart
Any suggestions:
map@credentialcheck.com
How can you schedule publishing and expiration of a *site*? I've tried adding and setting "Scheduled Start Date" and "Scheduled End Date" as well as just "Start Date" and "End Date" to a site's categories, but it just doesn't work - the dates are ignored and the site is displayed.
Hii,
I want to make all fields of my sharepoint site read only without touching Sharepoint Designer or Front Page 2003.
The user should not be able to modify any of the fields from the editform.aspx
I know that we can do it by writing JS in editForm.aspx but i have a problem that i can use any sharepoint editor.
So is there any workaround for this.
Thanks, Prashant
Authorization can't work with KeepAlive set to false because it needs more than one roundtrip.
Right ?
Howdy Jan
I was on the training in Joburg and must say I really enjoyed it. You are a natural trainer and really know your stuff. Thanks for the efforts and enjoy your stay.
i want to create my own web part in a web part page
plz help me. Reply ASAP
I am also receiving this error when trying to add the webpart
alind@carlson.com
Is it possible to display individual documents in the standard tree-view?
As far as I see it is not. But then is it possible to place some component that can do that in MOSS?
By "creating dynamically", what exactly do you mean? I'm running into a similar error and having a difficult time fixing it.
TIA
Will this work with WSS 3.0? I have .NET v3.0 installed, and when I run the gacutil line, it doesn't recognize it as a command.
Excellent!! Works just as Craig describes. Many Thanks.
I ran into this problem with a C# client and an Axis2c server.
Thanks again.
I'm also new at Sharepoint and using WSS 3.0. Is there a way to install it on this version ?
Anyone solved the problem with attachments?
Regards, Jacob W.
I was able to successfully install this web part using the gacutil from .NET 1.1.
Iam trying to diasplay weather in my share point home page.Can any one done this before .
My requirement is as follows :
Input : Enter a "Zip code" in to a textbox.
Output : After submitting, Weather(temperature) should be displayed for the zip code which I entered in the text box.
Can you please guide me how can this done from the scratch.
You can have a look at this site, This is the one iam looking to display in my SharePoint home page.
www.weather.com
Happy bear wanna fear
Thanks, now I know a little bit more how to use SmartPart with wss 3.0 and with Visual Studio 2005. One question: how to create connectable web parts using smartpart and VS 2005?
Would be grateful for an answer.
<a href= http://biopharmaco.info/products/indomethacin-p13934.html >Indomethacin</a> [url=http://biopharmaco.info/products/indomethacin-p13934.html]Indomethacin[/url] <a href= http://biopharmaco.info/products/letrozole-p13993.html >Letrozole</a> [url=http://biopharmaco.info/products/letrozole-p13993.html]Letrozole[/url] <a href= http://biopharmaco.info/products/diethylpropion-p13830.html >Diethylpropion</a> [url=http://biopharmaco.info/products/diethylpropion-p13830.html]Diethylpropion[/url] <a href= http://biopharmaco.info/products/nolvadex-p13994.html >Nolvadex</a> [url=http://biopharmaco.info/products/nolvadex-p13994.html]Nolvadex[/url] <a href= http://biopharmaco.info/products/allegra-p13864.html >Allegra</a> [url=http://biopharmaco.info/products/allegra-p13864.html]Allegra[/url] <a href= http://biopharmaco.info/products/elidel-p13973.html >Elidel</a> [url=http://biopharmaco.info/products/elidel-p13973.html]Elidel[/url] ,<a href= http://biopharmaco.info/products/indomethacin-p13934.html >Indomethacin</a> [url=http://biopharmaco.info/products/indomethacin-p13934.html]Indomethacin[/url] <a href= http://biopharmaco.info/products/letrozole-p13993.html >Letrozole</a> [url=http://biopharmaco.info/products/letrozole-p13993.html]Letrozole[/url] <a href= http://biopharmaco.info/products/diethylpropion-p13830.html >Diethylpropion</a> [url=http://biopharmaco.info/products/diethylpropion-p13830.html]Diethylpropion[/url] <a href= http://biopharmaco.info/products/nolvadex-p13994.html >Nolvadex</a> [url=http://biopharmaco.info/products/nolvadex-p13994.html]Nolvadex[/url] <a href= http://biopharmaco.info/products/allegra-p13864.html >Allegra</a> [url=http://biopharmaco.info/products/allegra-p13864.html]Allegra[/url] <a href= http://biopharmaco.info/products/elidel-p13973.html >Elidel</a> [url=http://biopharmaco.info/products/elidel-p13973.html]Elidel[/url]
http://google.com,http://google.com,http://google.com,http://google.com,http://google.com
For us people stuck back on 2003 I found a link that describes a work around. Not perfect, but better than nothing.
http://msmvps.com/blogs/obts/archive/2005/06/08/51201.aspx
I have the same problem as Rick and Peter. No Active Directory, only the Windows users belonging to a Windows Group are granted access to the SP Site, and no option to edit the user properties
This solution works for comsuming a webservice hosted on an SSL-enabled server. But, what if the server is FIPS enabled (from the local security policy). I've searched each nook & cranny on Microsoft and can't find an ounce of documentation on how to deploy a webservice on a FIPS compliant webserver (win2k3).
mmm.. nice design, I must say..
PingBack from http://tech.findthailandinfo.com/?p=136
Interesting comments.. :D
VIDEOSCASH Converts Any Adult traffic
[url=http://www.videoscash.com/?ref=1784/]Sign UP![/url]
Payouts are made on the 1st and 16th of each month. You will be paid on the 16th for revenue generated the 1st to the 15th of the current month, and on the 1st for revenue generated the 15th to the last day of the previous month.
The minimum you will have to earn will be $50 ($1000 for wire transfer) to get paid.
For security reasons it's not allowed to change your payment info on the day of payment and the day before it.
Price-per-Install depends on number of installs you generate.
Videoscash reserves the right to change Price-per-Install without notice.
Videoscash doesn't accept traffic from CP/Zoo resources.
Any kind of SPAM is prohibited.
Inactive accounts and suspicious accounts can be deleted without notice.
Modifying Videoscash promo materials and any promotional, advertising or marketing materials of any kind is strongly prohibited.
http://www.onlinewebservice6.de/gastbuch.php?id=128990
<a href="http://www.onlinewebservice6.de/gastbuch.php?id=128990">REPLICA designer HANDBAG</a>
http://wapurl.co.uk/?8488UVV
<a href="http://wapurl.co.uk/?8488UVV">louis vuitton replica handbag for wholesale</a>
http://wapurl.co.uk/?JC0LS5Z
<a href="http://wapurl.co.uk/?JC0LS5Z">replica louis vuitton cherry handbag</a>
http://wapurl.co.uk/?ANRL42C
<a href="http://wapurl.co.uk/?ANRL42C">louis vuitton graffiti handbag replica</a>
http://wapurl.co.uk/?YIDJHCJ
<a href="http://wapurl.co.uk/?YIDJHCJ">louis vuitton papillon handbag, replica, fake, imitation,</a>
http://wapurl.co.uk/?DM6PCCI
<a href="http://wapurl.co.uk/?DM6PCCI">epi handbag louis replica vuitton</a>
http://wapurl.co.uk/?RDKY3UP
<a href="http://wapurl.co.uk/?RDKY3UP">handbag louis replica suhali vuitton</a>
http://wapurl.co.uk/?8Y2S2BR
<a href="http://wapurl.co.uk/?8Y2S2BR">accessory handbag louis replica vuitton</a>
http://wapurl.co.uk/?6G9SDKD
<a href="http://wapurl.co.uk/?6G9SDKD">affordable louis vuitton handbag replica</a>
http://wapurl.co.uk/?P27EI7I
<a href="http://wapurl.co.uk/?P27EI7I">handbag louis purse replica vuitton wholesale</a>
http://wapurl.co.uk/?S8GFUW7
<a href="http://wapurl.co.uk/?S8GFUW7">louis vuitton replica cabas piano handbag</a>
http://wapurl.co.uk/?V45J9YS
<a href="http://wapurl.co.uk/?V45J9YS">blossom cherry handbag louis replica vuitton</a>
http://wapurl.co.uk/?CS4DMJ7
<a href="http://wapurl.co.uk/?CS4DMJ7">replica louis vuitton vernis handbag</a>
http://wapurl.co.uk/?R570ERM
<a href="http://wapurl.co.uk/?R570ERM">louis vuitton replica theda handbag</a>
Hi, I publised my infopath form in Sharepoint portal server.Whenever my infopath form opens i need current logged user name of sharepoint server.How to get current logged user of sharepoint portal server? Please help me.
Senthil Kumar D
Hello! This cool site: <a href=" http://apple1stock1.blogspot.com ">apple stock</a> Click here please.
Hi fellows!
I've managed to show the current attachments in the list item, with the following code:
<SharePoint:FormField runat="server" id="ff6{$Pos}" ControlMode="Edit" FieldName="Attachments" />
I've also digged into the HTML/JS of a non-custom list form, and figured out that why the "This form was customized not working with attachment" message is show.
In a non-custom form, the web-part has two sections:
<span id='part1'>
// Web part section
</span>
<span id='partAttachment'>
// Attachment section
When one clicks in the "Attach File" button, the javascript function hides "part1" and shows "partAttachment", or vice-versa.
I tried to copy part of the HTML code of a non-custom form into my custom form, with no sucess.
If anyone is willing to give a try, please, remember to post your findings!
Regars, Murilo
<a href=" http://book-fortune-make1market1stock.blogspot.com ">book fortune make market stock</a>
Hi Jan.
First I have to say: Thanks for the U2U course in Denmark a couple of weeks ago. I havn't had time to blog much about it (yet).
You have no idea how good news this is. Just in time for my techlab that I'm setting up at our company.
Damn, I never even knew this was coming. Thanks!
<a href=" http://buy2stock.blogspot.com ">buy stock</a>
Thanks a TON for this! I have not had time to poke around and figure this out on my own. In two minutes, I searched the net, followed your steps, and BINGO! Excellent work, and the screenshots helped TREMENDOUSLY!
All,
The problem with access denied for me was the difference between SPS and WSS. I tried to use the web part in an area and it gave me access denied. When I used it in a site it worked!
Tip: If you have put it on an area page and want to get rid of it add ?contents=1 to the end of the url e.g. (http://myportal/c5/area1/default.aspx?contents=1). This will take you to the web parts maintainance page.
My query is... it is showing me a list of people 4869 in total - however we have over 11000 in the profile database. Can you please tell me the criteria for retriving these people as it will take a long time to work out!
Jenny
There's also a new Books Online (Feb 2007).
You have a great/informative site.
QUESTION: Does Sharepoint Server 2007 have "email enabled lists"?
I have been using CorasWorks email enabled lists and would like to know if SS 2007 has similar functionality inate to their lists/web parts.
Thanks much,
Rod
rodney.erb@us.army.mil or rkeinc@rke-inc.com
I am having a lil problem with a webpart on SP07.
I have used a Page Viewer Webpart to display a classic ASP Page. I would like to change the behaviour of this WebPart when 'Edit' is clicked and 'Modify shared webpart' is selected. I would like it to display another ASP Page. Is this possible? Or else is it possible to add another option onto the drop down that comes when clicking on 'Edit' of the webpart?
Scratching my head.
Where do we insert this modification? please help, thank you.
PingBack from http://www.decatec.it/blogs/2007/01/27/Microsoft+Windows+NET+Grid+Computing.aspx
Patrick, do you solve your issue ? (I've got the same)
The news is that Sharepoint services will support ajax extension 1.0 afer service pack 1
All information about Google search engine and services you can find in our blog. <a href="http://vubiheq.info/NDA2ODYzMg==">Google Blog</a>.
VERY COOL!!!!!!!!!
Nice site you have!
Implemented this with no problems... Thanks!
I encountered this problem when working with a 3rd party dev environment and conditionally set the certificate policy based on the #if DEBUG directive so I wouldn't have to worry about it when moving to production.
I appreciate the tip!
- g
Is is possible to update the value in a custom column of the document library through code only. If so , how can that be done
Indeed, very cool!
Is there a workaround for sending parameters to a Smartpart?
I also attended your training and it was really awsome. I learnt a whole lot from your instruction and I look forward to meeting you in the future.
http://wapurl.co.uk/?LLFO2GF
<a href="http://wapurl.co.uk/?LLFO2GF">louis vuitton replica handbag</a>
http://wapurl.co.uk/?PDD7SXV
<a href="http://wapurl.co.uk/?PDD7SXV">louis vuitton handbag replica</a>
http://wapurl.co.uk/?BY22XR9
<a href="http://wapurl.co.uk/?BY22XR9">replica louis vuitton handbag</a>
http://wapurl.co.uk/?VZNPMS7
<a href="http://wapurl.co.uk/?VZNPMS7">cheap replica louis vuitton handbag</a>
http://wapurl.co.uk/?M73U15B
<a href="http://wapurl.co.uk/?M73U15B">handbag replica louis vuitton</a>
http://wapurl.co.uk/?AC1FBMK
<a href="http://wapurl.co.uk/?AC1FBMK">copy handbag louis replica vuitton</a>
http://wapurl.co.uk/?AO2964S
<a href="http://wapurl.co.uk/?AO2964S">discount replica louis vuitton handbag</a>
http://wapurl.co.uk/?JTPSAIP
<a href="http://wapurl.co.uk/?JTPSAIP">handbag louis murakami replica vuitton</a>
http://wapurl.co.uk/?GKUBP80
<a href="http://wapurl.co.uk/?GKUBP80">cherry handbag louis replica vuitton</a>
http://wapurl.co.uk/?J3CAYJQ
<a href="http://wapurl.co.uk/?J3CAYJQ">wholesale louis vuitton replica handbag</a>
http://wapurl.co.uk/?NEHPDCV
<a href="http://wapurl.co.uk/?NEHPDCV">designer louis vuitton replica handbag</a>
http://wapurl.co.uk/?BAZ4MGN
<a href="http://wapurl.co.uk/?BAZ4MGN">cheap handbag louis replica vuitton</a>
http://wapurl.co.uk/?8HX68FS
<a href="http://wapurl.co.uk/?8HX68FS">knockoff handbag louis vuitton wholesale replica handbags</a>
http://wapurl.co.uk/?LAN2BHR
<a href="http://wapurl.co.uk/?LAN2BHR">shopping replica louis vuitton handbag</a>
http://wapurl.co.uk/?DIAOPX0
<a href="http://wapurl.co.uk/?DIAOPX0">handbag high louis quality replica vuitton</a>
http://wapurl.co.uk/?3NINE3E
<a href="http://wapurl.co.uk/?3NINE3E">handbag louis replica shopping vuitton</a>
http://wapurl.co.uk/?N3Y00D4
<a href="http://wapurl.co.uk/?N3Y00D4">handbag louis replica vuitton wholesale</a>
http://wapurl.co.uk/?3PSYBZC
<a href="http://wapurl.co.uk/?3PSYBZC">designer handbag louis replica vuitton</a>
http://wapurl.co.uk/?50HHXP7
<a href="http://wapurl.co.uk/?50HHXP7">coach handbag replica wholesale louis vuitton handbag</a>
http://wapurl.co.uk/?026S8QC
<a href="http://wapurl.co.uk/?026S8QC">buy louis vuitton exact replica handbag</a>
http://wapurl.co.uk/?7941MKY
<a href="http://wapurl.co.uk/?7941MKY">best replica louis vuitton handbag</a>
http://wapurl.co.uk/?QCIUUUG
<a href="http://wapurl.co.uk/?QCIUUUG">louis vuitton replica handbag at wholesale</a>
http://wapurl.co.uk/?53ODPDZ
<a href="http://wapurl.co.uk/?53ODPDZ">aaa handbag louis replica vuitton</a>
http://wapurl.co.uk/?LU11LE1
<a href="http://wapurl.co.uk/?LU11LE1">bag damier handbag louis purse replica vuitton</a>
http://wapurl.co.uk/?AYSHJ8O
<a href="http://wapurl.co.uk/?AYSHJ8O">louis vuitton replica handbag for sale</a>
http://wapurl.co.uk/?19M70P3
<a href="http://wapurl.co.uk/?19M70P3">bag handbag louis purse replica vuitton</a>
http://wapurl.co.uk/?S4OOBOP
<a href="http://wapurl.co.uk/?S4OOBOP">bag handbag louis monogram purse replica vuitton</a>
http://wapurl.co.uk/?88Z6MYH
<a href="http://wapurl.co.uk/?88Z6MYH">bag handbag louis purse replica vernis vuitton</a>
http://wapurl.co.uk/?4H7WG4J
<a href="http://wapurl.co.uk/?4H7WG4J">handbag louis quality replica vuitton</a>
http://wapurl.co.uk/?YRNSN5B
<a href="http://wapurl.co.uk/?YRNSN5B">replica louis vuitton epi handbag</a>
http://wapurl.co.uk/?D20GJNM
<a href="http://wapurl.co.uk/?D20GJNM">denim handbag louis replica vuitton</a>
http://wapurl.co.uk/?XAJLALX
<a href="http://wapurl.co.uk/?XAJLALX">fake handbag louis replica vuitton</a>
http://wapurl.co.uk/?BOVIEE8
<a href="http://wapurl.co.uk/?BOVIEE8">handbag louis replica vuitton</a>
http://wapurl.co.uk/?PBF8XI1
<a href="http://wapurl.co.uk/?PBF8XI1">louis vuitton replica purse and handbag</a>
http://wapurl.co.uk/?6DKYP39
<a href="http://wapurl.co.uk/?6DKYP39">quality replica louis vuitton handbag</a>
http://wapurl.co.uk/?ISHMCGO
<a href="http://wapurl.co.uk/?ISHMCGO">handbag louis replica replica vuitton</a>
http://wapurl.co.uk/?M5D1EQ8
<a href="http://wapurl.co.uk/?M5D1EQ8">louis vuitton and gucci replica handbag</a>
http://wapurl.co.uk/?LJFHVRK
<a href="http://wapurl.co.uk/?LJFHVRK">replica rainbow louis vuitton handbag</a>
http://wapurl.co.uk/?ZASUK20
<a href="http://wapurl.co.uk/?ZASUK20">louis vuitton spring collection replica handbag</a>
http://wapurl.co.uk/?38VQQNT
<a href="http://wapurl.co.uk/?38VQQNT">replica louis vuitton handbag in canada</a>
http://wapurl.co.uk/?UW2A7JA
<a href="http://wapurl.co.uk/?UW2A7JA">louis vuitton rainbow replica handbag</a>
http://wapurl.co.uk/?9YUH0XA
<a href="http://wapurl.co.uk/?9YUH0XA">louis vuitton replica handbag spring</a>
http://wapurl.co.uk/?5THB9NH
<a href="http://wapurl.co.uk/?5THB9NH">replica handbag louis vuitton kate spade</a>
http://wapurl.co.uk/?TWTKP78
<a href="http://wapurl.co.uk/?TWTKP78">louis vuitton replica handbag serial</a>
http://wapurl.co.uk/?VYYB7S0
<a href="http://wapurl.co.uk/?VYYB7S0">replica louis vuitton murakami handbag</a>
http://wapurl.co.uk/?LBSE905
<a href="http://wapurl.co.uk/?LBSE905">handbag louis rainbow replica vuitton</a>
http://wapurl.co.uk/?VJXQVCK
<a href="http://wapurl.co.uk/?VJXQVCK">replica spring louis vuitton handbag</a>
http://wapurl.co.uk/?F9573A4
<a href="http://wapurl.co.uk/?F9573A4">dalmatian handbag louis replica vuitton</a>
http://wapurl.co.uk/?5JWBSOW
<a href="http://wapurl.co.uk/?5JWBSOW">grade aaa replica louis vuitton handbag</a>
http://wapurl.co.uk/?VPY5MC3
<a href="http://wapurl.co.uk/?VPY5MC3">replica louis vuitton fleur handbag</a>
http://wapurl.co.uk/?V063621
<a href="http://wapurl.co.uk/?V063621">replica louis vuitton handbag</a>
http://wapurl.co.uk/?CI75GZ1
<a href="http://wapurl.co.uk/?CI75GZ1">cheap+replica+louis+vuitton+handbag</a>
http://wapurl.co.uk/?7WSWZUC
<a href="http://wapurl.co.uk/?7WSWZUC">louis+vuitton+replica+handbag</a>
http://wapurl.co.uk/?L0J5A8P
<a href="http://wapurl.co.uk/?L0J5A8P">handbag louis purse replica vuitton</a>
http://wapurl.co.uk/?XRIBUIE
<a href="http://wapurl.co.uk/?XRIBUIE">atlanta replica handbag louis vuitton</a>
http://wapurl.co.uk/?N09OJWA
<a href="http://wapurl.co.uk/?N09OJWA">new orleans replica handbag louis vuitton</a>
http://wapurl.co.uk/?MRZNYNL
<a href="http://wapurl.co.uk/?MRZNYNL">best handbag louis replica vuitton</a>
http://wapurl.co.uk/?R0PIQ5Z
<a href="http://wapurl.co.uk/?R0PIQ5Z">exact handbag louis replica vuitton</a>
http://wapurl.co.uk/?XU1MIV1
<a href="http://wapurl.co.uk/?XU1MIV1">handbag louis replica theda vuitton</a>
http://wapurl.co.uk/?PCPTCXN
<a href="http://wapurl.co.uk/?PCPTCXN">aaa grade handbag louis replica vuitton</a>
http://wapurl.co.uk/?7IIWQXL
<a href="http://wapurl.co.uk/?7IIWQXL">clear handbag louis replica vuitton</a>
http://wapurl.co.uk/?U1K760Z
<a href="http://wapurl.co.uk/?U1K760Z">louis vuitton denim replica handbag</a>
http://wapurl.co.uk/?DSMIHPH
<a href="http://wapurl.co.uk/?DSMIHPH">handbag louis replica vernis vuitton</a>
http://wapurl.co.uk/?ZWP8EAT
<a href="http://wapurl.co.uk/?ZWP8EAT">replica louis vuitton handbag wholesale</a>
http://wapurl.co.uk/?4QKASDG
<a href="http://wapurl.co.uk/?4QKASDG">wholesale louis vuitton handbag replica</a>
http://wapurl.co.uk/?QZNEH6Q
<a href="http://wapurl.co.uk/?QZNEH6Q">replica louis vuitton and gucci handbag</a>
http://wapurl.co.uk/?9A8WKM2
<a href="http://wapurl.co.uk/?9A8WKM2">replica louis vuitton handbag under dollars</a>
http://wapurl.co.uk/?5274523
<a href="http://wapurl.co.uk/?5274523">louis vuitton handbag replica louis vuitton replica</a>
http://wapurl.co.uk/?7UTNMAL
<a href="http://wapurl.co.uk/?7UTNMAL">canada handbag in louis replica vuitton</a>
http://wapurl.co.uk/?4KAQP64
<a href="http://wapurl.co.uk/?4KAQP64">gucci handbag louis replica vuitton</a>
http://wapurl.co.uk/?U4S1HLS
<a href="http://wapurl.co.uk/?U4S1HLS">handbag louis mirror replica vuitton</a>
http://wapurl.co.uk/?8IC85EN
<a href="http://wapurl.co.uk/?8IC85EN">handbag knockoff louis replica vuitton</a>
http://wapurl.co.uk/?W98CE6G
<a href="http://wapurl.co.uk/?W98CE6G">cheap louis vuitton replica handbag</a>
http://wapurl.co.uk/?X1372DM
<a href="http://wapurl.co.uk/?X1372DM">louis vuitton replica handbag under</a>
http://wapurl.co.uk/?07QRZ3A
<a href="http://wapurl.co.uk/?07QRZ3A">handbag louis replica sale vuitton</a>
http://wapurl.co.uk/?Z98NQ45
<a href="http://wapurl.co.uk/?Z98NQ45">discount handbag louis replica vuitton</a>
http://wapurl.co.uk/?DZYLAS4
<a href="http://wapurl.co.uk/?DZYLAS4">replica copy louis vuitton handbag</a>
http://wapurl.co.uk/?CIVT78G
<a href="http://wapurl.co.uk/?CIVT78G">european handbag louis replica vuitton</a>
http://wapurl.co.uk/?HZDEUJZ
<a href="http://wapurl.co.uk/?HZDEUJZ">knockoff handbag louis vuitton wholesale replica h</a>
http://wapurl.co.uk/?443RR3N
<a href="http://wapurl.co.uk/?443RR3N">cheap louis vuitton handbag replica</a>
http://wapurl.co.uk/?JQLVI7T
<a href="http://wapurl.co.uk/?JQLVI7T">replica handbag louis vuitton</a>
http://wapurl.co.uk/?00A1FHS
<a href="http://wapurl.co.uk/?00A1FHS">replica louis vuitton theda handbag</a>
http://wapurl.co.uk/?ZE9QRXE
<a href="http://wapurl.co.uk/?ZE9QRXE">louis vuitton designer handbag replica</a>
http://wapurl.co.uk/?8VTQKWS
<a href="http://wapurl.co.uk/?8VTQKWS">louis vuitton replica theda monogram handbag</a>
http://wapurl.co.uk/?6A3KBEL
<a href="http://wapurl.co.uk/?6A3KBEL">cerises handbag louis replica vuitton</a>
http://wapurl.co.uk/?S5PWDAS
<a href="http://wapurl.co.uk/?S5PWDAS">collection handbag louis replica spring vuitton</a>
I am facing a problem with SSL on my website. My solution is divided in three part. 1. One web application and 2. Two Web Services(Business and Data web services).
Webapplication is hosted on one machine and two web services are hosted on another machine.
I installed the certificate on the Web Application machine only.
When I am browsing my website I am getting follwing exception in my log file but my pages are displayed properly without any problem.
"the underlying connection was closed. could not establish trust relationship for the SLL/TLS secure channel"
Can anyone help me?
Virendra Jhala
The download link is broken...
Good job...<a href= http://www2.sae.edu/me/ext/2/Viagra-in-Mexico.html >Viagra in Mexico</a> [url=http://www2.sae.edu/me/ext/2/Viagra-in-Mexico.html]Viagra in Mexico[/url] <a href= http://www2.sae.edu/me/ext/2/Viagra-50mg.html >Viagra 50mg</a> [url=http://www2.sae.edu/me/ext/2/Viagra-50mg.html]Viagra 50mg[/url]
Please help. This is related to versioning.
I need to programmatically get an old document version.
For example, suppose there exists a Word document, myFile.doc, in a given
SharePoint 2007 Document Library and that document has 3 versions.
I need to programmatically...
...get Version 1 and save it to a local folder as myFile_1.doc (or
something like that), and...
...get Version 2 and save it to a local folder as myFile_2.doc, and...
...get Version 3 and save it to a local folder as myFile_3.doc, and so on.
I have handled the permissions for file I/O and the file naming and so on.
I can get Version information for each version, but I do not know how to get the actual file data for a given version.
I have been searching for help to no avail.
Do you happen to have any hints or sample code?
Please advise.
-- Mark Kamoski
Brunettes vs blondies, who is more clever?
PingBack from http://cheatcodedirect.com/new-version-of-smartpart-now-with-ajax-connections/
Very nice!!
But,
How to default Date Changed?
ex ) Default Year Style "1970-1979"...Like this..
1969 1970 1971....
Do you know why my user controls say PartialCachingControl
I am trying to create a class (which accepts all certs) like so in VB.NET:
Public Class CertificatePolicy
Implements System.Net.ICertificatePolicy
Public Sub New()
End Sub
Public Function CheckValidationResult(ByVal sp As System.Net.ServicePoint, ByVal cert As System.Security.Cryptography.X509Certificates.X509Certificate, ByVal req As System.Net.WebRequest, ByVal problem As Integer) As Boolean
I am getting a compile time error:
Class 'CertificatePolicy' must implement 'Function CheckValidationResult(srvPoint As ServicePoint, certificate As Security.Cryptography.X509Certificates.X509Certificate, request As WebRequest, certificateProblem As Integer) As Boolean' for interface 'System.Net.ICertificatePolicy'.
If anyone has any idea please let me know,
Cheers.
Hi Jan, I need some help. I want to ask you a question about Sharepoint designer, how can i write a code for button's(server control) click event like a normal .aspx page. I have added one server control in between one <td> using sharepoint designer. Or is it possible that first i create an .aspx page in MS .net studio and publish on sharepoint site.
<b>WPCATALOG is not available in the server, do we need to create new folder, how to go about. <b>
PingBack from http://www.virtual-generations.com/2007/02/27/random-sharepoint-moss-2007-links/
I am using your smartpart but i have a problem..........!
i am not able to retrieve any sharepoint lists. SpWeb property is turning out to be null.......!
am i doing any mistake ???
thx a lot!
Nice Tipp - and solved the Problem for me.
now ill make the funktion a little bit more secure as you suggested ;)
Has anyone used the ListFieldIterator declaritively with a control mode of New or Edit? The data does not successfully update for me when I do this. Note I'm using FormFields for other list fields and those are successfully updating.
<SharePoint:ListFieldIterator ID="listFieldIterator" TemplateName="WideFieldListIterator" runat="server" ControlMode="New" ></SharePoint:ListFieldIterator>
I can see this works for tasks and other simple lists. But how would it work for calendars. Within our company everybody has their own calendar in outlook, they work on multiple projects. We would like one big calendar merging calendar data from exchange and display it on each project page filtered for that project. would that work the same way????
Hey! Really q great site bncbm
<a href= http://harry.caucasus.net/logs/camera-digital-rating.html >camera digital rating</a> [url=http://harry.caucasus.net/logs/camera-digital-rating.html]camera digital rating[/url] <a href= http://harry.caucasus.net/logs/buy-hp-digital-camera.html >buy hp digital camera</a> [url=http://harry.caucasus.net/logs/buy-hp-digital-camera.html]buy hp digital camera[/url] <a href= http://harry.caucasus.net/logs/camera-digital-lens.html >camera digital lens</a> [url=http://harry.caucasus.net/logs/camera-digital-lens.html]camera digital lens[/url] <a href= http://harry.caucasus.net/logs/sony-w7-digital-camera.html >sony w7 digital camera</a> [url=http://harry.caucasus.net/logs/sony-w7-digital-camera.html]sony w7 digital camera[/url] <a href= http://harry.caucasus.net/logs/camera-digital-game.html >camera digital game</a> [url=http://harry.caucasus.net/logs/camera-digital-game.html]camera digital game[/url] <a href= http://harry.caucasus.net/logs/sony-camera-digital-uk.html >sony camera digital uk</a> [url=http://harry.caucasus.net/logs/sony-camera-digital-uk.html]sony camera digital uk[/url] <a href= http://harry.caucasus.net/logs/hp-315-digital-camera.html >hp 315 digital camera</a> [url=http://harry.caucasus.net/logs/hp-315-digital-camera.html]hp 315 digital camera[/url] <a href= http://harry.caucasus.net/logs/hp-850-digital-camera.html >hp 850 digital camera</a> [url=http://harry.caucasus.net/logs/hp-850-digital-camera.html]hp 850 digital camera[/url]
Buy! utva
,
Never mind my last comment. It seems that I was a little impatient on the Central Administration > Operations > Solution Management module. I had retracted the old version now and installed the new one.
Thanks for this once again!
Good site thanks <a href=http://mature.superxxxmovie.info/ > mature thin blonde </a> <a href=http://mature.adultstudioxxx.info/ > mature babe </a> <a href=http://mature.the-xxx-pics.info/ > free matures </a> <a href=http://mature.asian-***.info/ > mature gay truckers </a> <a href=http://mature.thexxonline.info/ > big ass mature </a> <a href=http://mature.the-xxxmag.info/ > hairy mature </a> http://mature.superxxxmovie.info/ http://mature.adultstudioxxx.info/ http://mature.the-xxx-pics.info/ http://mature.asian-***.info/ http://mature.thexxonline.info/ http://mature.the-xxxmag.info/
I don't know if it's a bug or something but my changes in the Supporting Files tab just won't get saved no matter what I do. I press OK: no go. Apply, OK: no go.
Any work around so that I can directly tell MOSS to use my custom pages?
I created a web applications where the application is able to display information from sharepoint List including the history. On WSS 3.0 the web service I am using is not able to extract the non-current(previous version) task item from the list. The application worked well on Sharepoint 2003. Do you have any idea how I can get previous version of an item using sharepoint's web services ?
Does it support authentication (username/password) and SSL (https://...)?
Roelof
Patrik/Frank,
Have either of you resolved this issue? I am experiencing the same exact thing as you described. Thanks!
PingBack from http://polisea.net/blog/?p=348
Hey! Really o great site gigsl
<a href= http://www.voyagerclub.lv/logs/best-digital-camera-for-beginner.html >best digital camera for beginner</a> [url=http://www.voyagerclub.lv/logs/best-digital-camera-for-beginner.html]best digital camera for beginner[/url] <a href= http://www.voyagerclub.lv/logs/camera-digital-easyshare-kodak-p712.html >camera digital easyshare kodak p712</a> [url=http://www.voyagerclub.lv/logs/camera-digital-easyshare-kodak-p712.html]camera digital easyshare kodak p712[/url] <a href= http://www.voyagerclub.lv/logs/camera-canon-digital-powershot-s80.html >camera canon digital powershot s80</a> [url=http://www.voyagerclub.lv/logs/camera-canon-digital-powershot-s80.html]camera canon digital powershot s80[/url] <a href= http://www.voyagerclub.lv/logs/camera-digital-nv3-samsung.html >camera digital nv3 samsung</a> [url=http://www.voyagerclub.lv/logs/camera-digital-nv3-samsung.html]camera digital nv3 samsung[/url] <a href= http://www.voyagerclub.lv/logs/digital-camera-memory-card-review.html >digital camera memory card review</a> [url=http://www.voyagerclub.lv/logs/digital-camera-memory-card-review.html]digital camera memory card review[/url] <a href= http://www.voyagerclub.lv/logs/a500-camera-digital-finepix-fuji.html >a500 camera digital finepix fuji</a> [url=http://www.voyagerclub.lv/logs/a500-camera-digital-finepix-fuji.html]a500 camera digital finepix fuji[/url] <a href= http://www.voyagerclub.lv/logs/camera-digital-kodak-p850.html >camera digital kodak p850</a> [url=http://www.voyagerclub.lv/logs/camera-digital-kodak-p850.html]camera digital kodak p850[/url] <a href= http://www.voyagerclub.lv/logs/6mp-camera-digital-olympus.html >6mp camera digital olympus</a> [url=http://www.voyagerclub.lv/logs/6mp-camera-digital-olympus.html]6mp camera digital olympus[/url]
Buy! crdp
My web part dsplays a message "There are no listings to display", when there are no lists present. How can i edit or delete this default message.
Does any extra security features need to be added when deploying a webpart that consumes a web service ??
ankush.bhatia@lntinfotech.com
Jason,
I realize this is a couple months after your original post but I was having the same issue of this web part creating multiple alerts for the account you have logged in instead of one per user under WSS 3.0.
I'm not exactly sure why but it seems that under WSS 3.0 the user.Alerts.Add function tacks on the current logged in user token to the alert.User property instead of the owner of that particular collection. Strange.
As a work around go through the code and change the following:
System.Guid newAlertGuid = selectedUser.Alerts.Add(selectedList, GetSelectedChangeType(), GetSelectedFrequency());
AddAlertToList(selectedUser.Alerts[newAlertGuid]);
to
System.Guid newAlertGuid = user.Alerts.Add(selectedList, GetSelectedChangeType(), GetSelectedFrequency());
SPAlert alert = user.Alerts[newAlertGuid];
alert.User = user;
alert.Update();
AddAlertToList(alert);
Basically you're just retrieving the alert that was just created and manually setting the alert.User property to the proper user token. You will need to update both the "addAllAlerts_Click" and the "addAlert_Click" methods.
Jans, care to shed some insight in to why this is different in WSS 3.0?
So where can we download the Visual Studio 2005 Tools for Office (VSTO 2005)? It doesnt seem to be avaliable any more.
This worked great until my company upgraded to SharePoint 3.0. While the pages still work and survived the upgrade process, 3.0 requires the use of SharePoint designer which refuses to open up any pages where I used the above methods. Any ideas on how to duplicate this functionality in 3.0?
Do you have a downloadable copy of the solution project for your Ordina.BizTalk.Debug.Messagebox example?
Otherwise if i want to try to do something like this I'm just creating a regular .net class library right?
Tom
sorry I mean't to say .net control library not class library...
Okay I got it now - it's a regular .net class library but I forgot to add in a reference to System.Windows.Forms since by default .net class projects don't expect a GUI..
i am very new to biztalk... I was able to compile the class into an assembly then add it as a reference to my biztalk orchestration and then I also saw the 'intellisense' within the biztalk orchestration pick it up -- so I know the reference is okay... but when i ran my orchestration nothing really happened -- but i did have a lot of windows open and also multiple desktops (windows xp power toys)... could it be a permission related?
I have a query.How do we debug smart part webpart?
What do u do after downloading and installing these files
how do i get the web part
It's okay it actually turns out to work fine! The reason why I didn't see anything happen initially was that I had a bunch of breakpoints on my Orchestration so it wasn't until I stepped through it in the HAT debugger that I could see the MessageBox work!
This was a great example and nice demo that could also lead to more nice additions to Biztalk.
When we are adding this class to biztalk as a reference is it then considered an 'Artifact' or is it just a reference class still?
Is it in English???
Yes, it's in English!
I receive:
An unexpected error has occurred
When trying to load my user control? I am using SonofsmartPart on Sharepoint services 2.0 with sp2...please please help me!
BahvaryKuzar 485665 http://best-cars-directory.info/nokia-e50/e50-nokia-price.html e50 nokia price <a href="http://best-cars-directory.info/nokia-e50/e50-nokia-price.html">e50 nokia price</a> [URL=http://best-cars-directory.info/nokia-e50/e50-nokia-price.html]e50 nokia price[/URL] best-cars-directory.info/nokia-e50/e50-nokia-price.html [link=http://best-cars-directory.info/nokia-e50/e50-nokia-price.html]e50 nokia price[/link] * http://best-cars-directory.info/nokia-e50/e50-nokia-software.html e50 nokia software <a href="http://best-cars-directory.info/nokia-e50/e50-nokia-software.html">e50 nokia software</a> [URL=http://best-cars-directory.info/nokia-e50/e50-nokia-software.html]e50 nokia software[/URL] best-cars-directory.info/nokia-e50/e50-nokia-software.html [link=http://best-cars-directory.info/nokia-e50/e50-nokia-software.html]e50 nokia software[/link] *
Following on from other comments I have had success using control declaratively on custom list form - sample:
<SharePoint:ListFieldIterator ControlMode="Display" ExcludeFields="PublishingRollupImage;#Region Name" runat="server"/>
<ParameterBindings>
<ParameterBinding Name="ListID" Location="QueryString(ListId)" DefaultValue="{12345}"/>
</ParameterBindings>
</SharePoint:ListFieldIterator>
As yet I have not found out how to control the css etc of the rows, but for key fields I just use FormFields separately and format them. The ListFieldIterator control detects whether you have already put a FormField on the page, if so it does not display it again but you could also add to ExcludeFields list.
By default you do not need to pass the listid, it picks it up from context. A very useful control, if only it were documented and if only it showed up in Sharepoint Designer ! ...or at least mine doesn't show it in the toolbox...what other useful tools are out there?!
Adam
luogo interessante, soddisfare interessante, buon!
On the error message "To use this webpart you need to have Site Administrator rights" it really should say "To use this webpart you need to be a site collection administrator" as that's what the "IsSiteAdmin" really checks for. So the solution to the error message is clear.
Nice web part.
Hello. I tried this webpart in WSS 3.0, and it worked fine at the root site and than at the subsubside. But at the subside I only became the
subside or the root side (root activated in the settings), but no tree.
FYI - For users utilizing InfoPath 2007, this post is what you want in order to use the new OM...
http://blogs.vbcity.com/skullcrusher/articles/7736.aspx
I see that the email is send after the first line :
And the mail is send to me (initiator of the alert).
...
....
After the email was sent, the update do not generate a new mail ....
I've got the same problem. Have you resolved the problem or do you have more information about this problem ?
my friend has developed a very cool app to register event handlers:
http://www.gotdotnet.com/workspaces/workspace.aspx?id=a1f68a71-0454-454b-9240-34a355bd56ae
http://www.desiurl.com/ed859
Reno :
Try changing the Class name to something like MyCertificateValidation instead of CertificatePolicy
Hopefully that will fix it.
How do you run a search under sharepoint that gets hits on values in there columns????
I am new sharepoint and i would like to have a resource discovery where in i can read all the webpages and webparts name with hierarchy
http://myurl.com.tw/p6at
<a href="http://myurl.com.tw/p6at">free samsung ringtone</a>
http://myurl.com.tw/3eng
<a href="http://myurl.com.tw/3eng">free tracfone ringtone</a>
http://myurl.com.tw/8nkl
<a href="http://myurl.com.tw/8nkl">free cricket ringtone</a>
http://myurl.com.tw/qti9
<a href="http://myurl.com.tw/qti9">get free ringtone</a>
http://myurl.com.tw/454f
<a href="http://myurl.com.tw/454f">free mosquito ringtone</a>
http://myurl.com.tw/b4ok
<a href="http://myurl.com.tw/b4ok">free cingular mp3 ringtone</a>
http://myurl.com.tw/ats8
<a href="http://myurl.com.tw/ats8">download free mp3 ringtone</a>
http://myurl.com.tw/cl4g
<a href="http://myurl.com.tw/cl4g">free ringtone maker</a>
http://myurl.com.tw/csah
<a href="http://myurl.com.tw/csah">free verizon cell phone ringtone</a>
http://myurl.com.tw/h1qb
<a href="http://myurl.com.tw/h1qb">free suncom ringtone</a>
http://myurl.com.tw/oc1g
i have difficulties in getting the ajax smart part to work
on a publishing portal (wcm site) while its working great on a collaboration portal. are there any known issues about that?
besides that, very cool component!!
thanks!
How to use <SafeControl... with ASP.NET 2.0 project, the assemblys are spread all over machine.
How to build/deploy user control in ASP.NET 2.0 for use in SmartPart.
I have a problem because of confusion made by publishig Web, assembly name, single page assemblies,...etc,etc
In ASP.NET 1.1. it was easy, one project directory, one assembly output, AssemblyInfo.vb file and easy of use <SafeControl...
Any information you can provide will be greatly appreciated
Hi all, I found a work around
private void CreateNewAlert(SPUser user, SPList list, SPEventType theEventType, SPAlertFrequency theAlertFrequency)
SPWeb web = SPControl.GetContextWeb(this.Context);
SPAlert alert = web.Alerts.Add();
alert.AlertType = SPAlertType.List;
alert.AlertFrequency = theAlertFrequency;
alert.EventType = theEventType;
alert.List = list;
Seems to work !
Can anyone help me in creating a form library programmatically.
I dont want to create it from the site. I want to create it programmatically.
I solved the issue with attachments. It's a bit of a drag and requires some thinking, because of the way it works with JavaScript.
This is the code you need for attachments to work:
<SharePoint:AttachmentUpload ControlMode="Edit" runat="server" ID="fileupload{$Pos}">
</SharePoint:AttachmentUpload>
<SharePoint:AttachmentsField ControlMode="Edit" FieldName="Attachments" runat="server" Visible="true"></SharePoint:AttachmentsField>
This will display the input field and the buttons as well as what you're trying to upload.
1) First make sure your field and test case works (Edit form) without the attachments.
2) What I did was put the attachments in a separate xsl template:
<xsl:template name="attachments">
<xsl:param name="Pos" />
<tr><td>
<SharePoint:AttachmentUpload ControlMode="Edit" runat="server" ID="fileupload{$Pos}"></SharePoint:AttachmentUpload>
</td></tr>
</xsl:template>
and then changed the dvt_1 template:
<xsl:template name="dvt_1">
<xsl:variable name="dvt_StyleName">ListForm</xsl:variable>
<xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row"/>
<table border="0" width="100%" id="part1{$noop}">
<xsl:call-template name="dvt_1.body">
<xsl:with-param name="Rows" select="$Rows"/>
</xsl:call-template>
</table>
<table border="0" width="100%">
<xsl:call-template name="attachments">
<xsl:with-param name="Pos" select="concat('_', position())" />
A few things that are important to remember:
The JavaScript in SharePoint will look for the objectid part1 in the final HTML and hide the object (display:hidden) and the objectid partattachment and display the object. The partAttachment objectid is automatically generated to the table when you introduce the SharePoint:AttachmentUpload code. The part1 however, you need to introduce yourself.
Now, if you don't want that anything hides, just put in an empty element somewhere with the id part1{$noop}, otherwise, just use my example for the dvt_1 template (it's neater). The $noop is to fool SharePoint Designer since it will introduce {generate-id()} after the id if you don't specify anything there (to guarantee unique identifiers or something, I don't know) and thus it would fail the javascript since it can't find id=part1, but there will be a part1KLV532.
You can specify the noop parameter to be empty in the beginning of your xsl stylesheet: <xsl:param name=noop></xsl:param>
If this is a little confusing or difficult to read, you can always go to my website: www.valerieandevi.be
Evi
I used this web part all the time except i upgraded from Sharepoint portal server 2003 to sharepoint server 2007 and it no longer works. will there be a fix/upgrade?? i really need this back
In short, to enable PDF in Sharepoint search
1. install IFilter
2. Restart PC
3. Add pdf icon to the images folder
4. Add pdf type in site config and xml doc for mapping
5. Reindex site
Good site thanks <a href=http://mature.bestxxmag.info/ > asian shower mature </a> <a href=http://mature.for-adult-sex.info/ > facial blowjob </a> <a href=http://mature.xxxworld-xxx.info/ > latin tgp </a> <a href=http://mature.sebxx.info/ > hot mature bra </a> <a href=http://mature.your-adult-toys.info/ > hot mature mother </a> <a href=http://mature.yourxxxadult.info/ > busty hairy mature </a> R1F4Gfubc0Hb http://mature.bestxxmag.info/ http://mature.for-adult-sex.info/ http://mature.xxxworld-xxx.info/ http://mature.sebxx.info/ http://mature.your-adult-toys.info/ http://mature.yourxxxadult.info/
im using VS.NET 2005 and WSS 3.0. What do i need to have to install Web Part Templates for VS.NET 2005 so that they can be used in WSS 3.0
ietosnovamy 450617 http://mince.richandprivilegedtravel.com/mince-verre-vitres.html mince verre vitres <a href="http://mince.richandprivilegedtravel.com/mince-verre-vitres.html">mince verre vitres</a> [URL=http://mince.richandprivilegedtravel.com/mince-verre-vitres.html]mince verre vitres[/URL] mince.richandprivilegedtravel.com/mince-verre-vitres.html [link=http://mince.richandprivilegedtravel.com/mince-verre-vitres.html]mince verre vitres[/link] * http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html">http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html a mystery of heroism <a href="http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html">http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html">a mystery of heroism</a> [URL=http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html">http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html]a mystery of heroism[/URL] heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html [link=http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html">http://heroism.richandprivilegedtravel.com/a-mystery-of-heroism.html]a mystery of heroism[/link] * http://heroism.richandprivilegedtravel.com/heroism_70.html">http://heroism.richandprivilegedtravel.com/heroism_70.html heroism <a href="http://heroism.richandprivilegedtravel.com/heroism_70.html">http://heroism.richandprivilegedtravel.com/heroism_70.html">heroism</a> [URL=http://heroism.richandprivilegedtravel.com/heroism_70.html">http://heroism.richandprivilegedtravel.com/heroism_70.html]heroism[/URL] heroism.richandprivilegedtravel.com/heroism_70.html [link=http://heroism.richandprivilegedtravel.com/heroism_70.html">http://heroism.richandprivilegedtravel.com/heroism_70.html]heroism[/link] * http://heroism.richandprivilegedtravel.com/ heroism <a href="http://heroism.richandprivilegedtravel.com/">heroism</a> [URL=http://heroism.richandprivilegedtravel.com/]heroism[/URL] heroism.richandprivilegedtravel.com/ [link=http://heroism.richandprivilegedtravel.com/]heroism[/link] * http://mince.richandprivilegedtravel.com/coupe-mince.html coupe mince <a href="http://mince.richandprivilegedtravel.com/coupe-mince.html">coupe mince</a> [URL=http://mince.richandprivilegedtravel.com/coupe-mince.html]coupe mince[/URL] mince.richandprivilegedtravel.com/coupe-mince.html [link=http://mince.richandprivilegedtravel.com/coupe-mince.html]coupe mince[/link] * http://mince.richandprivilegedtravel.com/pork-mince.html pork mince <a href="http://mince.richandprivilegedtravel.com/pork-mince.html">pork mince</a> [URL=http://mince.richandprivilegedtravel.com/pork-mince.html]pork mince[/URL] mince.richandprivilegedtravel.com/pork-mince.html [link=http://mince.richandprivilegedtravel.com/pork-mince.html]pork mince[/link] *
I did the above steps and it works great. I was wondering if it is possible to add 2 more columns to the displayed list in the subsite and those columns need not reflect in the list at the root site.?.
I need to have a custom toolpart to show some values from the database in a dropdown. Can you give an example of how to do this with the return of smartpart, I have been searching for sometime and could not find any example that creates a custom toolpart and setting the custom attribute to the custom toolpart value using smartpart.
It would be really helpful if i could get an example of doing this, since we are planning to use the smartpart and do our webpart using user controls.
ietosnovamy 450591 http://infantilism.mjtoysonline.com/erotic-infantilism-story.html erotic infantilism story <a href="http://infantilism.mjtoysonline.com/erotic-infantilism-story.html">erotic infantilism story</a> [URL=http://infantilism.mjtoysonline.com/erotic-infantilism-story.html]erotic infantilism story[/URL] infantilism.mjtoysonline.com/erotic-infantilism-story.html [link=http://infantilism.mjtoysonline.com/erotic-infantilism-story.html]erotic infantilism story[/link] * http://infantilism.mjtoysonline.com/cure-infantilism.html cure infantilism <a href="http://infantilism.mjtoysonline.com/cure-infantilism.html">cure infantilism</a> [URL=http://infantilism.mjtoysonline.com/cure-infantilism.html]cure infantilism[/URL] infantilism.mjtoysonline.com/cure-infantilism.html [link=http://infantilism.mjtoysonline.com/cure-infantilism.html]cure infantilism[/link] * http://infantilism.mjtoysonline.com/infantilism-sissies.html infantilism sissies <a href="http://infantilism.mjtoysonline.com/infantilism-sissies.html">infantilism sissies</a> [URL=http://infantilism.mjtoysonline.com/infantilism-sissies.html]infantilism sissies[/URL] infantilism.mjtoysonline.com/infantilism-sissies.html [link=http://infantilism.mjtoysonline.com/infantilism-sissies.html]infantilism sissies[/link] * http://new-high.mjtoysonline.com/ new high <a href="http://new-high.mjtoysonline.com/">new high</a> [URL=http://new-high.mjtoysonline.com/]new high[/URL] new-high.mjtoysonline.com/ [link=http://new-high.mjtoysonline.com/]new high[/link] * http://infantilism.mjtoysonline.com/girl-infantilism-story.html girl infantilism story <a href="http://infantilism.mjtoysonline.com/girl-infantilism-story.html">girl infantilism story</a> [URL=http://infantilism.mjtoysonline.com/girl-infantilism-story.html]girl infantilism story[/URL] infantilism.mjtoysonline.com/girl-infantilism-story.html [link=http://infantilism.mjtoysonline.com/girl-infantilism-story.html]girl infantilism story[/link] * http://new-high.mjtoysonline.com/new-high_42.html new high <a href="http://new-high.mjtoysonline.com/new-high_42.html">new high</a> [URL=http://new-high.mjtoysonline.com/new-high_42.html]new high[/URL] new-high.mjtoysonline.com/new-high_42.html [link=http://new-high.mjtoysonline.com/new-high_42.html]new high[/link] *
<a href= http://bobop.info/apartment-rental-clarksville-tennessee >apartment rental clarksville tennessee</a> <a href= http://bobop.info/planter-warts >planter warts</a> <a href= http://bobop.info/cash-roseanne >cash roseanne</a> <a href= http://bobop.info/bailey-barnum-brother-circus-ringling/bailey-barnum-brother-circus-ringling.html >bailey barnum brother circus ringling</a> <a href= http://bobop.info/walkthrough-for-call-of-duty/walk-through-call-of-duty-2.html >walk through call of duty 2</a> <a href= http://bobop.info/www-call-kelly-com >www call kelly.com</a> <a href= http://bobop.info/bvlgari-parfume/bvlgari-parfume.html >bvlgari parfume</a> <a href= http://bobop.info/contactlenses/contact-lens.html >contact lens</a> <a href= http://bobop.info/celebs-nip-slip/free-celeb-nip-slip.html >free celeb nip slip</a> <a href= http://bobop.info/addition-everest-home >addition everest home</a> <a href= http://bobop.info/what-is-turp/turp-surgery.html >turp surgery</a> <a href= http://bobop.info/verizon-razor/razor-verizon-wireless.html >razor verizon wireless</a> <a href= http://bobop.info/numa-numa-dance/numa-numa-dance-video.html >numa numa dance video</a> <a href= http://bobop.info/rickey-smiley-prank-phone/rickey-smiley-prank-phone-call.html >rickey smiley prank phone call</a> <a href= http://bobop.info/anonymouse-email/free-anonymous-email.html >free anonymous email</a> <a href= http://bobop.info/free-java-sonic-cell-phone-games >free java sonic cell phone games</a> <a href= http://bobop.info/janet-jackson-call-on-me-lyrics/janet-jackson-call-on-me-lyrics.html >janet jackson call on me lyrics</a> <a href= http://bobop.info/denver-optometrist >denver optometrist</a> <a href= http://bobop.info/frree-ringtones/free-nokia-ringtone.html >free nokia ringtone</a> <a href= http://bobop.info/verizon-ampitheater/verizon-amphitheater-irvine.html >verizon amphitheater irvine</a>
I'm really sorry but i need it... <a href= http://za.spamim.net/s2-mp3-ringtones/ >mp3 ringtones</a> [url=http://za.spamim.net/s2-mp3-ringtones/]mp3 ringtones[/url] <a href= http://za.spamim.net/s2-download-ringtones/ >download ringtones</a> [url=http://za.spamim.net/s2-download-ringtones/]download ringtones[/url] <a href= http://za.spamim.net/s2-motorola-ringtones/ >motorola ringtones</a> [url=http://za.spamim.net/s2-motorola-ringtones/]motorola ringtones[/url] <a href= http://za.spamim.net/s2-cingular-ringtones/ >cingular ringtones</a> [url=http://za.spamim.net/s2-cingular-ringtones/]cingular ringtones[/url] <a href= http://za.spamim.net/s2-mobile-ringtones/ >mobile ringtones</a> [url=http://za.spamim.net/s2-mobile-ringtones/]mobile ringtones[/url] <a href= http://za.spamim.net/s2-free-ringtones/ >free ringtones</a> [url=http://za.spamim.net/s2-free-ringtones/]free ringtones[/url]
Thanks for the post.. has anyone tried to do this process in code?. I can set al the flags: require approval and enabling versioning but not to enable item scheduling on a list. Ive tried creating a document library and manually following the above steps and then exported the list schema and reinstalled it as a feature, However the item scheduling was still not enabled. Im guessign item scheduling can not be set as part of the list meta data.
I have the same problem as Deepa.
I need to custom toopart to show values from the database by dropdown.
Besides, I can't use the DemoProvider, DemoConsumer
When I plug them on my sharepoint, it will be an error as following:
"An unexpected error has occurred.
Web Parts Maintenance Page: If you have permission, you can use this page to temporarily close Web Parts or remove personal settings. For more information, contact your site administrator. "
What's wrong ?? Coulde you please give me a advise?
I cannot get my newform.aspx to show. I completed the steps above to insert a custom list form. I keep getting "Invalid page url:". This is driving me crazy. I have recreated a site trying to solve this.....
If i try this trick (using SaveForm parameter to show de saveform dialog of an certain document in a documentlibrary) with wss 3.0 the page is not rendered correctly. If i examine the source of the page, the controls are there but they not visible in the browser. I've added some custom fields as explained on MSDN. Any tips?
Greeting Hans
Has anyone tried using this against a view that isn't default? Everything I've tried with this code binds the view to the default, even though I pass in the guid for the view I want, this is what Im currently doing...
SPList list = web.Lists[listName];
SPView view = list.Views[viewName];
listView.ListName = list.ID.ToString("B").ToUpper();
listView.ViewGuid = view.ID.ToString("B").ToUpper();
Guid lvwpguid = webParts.Add(listView);
Any Ideas what I need to do to get the list view Web part to display the view I want and not the default view?
Same thing here about the "Invalid page url:" error.
Only deleting the old list form and inserting the custom one (not modifying anything in it) is enough to trigger the message.
Hi Ustes and Tom, it could be you have not set the custom form as the display page for the list:
- navigate to your list in sharepoint designer
- right click and choose properties
- go to the Supporting files tab
- choose the content type you want to display your list form for (eg custom list form = item)
- then browse to set the display page to be the one you've created
- save. Now your display page should be associated with items in your list.
Hope this helps! Cheers Adam
http://www.desiurl.com/85e9b |<a href="http://www.desiurl.com/85e9b">download ringtone for nokia phone free</a> | http://www.desiurl.com/2c53f |<a href="http://www.desiurl.com/2c53f">free ringtone for lg sprint phone</a> | http://www.desiurl.com/916f9 |<a href="http://www.desiurl.com/916f9">totally free cell phone ringtone</a> | http://www.desiurl.com/92166 |<a href="http://www.desiurl.com/92166">free cell phone game and ringtone</a> |
http://www.desiurl.com/ad1b3 |<a href="http://www.desiurl.com/ad1b3">free ringtone for cellular south phone</a> | http://www.desiurl.com/2bc14 |
<a href="http://www.desiurl.com/2bc14">download free mobile phone ringtone</a> | http://www.desiurl.com/aa882 |<a href="http://www.desiurl.com/aa882">free ringtone for verizon mobile phone</a> | <a href="http://www.desiurl.com/165c8">nokia hindi ringtone</a> | <a href="http://www.desiurl.com/e0149">nokia compose ringtone</a> | <a href="http://www.desiurl.com/6379c">free nokia hindi ringtone</a> | <a href="http://www.desiurl.com/35957">mobile nokia phone ringtone</a> | <a href="http://www.desiurl.com/05b98">nokia 3310 composer free ringtone</a> | <a href="http://www.desiurl.com/b0fd1">polyphonic ringtone for nokia mobile phone</a> | <a href="http://www.desiurl.com/19583">free nokia 2260 ringtone</a> | <a href="http://www.desiurl.com/520e7">ringtone for nokia 3300</a> | <a href="http://www.desiurl.com/df4d1">nokia 3120 ringtone</a> |
This link http://blogs.vbcity.com/skullcrusher/articles/7736.aspx from above does not seem to work. I am trying to get this to work in InfoPath 2007, VS2005 and MOSS 2007 can anyone help ?
Hi Adam,
I have done exactly what you said, and it will not save it. Another thing, If I modify a list (add columns) and use the Custom List Form, I don't get the new columns...
Tom- My solution was to just modify the NewForm.aspx by adding the controls that I wanted.
Correction..When I add a new ASPX page, follow the steps for inserting content and changing the forms that display...PRESTO!!!!!
Ran into a very potential very dangerous check with this. We were re-customizing an existing events calendar form from SPS2003 to SPS2007 and ran into the same "invalid page url:" error after following the instructions. In searching around the the web, we found a pretty good description and troubleshooting posting for that error from David Szabo here: http://blogs.msdn.com/dszabo/default.aspx
It looks for the most part that it completely breaks the web part if you replace the existing newform/editform/dispform.aspx with the new one(s) you created by renaming the edited one back to the original name (which we did).
We learned the very hard way that you shouldn't do this. We also learned that you cannot take 2003 web parts lists and import into 2007 so we ended up having to upgrade another instance of our old portal just to retrieve a clean copy of that events list webpart due to the amount of data contained in it.
Instead, keep the renamed aspx pages as they are. Then go to the properties of the list > Supporting Files Tab and repoint to the new aspx pages (for example repoint newform.aspx to newform2.aspx). It works fine after that.
PingBack from http://parkesy.wordpress.com/2007/03/09/infopath-sharepoint-tip/
[URL=http://ersmart.info/bentleydierks/]bentley dierks[/URL]
<a href="http://ersmart.info/bedmattressfuton/">bed mattress futon</a>
<a href="http://ersmart.info/anidifrancoticket/">ani difranco ticket</a>
[URL=http://ersmart.info/autoloanfinancing.com/]auto loan financing.com[/URL]
[URL=http://ersmart.info/atlantamazda/]atlanta mazda[/URL]
[URL=http://ersmart.info/crissymoran/]crissy moran[/URL]
<a href="http://ersmart.info/bellbivdevoe/">bell biv devoe</a>
<a href="http://ersmart.info/janetjacksonweightloss/">janet jackson weight loss</a>
<a href="http://ersmart.info/mightymorphinpowerrangers/">mighty morphin power rangers</a>
<a href="http://ersmart.info/salliemaestudentloan/">sallie mae student loan</a>
[URL=http://ersmart.info/jackblacksoundboard/]jack black soundboard[/URL]
[URL=http://ersmart.info/alienantcdsfarm/]alien ant cds farm[/URL]
[URL=http://ersmart.info/westsideconnection/]westside connection[/URL]
[URL=http://ersmart.info/cardelawareusedwilmington/]car delaware used wilmington[/URL]
[URL=http://ersmart.info/souljaboy/]soulja boy[/URL]
<a href="http://ersmart.info/clipperhotellepitrepointeà/">clipper hotel le pitre pointe à</a>
[URL=http://ersmart.info/beastieboyticket/]beastie boy ticket[/URL]
[URL=http://ersmart.info/sisterhoodofthetravelingpants/]sisterhood of the traveling pants[/URL]
[URL=http://ersmart.info/twistaticket/]twista ticket[/URL]
<a href="http://ersmart.info/kekelil/">keke lil</a>
<a href="http://ersmart.info/philvassar/">phil vassar</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]
Luogo molto buon:) Buona fortuna!
<a href=" http://tenuate.multiforum.nl "> Buy tenuate </a>
<a href=" http://butalbital.multiforum.nl "> Buy butalbital </a>
<a href=" http://levitra.multiforum.nl "> Buy levitra </a>
<a href=" http://xanax.multiforum.nl "> Buy xanax </a>
<a href=" http://tramadol.multiforum.nl "> Buy tramadol </a>
<a href=" http://cialis.multiforum.nl "> Buy cialis </a>
<a href=" http://propecia.communityhost.de "> Buy propecia </a>
[URL=http://ersmart.info/davemathewsband/]dave mathews band[/URL]
[URL=http://ersmart.info/looneytune/]looney tune[/URL]
<a href="http://ersmart.info/dresdendoll/">dresden doll</a>
[URL=http://ersmart.info/vaneweather/]vane weather[/URL]
<a href="http://ersmart.info/krackeruncle/">kracker uncle</a>
[URL=http://ersmart.info/keakdasneak/]keak da sneak[/URL]
[URL=http://ersmart.info/alabamacarhuntsvilleused/]alabama car huntsville used[/URL]
<a href="http://ersmart.info/swampcooler/">swamp cooler</a>
<a href="http://ersmart.info/georgestraitticket/">george strait ticket</a>
<a href="http://ersmart.info/jodecimusic/">jodeci">http://ersmart.info/jodecimusic/">jodeci music</a>
<a href="http://ersmart.info/bizzybone/">bizzy bone</a>
[URL=http://ersmart.info/angelofairwaves/]angel of airwaves[/URL]
<a href="http://ersmart.info/philhellmuthstexasholdem/">phil hellmuths texas holdem</a>
[URL=http://ersmart.info/jodecimusic/]jodeci music[/URL]
[URL=http://ersmart.info/beboinsign/]bebo in sign[/URL]
[URL=http://ersmart.info/concertlisaloebticket/]concert lisa loeb ticket[/URL]
[URL=http://ersmart.info/martinamcbrideticket/]martina mcbride ticket[/URL]
[URL=http://ersmart.info/downloadsammie/]download sammie[/URL]
<a href="http://ersmart.info/carusedvallejo/">car used vallejo</a>
[URL=http://ersmart.info/clipperhotellepitrepointeà/]clipper hotel le pitre pointe à[/URL]
%3Ca%20href%3D%22http%3A%2F%2Fersmart.info%2Fkrystalsteal%2F%22%3Ekrystal%20steal%3C%2Fa%3E%20%0D%0A%3Ca%20href%3D%22http%3A%2F%2Fersmart.info%2Fmariovasquez%2F%22%3Emario%20vasquez%3C%2Fa%3E%20%0D%0A%3Ca%20href%3D%22http%3A%2F%2Fersmart.info%2Fanidifrancoticket%2F%22%3Eani%20difranco%20ticket%3C%2Fa%3E%20%0D%0A%3Ca%20href%3D%22http%3A%2F%2Fersmart.info%2Fyoungjeezy%2F%22%3Eyoung%20jeezy%3C%2Fa%3E%20%0D%0A%3Ca%20href%3D%22http%3A%2F%2Fersmart.info%2Fmightymorphinpowerranger%2F%22%3Emighty%20morphin%20power%20ranger%3C%2Fa%3E%20%0D%0A%3Ca%20href%3D%22http%3A%2F%2Fersmart.info%2Fweezybaby%2F%22%3Eweezy%20baby%3C%2Fa%3E%20%0D%0A%5BURL%3Dhttp%3A%2F%2Fersmart.info%2Fatbvideo%2F%5Datb%20video%5B%2FURL%5D%20%0D%0A%5BURL%3Dhttp%3A%2F%2Fersmart.info%2Fjoebudden%2F%5Djoe%20budden%5B%2FURL%5D%20%0D%0A%3Ca%20href%3D%22http%3A%2F%2Fersmart.info%2Fbeastieboyticket%2F%22%3Ebeastie%20boy%20ticket%
<a href="http://ersmart.info/bambooblinds/">bamboo blinds</a>
<a href="http://ersmart.info/aaroncarterconcertticket/">aaron carter concert ticket</a>
<a href="http://ersmart.info/chriscagle/">chris cagle</a>
<a href="http://ersmart.info/lexussanjosecalifornia/">lexus san jose california</a>
<a href="http://ersmart.info/chevroletcountyorange/">chevrolet county orange</a>
<a href="http://ersmart.info/chilihotpepersred/">chili hot pepers red</a>
[URL=http://ersmart.info/concertcountingcrowticket/]concert counting crow ticket[/URL]
<a href="http://ersmart.info/bmwfortworth/">bmw fort worth</a>
[URL=http://ersmart.info/secondhandserenade/]secondhand serenade[/URL]
[URL=http://ersmart.info/nappyroots/]nappy roots[/URL]
<a href="http://ersmart.info/ckydvd/">cky dvd</a>
[URL=http://ersmart.info/finchconcertticket/]finch concert ticket[/URL]
[URL=http://ersmart.info/incubusconcertticket/]incubus concert ticket[/URL]
<a href="http://ersmart.info/looneytune/">looney tune</a>
<a href="http://ersmart.info/toilettoto/">toilet toto</a>
<a href="http://ersmart.info/duranduranticket/">duran duran ticket</a>
<a href="http://ersmart.info/waylonjennings/">waylon jennings</a>
<a href="http://ersmart.info/antoniochevroletsan/">antonio chevrolet san</a>
<a href="http://ersmart.info/edwinmccain/">edwin mccain</a>
<a href="http://wapurl.co.uk/?WOQUEYZ">free">http://wapurl.co.uk/?WOQUEYZ">free prn</a>[URL=http://wapurl.co.uk/?WOQUEYZ]free prn[/URL]<a href="http://wapurl.co.uk/?XWXL6PN">free">http://wapurl.co.uk/?XWXL6PN">free download hentai prn games ganguro girl</a>[URL=http://wapurl.co.uk/?XWXL6PN]free download hentai prn games ganguro girl[/URL]<a href="http://wapurl.co.uk/?DPTTGJA">free">http://wapurl.co.uk/?DPTTGJA">free prn videos</a>[URL=http://wapurl.co.uk/?DPTTGJA]free prn videos[/URL]<a href="http://wapurl.co.uk/?A5PCUT0">free">http://wapurl.co.uk/?A5PCUT0">free prn movies</a>[URL=http://wapurl.co.uk/?A5PCUT0]free prn movies[/URL]<a href="http://wapurl.co.uk/?6ZM76TF">free">http://wapurl.co.uk/?6ZM76TF">free prn pics</a>[URL=http://wapurl.co.uk/?6ZM76TF]free prn pics[/URL]<a href="http://wapurl.co.uk/?3IBYPLS">free">http://wapurl.co.uk/?3IBYPLS">free prn clips</a>[URL=http://wapurl.co.uk/?3IBYPLS]free prn clips[/URL]<a href="http://wapurl.co.uk/?2FW29GP">free">http://wapurl.co.uk/?2FW29GP">free teen prn mvies</a>[URL=http://wapurl.co.uk/?2FW29GP]free teen prn mvies[/URL]<a href="http://wapurl.co.uk/?I6K7H87">free">http://wapurl.co.uk/?I6K7H87">free granny prn</a>[URL=http://wapurl.co.uk/?I6K7H87]free granny prn[/URL]<a href="http://wapurl.co.uk/?DO61W4K">free">http://wapurl.co.uk/?DO61W4K">free prn no credit card</a>[URL=http://wapurl.co.uk/?DO61W4K]free prn no credit card[/URL]<a href="http://wapurl.co.uk/?4HAV10L">free">http://wapurl.co.uk/?4HAV10L">free *** videos prn</a>[URL=http://wapurl.co.uk/?4HAV10L]free *** videos prn[/URL]<a href="http://wapurl.co.uk/?KFREQT6">free">http://wapurl.co.uk/?KFREQT6">free prn stories</a>[URL=http://wapurl.co.uk/?KFREQT6]free prn stories[/URL]<a href="http://wapurl.co.uk/?YHXU2GR">free">http://wapurl.co.uk/?YHXU2GR">free teen prn</a>[URL=http://wapurl.co.uk/?YHXU2GR]free teen prn[/URL]<a href="http://wapurl.co.uk/?6TR8FR2">free">http://wapurl.co.uk/?6TR8FR2">free gay prn</a>[URL=http://wapurl.co.uk/?6TR8FR2]free gay prn[/URL]<a href="http://wapurl.co.uk/?S3036CJ">free">http://wapurl.co.uk/?S3036CJ">free rape prn</a>[URL=http://wapurl.co.uk/?S3036CJ]free rape prn[/URL]<a href="http://wapurl.co.uk/?8ZVB28B">free">http://wapurl.co.uk/?8ZVB28B">free prn pictures</a>[URL=http://wapurl.co.uk/?8ZVB28B]free prn pictures[/URL]<a href="http://wapurl.co.uk/?3YQF3AY">free">http://wapurl.co.uk/?3YQF3AY">free prn movie</a>[URL=http://wapurl.co.uk/?3YQF3AY]free prn movie[/URL]<a href="http://wapurl.co.uk/?6ZAMIMV">free">http://wapurl.co.uk/?6ZAMIMV">free prn sluts</a>[URL=http://wapurl.co.uk/?6ZAMIMV]free prn sluts[/URL]<a href="http://wapurl.co.uk/?U2ZWANO">free">http://wapurl.co.uk/?U2ZWANO">free prn and chat webcams</a>[URL=http://wapurl.co.uk/?U2ZWANO]free prn and chat webcams[/URL]<a href="http://wapurl.co.uk/?O4J79WI">free">http://wapurl.co.uk/?O4J79WI">free cartoon prn movies</a>[URL=http://wapurl.co.uk/?O4J79WI]free cartoon prn movies[/URL]<a href="http://wapurl.co.uk/?XKNRDIE">free">http://wapurl.co.uk/?XKNRDIE">free prn video</a>[URL=http://wapurl.co.uk/?XKNRDIE]free prn video[/URL]<a href="http://wapurl.co.uk/?81RHHJ8">free">http://wapurl.co.uk/?81RHHJ8">free toon prn</a>[URL=http://wapurl.co.uk/?81RHHJ8]free toon prn[/URL]<a href="http://wapurl.co.uk/?L90FLKF">free">http://wapurl.co.uk/?L90FLKF">free prn trailers</a>[URL=http://wapurl.co.uk/?L90FLKF]free prn trailers[/URL]<a href="http://wapurl.co.uk/?WDTCVOE">free">http://wapurl.co.uk/?WDTCVOE">free granny prn vide</a>[URL=http://wapurl.co.uk/?WDTCVOE]free granny prn vide[/URL]<a href="http://wapurl.co.uk/?KAQ39P9">free">http://wapurl.co.uk/?KAQ39P9">free prn facials</a>[URL=http://wapurl.co.uk/?KAQ39P9]free prn facials[/URL]<a href="http://wapurl.co.uk/?34OOJ1F">free">http://wapurl.co.uk/?34OOJ1F">free *** prn</a>
[URL=http://wapurl.co.uk/?34OOJ1F]free *** prn[/URL]<a href="http://wapurl.co.uk/?TEHD3T1">free">http://wapurl.co.uk/?TEHD3T1">free mature prn pics</a>[URL=http://wapurl.co.uk/?TEHD3T1]free mature prn pics[/URL]<a href="http://wapurl.co.uk/?F23AK68">prn">http://wapurl.co.uk/?F23AK68">prn cartoons free</a>[URL=http://wapurl.co.uk/?F23AK68]prn cartoons free[/URL]<a href="http://wapurl.co.uk/?KT91YTO">free">http://wapurl.co.uk/?KT91YTO">free ghay prn</a>[URL=http://wapurl.co.uk/?KT91YTO]free ghay prn[/URL]<a href="http://wapurl.co.uk/?AVAYGS5">free">http://wapurl.co.uk/?AVAYGS5">free hentai lolicon kiddie prn</a>[URL=http://wapurl.co.uk/?AVAYGS5]free hentai lolicon kiddie prn[/URL]<a href="http://wapurl.co.uk/?QZB3JI5">free">http://wapurl.co.uk/?QZB3JI5">free prn clip</a>[URL=http://wapurl.co.uk/?QZB3JI5]free prn clip[/URL]<a href="http://wapurl.co.uk/?2VIHAFH">free">http://wapurl.co.uk/?2VIHAFH">free download prn</a>[URL=http://wapurl.co.uk/?2VIHAFH]free download prn[/URL]<a href="http://wapurl.co.uk/?LZETZ02">free">http://wapurl.co.uk/?LZETZ02">free prn milfs</a>[URL=http://wapurl.co.uk/?LZETZ02]free prn milfs[/URL]<a href="http://wapurl.co.uk/?CUIQY96">free">http://wapurl.co.uk/?CUIQY96">free latin prn</a>[URL=http://wapurl.co.uk/?CUIQY96]free latin prn[/URL]<a href="http://wapurl.co.uk/?KIFNJQH">free">http://wapurl.co.uk/?KIFNJQH">free mature prn</a>[URL=http://wapurl.co.uk/?KIFNJQH]free mature prn[/URL]<a href="http://wapurl.co.uk/?ONLZCBJ">free">http://wapurl.co.uk/?ONLZCBJ">free hairy prn pics</a>[URL=http://wapurl.co.uk/?ONLZCBJ]free hairy prn pics[/URL]<a href="http://wapurl.co.uk/?LE7T7AB">free">http://wapurl.co.uk/?LE7T7AB">free prn cartoons</a>[URL=http://wapurl.co.uk/?LE7T7AB]free prn cartoons[/URL]<a href="http://wapurl.co.uk/?FCP68IZ">free">http://wapurl.co.uk/?FCP68IZ">free downloads prn</a>[URL=http://wapurl.co.uk/?FCP68IZ]free downloads prn[/URL]
What about COMPUTED Site Columns. Unfortunately they dones't show up anywhere in the UI - any ideas why not?
<a href= http://privatecasinosite.info/index10.html >AMERICAN POKER 2</a> [url=http://privatecasinosite.info/index10.html]AMERICAN POKER 2[/url] <a href= http://privatecasinosite.info/index4.html >casino roulette</a> [url=http://privatecasinosite.info/index4.html]casino roulette[/url] <a href= http://privatecasinosite.info/index9.html >play black jack online</a> [url=http://privatecasinosite.info/index9.html]play black jack online[/url]
Thanks for this info! I already have code written in my form that is vbs. How do I convert the line to vbs?
XDocument.DataObjects["DummyUsers"].DOM.loadXML(XDocument.DataObjects["Users"].DOM.xml);
<a href=" http://home.mn.rr.com/drevecky/archive/incest-galleries.html ">incest galleries</a> <a href=" http://home.mn.rr.com/drevecky/archive/incest-porn.html ">incest porn</a> <a href=" http://home.mn.rr.com/drevecky/archive/her-first-anal.html ">her first anal</a>
This post finally solved my issue. You're great- thanks!
These are now my two solutins to most of my request nightmares:
WebRequestObject.ServicePoint.Expect100Continue = False
WebRequestObject.KeepAlive = False
E evidente che il luogo e stato fatto dalla persona che realmente conosce il mestiere!
Hey,
Is it possible to change Save button (<Sharepoint:SaveButton>) behaviour?
I need to open Edit Form in popup window (for related list management). After save I want to close popup and refresh parent page (using JS).
Have you any Ideas how to do this?
Nice addition to Smart Part! However, I was trying to put a gridview control into a update panel (as in your screen cast), but when I try to use paging it comes up with the following error:
Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Reponse.Write(), reponse filters, HttpModules, or server trace is enabled.
Any ideas how to fix this?
Many thanks in advance,
Hello, i have try to install in a new server the smartpart with ajax, but i received an error. then i try to install smartpart 1.0 and i can't because i receive this error: The solution can not be deployed. Directory "ReturnOfSmartPart" associated with feature '2d7427c2-263d-45fe-acb3-4a0306093c04' in the solution is used by feature '28d3dcf2-409f-4653-8a69-1f0ce0819e1f' installed in the farm. All features must have unique directories to avoid overwriting files.
Can you help me??? is there a place where i can see how to uninstall smartpart and reinstall???
<a href= http://roulette.usabestsites.info >Roulette</a> [url=http://roulette.usabestsites.info]Roulette[/url] <a href= http://jackpot-slots.usabestsites.info >jackpot slots</a> [url=http://jackpot-slots.usabestsites.info]jackpot slots[/url] <a href= http://party-poker.usabestsites.info >party poker</a> [url=http://party-poker.usabestsites.info]party poker[/url]
Very Good Site! Thanx http://daddy.onall.info/index10.html ssjwmv <a href= http://daddy.onall.info/daddy-does-daughter.html">http://daddy.onall.info/daddy-does-daughter.html >daddy does daughter</a> [url=http://daddy.onall.info/daddy-does-daughter.html">http://daddy.onall.info/daddy-does-daughter.html]daddy does daughter[/url] <a href= http://daddy.onall.info/daddy-frank.html">http://daddy.onall.info/daddy-frank.html >daddy frank</a> [url=http://daddy.onall.info/daddy-frank.html">http://daddy.onall.info/daddy-frank.html]daddy frank[/url] <a href= http://daddy.onall.info/daddy-***-me.html >daddy *** me</a> [url=http://daddy.onall.info/daddy-***-me.html]daddy *** me[/url] <a href= http://daddy.onall.info/daddy-fucking-daughter-stories.html >daddy fucking daughter stories</a> [url=http://daddy.onall.info/daddy-fucking-daughter-stories.html]daddy fucking daughter stories[/url] <a href= http://daddy.onall.info/daddy-fucking-there-little-girls.html >daddy fucking there little girls</a> [url=http://daddy.onall.info/daddy-fucking-there-little-girls.html]daddy fucking there little girls[/url] <a href= http://daddy.onall.info/daddy-fucks-daughter.html >daddy fucks daughter</a> [url=http://daddy.onall.info/daddy-fucks-daughter.html]daddy fucks daughter[/url] <a href= http://daddy.onall.info/daddy-hunt.html >daddy hunt</a> [url=http://daddy.onall.info/daddy-hunt.html]daddy hunt[/url] <a href= http://daddy.onall.info/daddy-i-miss-you-poem.html >daddy i miss you poem</a> [url=http://daddy.onall.info/daddy-i-miss-you-poem.html]daddy i miss you poem[/url] <a href= http://daddy.onall.info/daddy-im-a-whore.html >daddy im a whore</a> [url=http://daddy.onall.info/daddy-im-a-whore.html]daddy im a whore[/url] <a href= http://daddy.onall.info/daddy-it-feels-so-good.html >daddy it feels so good</a> [url=http://daddy.onall.info/daddy-it-feels-so-good.html]daddy it feels so good[/url]
I am using your SmartPart assembly to integrate custom asp.net user controls with AJAX functionality on to my sharepoint site. I got the following error. Could you please give me suggestion or whats wrong in it.
Error: unable to load ~\/UserControls\AdvancedSearchPanel.ascx
Details: c:\Inetpub\wwwroot\wss\VirtualDirectories\81\usercontrols\AdvancedSearchPanel.ascx.cs(94): error CS0234: The type or namespace name 'AJAXConnectionData' does not exist in the namespace 'SmartPart' (are you missing an assembly reference?)
Aravind.
<a href= http://acquisti-on-line.italybusinessguide.info >acquisti on line</a> [url=http://acquisti-on-line.italybusinessguide.info]acquisti on line[/url] <a href= http://incontro-agrigento.italybusinessguide.info >incontro agrigento</a> [url=http://incontro-agrigento.italybusinessguide.info]incontro agrigento[/url] <a href= http://leggi.italybusinessguide.info >Leggi</a> [url=http://leggi.italybusinessguide.info]Leggi[/url] <a href= http://temi-per-cellulare.italybusinessguide.info >TEMI PER CELLULARE</a> [url=http://temi-per-cellulare.italybusinessguide.info]TEMI PER CELLULARE[/url]
I was trying to add a custom list as mentioned here; however, kept getting an error when clicking "Save" with the insert command. After recreating a test list and adding the fields one by one, I realized that the error occurred when using a field (in my case a date field) with a formula for the default value. Removing the default formula removed the error.
My question now is, has anyone found a work around for this, and when adding a cutom new/edit form from the list data source and not using the Insert/SharePoint Controls/Custom List Form menu, the "Save" button saves, but doesn't return to the calling page (even with "Source" attribute set in the query string for the page). Can one override the OnCLick="BLOCKED SCRIPT {ddwrt:GenFireServerEvent('__commit')}" event somehow?
Hopefully this is clear enough,
Mark
I enabled the scheduling by populating start and end date for publishing. Once is saved, the page was in draft mode....i couldn't see any other difference between scheduled and unscheduled page....The scheduled page was displayed as like normal page....it didn't expired....Is there any issues ....Pls let me know how it has to work....
Here's a useful link when basic form customization isn't enough:
http://msdn2.microsoft.com/en-us/library/ms916819.aspx
I've tried to make it work,but it seems that it doesen't with the new version of AJAX Control Toolkit(1.0.10301).Perhaps because of the change of tagPrefix from "ajaxToolkit" to "cc1".But although i've made several changes,and tried in severel ways,i didn't manage to make it work...
So,could you give me some help?
Nice site. Thanks.
Great post.
I've tried this on one server and it worked fine.
However on a second server I get the error message "An error occurred trying to publish this page on the set schedule. Republish the page with a new date or view the log if the problem continues".
Great as this is there's nothing in the log files or in the event log!?
Any help would be appreciated.
James
somestrangetextvista http://sdfsdfsdf.com
I am stuck in am major issue.
I have a development virtual server with Ms VS 2003 and wss, after completion of code , now I have migrated this site to another virtual server which has only wss.
I am able to access normal webparts . But those webparts with Data Grids Excel exports are not able to work.
If I give anonymous access to the wss and iss, if can show these webparts also.
What configuration issues is causing this problem??
I have the same problem as Adriano Oliveira.
Is there any way to change the email that alert sends? I would like to know how to customize the body of that email, Subject?
As a follow up it only seems to fail for site collections which are using a content database I have restored?
Just to finish my post,
it turns out one of my colleagues new what was causing the problem.
When you restore the content database it fails to create some of the job definitions including the Schedule Approval one.
The fix, well simply create another site collection in the web application using the publishing definition and the job definitions are created correctly.
Hope this information is useful to some other.
Thanks dude...
it is helpful.
but we should stop the look after some time
so i have done below trick to stop waiting after 30 minute...
public void OnEvent(SPListEvent listEvent)
int intSecondCounter=0;
SPFile file = web.GetFile(listEvent.UrlAfter);
while(file.CheckOutStatus != SPFile.SPCheckOutStatus.None)
System.Threading.Thread.Sleep(1000);
file = web.GetFile(le.UrlAfter);
intSecondCount++;
//if document is still open for more than 30 min, exit the waiting thread...
if(intSecondCount>=1800)
break;
Same question as Amar...
but extended: I have VS on my machine and MOSS on my VM. I would like to create web parts for MOSS 2007 on my machine but I cannot install Visual Studio 2005 extensions for Windows SharePoint Services 3.0 on it because it is WinXP and WSS is not installed on it :(
Any workarounds for this?
Hello there. I have put together a site that I hope many others may want to use. It is called, Photowalking.org. You are welcome to register with the site and post any upcoming photowalks that you organize. Contact me if you have any questions.
Lo trovo piuttosto impressionante. Lavoro grande fatto..)
Cheapest prices online pharmacy:
<a href="http://www.pharmacy-style.com/">online">http://www.pharmacy-style.com/">online pharmacy</a>. [url=http://www.pharmacy-style.com/]online pharmacy[/url]. <a href="http://www.pharmacy-style.com/erectile-dysfunction.htm">erectile dysfunction</a>. [url=http://www.pharmacy-style.com/erectile-dysfunction.htm]erectile dysfunction[/url]. <a href="http://www.pharmacy-style.com/viagra.htm">cheap viagra</a>. [url=http://www.pharmacy-style.com/viagra.htm]cheap viagra[/url]. <a href="http://www.pharmacy-style.com/cialis.htm">cheap cialis</a>. [url=http://www.pharmacy-style.com/cialis.htm]cheap cialis[/url]. <a href="http://www.pharmacy-style.com/levitra.htm">cheap levitra</a>. [url=http://www.pharmacy-style.com/levitra.htm]cheap levitra[/url]. <a href="http://www.pharmacy-style.com/viagra-soft.htm">viagra soft tabs</a>. [url=http://www.pharmacy-style.com/viagra-soft.htm]viagra soft tabs[/url]. <a href="http://www.pharmacy-style.com/cialis-soft.htm">cialis soft tabs</a>. [url=http://www.pharmacy-style.com/cialis-soft.htm]cialis soft tabs[/url].
<a href="http://cigarsworld.net/Fonseca-cigars.php">Fonseca cigars</a> is one of the most exquisite cigar brands in Cuba. Reviews describe this brand as
offering to the consumers all the necessary ingredients for making the experience of enjoying this type of cigar, as unique and special as possible.
http://lowcholesteroldietz.tripod.com <a href=http://lowcholesteroldietz.tripod.com>low cholesterol diet</a> [url=http://lowcholesteroldietz.tripod.com]low cholesterol diet[/url]
Re: <a href=http://medjetnet.info/doxycycline/buy-doxycycline.html>Doxycycline</a>">http://medjetnet.info/doxycycline/buy-doxycycline.html>Doxycycline</a> is used to treat bacterial infections, including pneumonia and other respiratory tract infections; Lyme disease; acne; infections of skin, genital, and urinary systems; and anthrax (after inhalational exposure). It is also used to prevent malaria. Doxycycline is in a class of medications called tetracycline antibiotics. It works by preventing the growth and spread of bacteria. Antibiotics will not work for colds, flu, or other viral infections.
[URL=http://medjetnet.info/doxycycline/buy-doxycycline.html]buy doxycycline[/URL]|
<a href= http://hometown.aol.ca/lsm25mbyny/index.html >finance</a> [url=http://hometown.aol.ca/lsm25mbyny/index.html]finance[/url] <a href= http://hometown.aol.com/serlis23m/online-casino.html >online casino reviews</a> [url=http://hometown.aol.com/serlis23m/online-casino.html]online casino reviews[/url] <a href= http://hometown.aol.com/serlis23m/index.html >finance</a> [url=http://hometown.aol.com/serlis23m/index.html]finance[/url] <a href= http://hometown.aol.de/testtestserg1234/index.html >finance</a> [url=http://hometown.aol.de/testtestserg1234/index.html]finance[/url] <a href= http://hometown.aol.com/kery002/02/index.html >test</a> [url=http://hometown.aol.com/kery002/02/index.html]test[/url]
<a href= http://firenze-astoria-palazzo-gaddi.toplinks2006.info >FIRENZE ASTORIA PALAZZO GADDI</a> [url=http://firenze-astoria-palazzo-gaddi.toplinks2006.info]FIRENZE ASTORIA PALAZZO GADDI[/url] <a href= http://fine-settimana-lombardia.toplinks2006.info >Fine settimana lombardia</a> [url=http://fine-settimana-lombardia.toplinks2006.info]Fine settimana lombardia[/url] <a href= http://finalmente-due-motorino.toplinks2006.info >Finalmente due motorino</a> [url=http://finalmente-due-motorino.toplinks2006.info]Finalmente due motorino[/url] <a href= http://flash-pour-cristor-firmware.toplinks2006.info >flash pour cristor firmware</a> [url=http://flash-pour-cristor-firmware.toplinks2006.info]flash pour cristor firmware[/url] <a href= http://finalmente-vacanza.toplinks2006.info >finalmente vacanza</a> [url=http://finalmente-vacanza.toplinks2006.info]finalmente vacanza[/url]
<a href='http://italyenjoy.sitesfree.com/www.dragon-ball-gt.it.html'>www.dragon ball gt.it</a> [URL=http://italyenjoy.sitesfree.com/www.dragon-ball-gt.it.html ]www.dragon ball gt.it[/URL]
<a href='http://italyenjoy.sitesfree.com/sms-comuni.html'>sms comuni</a> [URL=http://italyenjoy.sitesfree.com/sms-comuni.html ]sms comuni[/URL]
<a href='http://italyenjoy.sitesfree.com/casalinghe-porno.html'>casalinghe porno</a> [URL=http://italyenjoy.sitesfree.com/casalinghe-porno.html ]casalinghe porno[/URL]
<a href='http://italyenjoy.sitesfree.com/natalia-mesa-bush.html'>natalia mesa bush</a> [URL=http://italyenjoy.sitesfree.com/natalia-mesa-bush.html ]natalia mesa bush[/URL]
<a href='http://italyenjoy.sitesfree.com/anastasia-cartone.html'>anastasia cartone</a> [URL=http://italyenjoy.sitesfree.com/anastasia-cartone.html ]anastasia cartone[/URL]
<a href='http://italyenjoy.sitesfree.com/melina-perez-nuda.html'>melina perez nuda</a> [URL=http://italyenjoy.sitesfree.com/melina-perez-nuda.html ]melina perez nuda[/URL]
<a href='http://italyenjoy.sitesfree.com/temi-pirandello.html'>temi pirandello</a> [URL=http://italyenjoy.sitesfree.com/temi-pirandello.html ]temi pirandello[/URL]
<a href='http://italyenjoy.sitesfree.com/frasi-di-inaugurazione.html'>frasi di inaugurazione</a> [URL=http://italyenjoy.sitesfree.com/frasi-di-inaugurazione.html ]frasi di inaugurazione[/URL]
<a href='http://italyenjoy.sitesfree.com/youporno.html'>youporno</a> [URL=http://italyenjoy.sitesfree.com/youporno.html ]youporno[/URL]
<a href='http://italyenjoy.sitesfree.com/relatos-sexuales-gratis.html'>relatos sexuales gratis</a> [URL=http://italyenjoy.sitesfree.com/relatos-sexuales-gratis.html ]relatos sexuales gratis[/URL]
PingBack from http://webtekconcepts.com/2007/03/18/sps-vs-alfresco/
Best generics online:
<a href="http://www.pharmacy-style.com/">pharmacy">http://www.pharmacy-style.com/">pharmacy online</a>. [url=http://www.pharmacy-style.com/]pharmacy online[/url]. <a href="http://www.pharmacy-style.com/erectile-dysfunction.htm">erectile dys</a>. [url=http://www.pharmacy-style.com/erectile-dysfunction.htm]erectile dys[/url]. <a href="http://www.pharmacy-style.com/viagra.htm">generic viagra</a>. [url=http://www.pharmacy-style.com/viagra.htm]generic viagra[/url]. <a href="http://www.pharmacy-style.com/cialis.htm">generic cialis</a>. [url=http://www.pharmacy-style.com/cialis.htm]generic cialis[/url]. <a href="http://www.pharmacy-style.com/levitra.htm">generic levitra</a>. [url=http://www.pharmacy-style.com/levitra.htm]generic levitra[/url]. <a href="http://www.pharmacy-style.com/viagra-soft.htm">viagra soft</a>. [url=http://www.pharmacy-style.com/viagra-soft.htm]viagra soft[/url]. <a href="http://www.pharmacy-style.com/cialis-soft.htm">cialis soft</a>. [url=http://www.pharmacy-style.com/cialis-soft.htm]cialis soft[/url].
Stupore! ho una sensibilit molto buona circa il vostro luogo!!!!
<a href="http://wapurl.co.uk/?M6J6KWA">download nokia ringtone</a><a href="http://wapurl.co.uk/?1ATJ7W4">download free mobile ringtone virgin</a><a href="http://wapurl.co.uk/?N12QDYV">download ringtone sprint</a><a href="http://wapurl.co.uk/?VXVLR46">arabic download free ringtone</a><a href="http://wapurl.co.uk/?ORLAI71">crazy download free frog ringtone</a><a href="http://wapurl.co.uk/?2LIQORJ">download free ringtone tracfone</a><a href="http://wapurl.co.uk/?D0VLTZ7">download midi ringtone</a><a href="http://wapurl.co.uk/?7125YCX">cellular download free phone ringtone</a><a href="http://wapurl.co.uk/?LPDSW2J">download nextel ringtone software</a><a href="http://wapurl.co.uk/?1O82BPX">download phone ringtone</a><a href="http://wapurl.co.uk/?VPJ3OC7">download motorola ringtone</a><a href="http://wapurl.co.uk/?52KC7WR">download pcs ringtone sprint</a><a href="http://wapurl.co.uk/?JPNEHYP">computer download ringtone</a><a href="http://wapurl.co.uk/?1FWZS8E">christian download free ringtone</a><a href="http://wapurl.co.uk/?FDPN1JQ">download mobile ringtone</a><a href="http://wapurl.co.uk/?Q5NSLOF">download ericsson free ringtone sony</a><a href="http://wapurl.co.uk/?6O73KCJ">download metro pcs ringtone</a><a href="http://wapurl.co.uk/?AG3IM4T">download free ringtone verizon wireless</a><a href="http://wapurl.co.uk/?UN9UN9H">download info personal remember ringtone</a><a href="http://wapurl.co.uk/?HLIGOWV">download pc ringtone</a>
I just spent an hour getting frustrated that my site was not changing the EditForm to my custom version when I clicked save in the Supported items tab. Others here are complaining about the same thing. The solution is to make sure that you have selected the correct *content type* - it should be "item" if you only have one type.
Mine defaulted to folder in the drop-down, which ensures that Sharepoint Designer silently fails to make the change. Frustrating UI design, but a correct failure.
Erectile pharmacy online:
<a href="http://www.pharmacy-style.com/">Generics">http://www.pharmacy-style.com/">Generics Supplier</a>. [url=http://www.pharmacy-style.com/]Generics Supplier[/url]. <a href="http://www.pharmacy-style.com/erectile-dysfunction.htm">erectile problems</a>. [url=http://www.pharmacy-style.com/erectile-dysfunction.htm]erectile problems[/url]. <a href="http://www.pharmacy-style.com/viagra.htm">buy viagra</a>. [url=http://www.pharmacy-style.com/viagra.htm]buy viagra[/url]. <a href="http://www.pharmacy-style.com/cialis.htm">buy cialis</a>. [url=http://www.pharmacy-style.com/cialis.htm]buy cialis[/url]. <a href="http://www.pharmacy-style.com/levitra.htm">buy levitra</a>. [url=http://www.pharmacy-style.com/levitra.htm]buy levitra[/url]. <a href="http://www.pharmacy-style.com/viagra-soft.htm">soft viagra</a>. [url=http://www.pharmacy-style.com/viagra-soft.htm]soft viagra[/url]. <a href="http://www.pharmacy-style.com/cialis-soft.htm">soft cialis</a>. [url=http://www.pharmacy-style.com/cialis-soft.htm]soft cialis[/url].
Thanks for the clarification on the exact steps to take Keith -
I was looking at the batch file thinking that was it, but hate to figure that stuff out via trial and error on any enterprise servers, even the DEV or TEST servers. I just followed those instructions to update four of my Windows Server 2003 DEV boxes and all worked flawlessly. I'll be glad to have all of those errors out of the event viewer.
Good work! </hm>
<a href= http://table-games.vegaswestcasino.info/pool-table-game.html >Pool table game</a> [url=http://table-games.vegaswestcasino.info/pool-table-game.html]Pool table game[/url] <a href= http://bingo.vegaswestcasino.info/bingo-free.html >BINGO FREE</a> [url=http://bingo.vegaswestcasino.info/bingo-free.html]BINGO FREE[/url] <a href= http://craps.vegaswestcasino.info/craps-game.html >CRAPS GAME</a> [url=http://craps.vegaswestcasino.info/craps-game.html]CRAPS GAME[/url] <a href= http://blackjack.vegaswestcasino.info/black-jack.html >black jack</a> [url=http://blackjack.vegaswestcasino.info/black-jack.html]black jack[/url]
I am connected to centralserver administration page but ther is no option for “Configure virtual server settings” . I installed sharepoint v3. Am trying to chage the alrenate access URl but due to this error I cannot add it. Is there any alternate way to add a url from backedn or something like that ?
I have a problem in your design. I use Firefox in Ubuntu.
Best site look my <a href="http://enzyte.vidiac.com">Enzyte</a>
Great work, really nice
Its very usefull to me
thanks you very much Jan
Thanks Jan! It works perfectly!
The BETA seems to work. I did notice that you didn't update the documentation (Installation Guide), since it uses the wrong filename for the .wsp file.
Very valuable information you have here. Thanks..
<a href=" http://www.xhttp.net/s1/viagra.html ">viagra</a>
Unless your ASP.Net site uses dll's that are typically located in your site's bin directory, you dont need to modify SafeControls other than for SmartPart. Just write a user control (.ascx with code behind - either .ascs.cs or .ascx.vb).
If your user control depends on dll's, then you can deploy these in your production web sites bin folder and reference them in the _layouts/web.config.
If you trust your dll's and if they are strongly typed, you can deploy them in the GAC and reference them in the safe control section in the web.config in your web sites root directory.
Hope this helps
I have no solution. We've created a ticket at Microsoft since we are a prefered supplier but no answer so far. We have a pretty large implementation project (5000+ users) ongoing which we intend to use Sharepoint on but if Microsoft can't fix this problem we must recommend another product (such as Documentum). Sad but true....
A thing I noticed is that the problem isnt "Office version related". If arises on both 2007 and 2003. If anyone else got ideas or possible solutions please add a post!
I'm just interested, is it work with MS SPP 2003?
[URL=http://www.stpbudi24.org/integrazione] integrazione [/URL] <a href='http://www.stpbudi24.org/integrazione'> integrazione </a> [URL=http://www.stpbudi24.org/gelato] gelato [/URL] <a href='http://www.stpbudi24.org/gelato'> gelato </a> [URL=http://www.stpbudi24.org/e-nomine] e nomine [/URL] <a href='http://www.stpbudi24.org/e-nomine'> e nomine </a> [URL=http://www.stpbudi24.org/pool] pool [/URL] <a href='http://www.stpbudi24.org/pool'> pool </a> [URL=http://www.stpbudi24.org/tre-metri-sopra-il-cielo] tre metri sopra il cielo [/URL] <a href='http://www.stpbudi24.org/tre-metri-sopra-il-cielo'> tre metri sopra il cielo </a> [URL=http://www.stpbudi24.org/testi-canzoni] testi canzoni [/URL] <a href='http://www.stpbudi24.org/testi-canzoni'> testi canzoni </a> [URL=http://www.stpbudi24.org/morandi] morandi [/URL] <a href='http://www.stpbudi24.org/morandi'> morandi </a> [URL=http://www.stpbudi24.org/capri] capri [/URL] <a href='http://www.stpbudi24.org/capri'> capri </a> [URL=http://www.stpbudi24.org/campania] campania [/URL] <a href='http://www.stpbudi24.org/campania'> campania </a> [URL=http://www.stpbudi24.org/turistiche] turistiche [/URL] <a href='http://www.stpbudi24.org/turistiche'> turistiche </a> [URL=http://www.stpbudi24.org/ramazzotti] ramazzotti [/URL] <a href='http://www.stpbudi24.org/ramazzotti'> ramazzotti </a> [URL=http://www.stpbudi24.org/loghi] loghi [/URL] <a href='http://www.stpbudi24.org/loghi'> loghi </a> [URL=http://www.stpbudi24.org/radio] radio [/URL] <a href='http://www.stpbudi24.org/radio'> radio </a> [URL=http://www.stpbudi24.org/obiettivi] obiettivi [/URL] <a href='http://www.stpbudi24.org/obiettivi'> obiettivi </a> [URL=http://www.stpbudi24.org/journal] journal [/URL] <a href='http://www.stpbudi24.org/journal'> journal </a> [URL=http://www.stpbudi24.org/pace] pace [/URL] <a href='http://www.stpbudi24.org/pace'> pace </a> [URL=http://www.stpbudi24.org/gowns] gowns [/URL] <a href='http://www.stpbudi24.org/gowns'> gowns </a> [URL=http://www.stpbudi24.org/monica] monica [/URL] <a href='http://www.stpbudi24.org/monica'> monica </a> [URL=http://www.stpbudi24.org/copertina] copertina [/URL] <a href='http://www.stpbudi24.org/copertina'> copertina </a> [URL=http://www.stpbudi24.org/accommodation] accommodation [/URL] <a href='http://www.stpbudi24.org/accommodation'> accommodation </a> [URL=http://www.stpbudi24.org/giorno] giorno [/URL] <a href='http://www.stpbudi24.org/giorno'> giorno </a> [URL=http://www.stpbudi24.org/cristiano] cristiano [/URL] <a href='http://www.stpbudi24.org/cristiano'> cristiano </a> [URL=http://www.stpbudi24.org/look] look [/URL] <a href='http://www.stpbudi24.org/look'> look </a> [URL=http://www.stpbudi24.org/vendita-case] vendita case [/URL] <a href='http://www.stpbudi24.org/vendita-case'> vendita case </a> [URL=http://www.stpbudi24.org/moda] moda [/URL] <a href='http://www.stpbudi24.org/moda'> moda </a>
Please provide some instructions for those of us who just don't get it.
How do I get a usercontrol which accesses a SQL database to work in smartpart.
In VS2005 my control works. In MOSS 2007 Smartpart correctly runs your test control. When I add my data access control control.ascx and contol.ascx.vb to my USerControl\folder I can add it to smartpart, but then Sharepoint errors.
I can create a custom control with no connection to my database and that works correctly. As soon as I add a database connection - its a no go.
What am I missing.
Please help, I'd like to ask this: what format do I need to use so that the data in a field show's in a sharepoint list as an actual user?
Just like the "Modified By" default column.
I update the data as DOMAIN\user and it doesn't work.
I update the data as user@domain.com and it doesn't work either.
Do I have to define the XML elemente type as something special?
Is there a special format to use? do I need to modify the XSL somehow?
I'm trying this. However, i'm getting the following error inside this method.
Object reference not set to an instance of an object.
Anybody has any idea about this.
The follwing error occurs even when I set the proxy in web.config:
ProtocolError occured trying to complete the request. The server returned a status code of : ProxyAuthenticationRequired and the status description is : "Proxy Authentication Required"
I have a imported template, How can I make columns in the template to become site columns?
PLS awnser ASAP.
Ohh p nice site! eiyvnm
<a href= http://www.7oms.at/logs/hp-laptop-pavilion-zv5000.html >hp laptop pavilion zv5000</a> [url=http://www.7oms.at/logs/hp-laptop-pavilion-zv5000.html]hp laptop pavilion zv5000[/url] <a href= http://inversionesalternativas.net/stats/logs/car-finance-loan.html >car finance loan</a> [url=http://inversionesalternativas.net/stats/logs/car-finance-loan.html]car finance loan[/url] <a href= http://bor.org.ro/logs/hospital-job-listing.html >hospital job listing</a> [url=http://bor.org.ro/logs/hospital-job-listing.html]hospital job listing[/url] <a href= http://inversionesalternativas.net/stats/logs/houston-new-car-loan.html >houston new car loan</a> [url=http://inversionesalternativas.net/stats/logs/houston-new-car-loan.html]houston new car loan[/url] <a href= http://www.werkskapelle-traisen.at/logs/camera-digital-pc-review-world.html >camera digital pc review world</a> [url=http://www.werkskapelle-traisen.at/logs/camera-digital-pc-review-world.html]camera digital pc review world[/url] <a href= http://bor.org.ro/logs/los-angeles-times-jobs.html >los angeles times jobs</a> [url=http://bor.org.ro/logs/los-angeles-times-jobs.html]los angeles times jobs[/url] <a href= http://inversionesalternativas.net/stats/logs/commercial-loan-sba.html >commercial loan sba</a> [url=http://inversionesalternativas.net/stats/logs/commercial-loan-sba.html]commercial loan sba[/url] <a href= http://www.werkskapelle-traisen.at/logs/olympus-digital-camera-memory.html >olympus digital camera memory</a> [url=http://www.werkskapelle-traisen.at/logs/olympus-digital-camera-memory.html]olympus digital camera memory[/url]
Good pi Luck Mate!
[URL=http://www.ravennzna.org/atti] atti [/URL] <a href='http://www.ravennzna.org/atti'> atti </a> [URL=http://www.ravennzna.org/arredamento] arredamento [/URL] <a href='http://www.ravennzna.org/arredamento'> arredamento </a> [URL=http://www.ravennzna.org/statuto] statuto [/URL] <a href='http://www.ravennzna.org/statuto'> statuto </a> [URL=http://www.ravennzna.org/emulators] emulators [/URL] <a href='http://www.ravennzna.org/emulators'> emulators </a> [URL=http://www.ravennzna.org/progetto] progetto [/URL] <a href='http://www.ravennzna.org/progetto'> progetto </a> [URL=http://www.ravennzna.org/economici] economici [/URL] <a href='http://www.ravennzna.org/economici'> economici </a> [URL=http://www.ravennzna.org/series] series [/URL] <a href='http://www.ravennzna.org/series'> series </a> [URL=http://www.ravennzna.org/hotel-milano] hotel milano [/URL] <a href='http://www.ravennzna.org/hotel-milano'> hotel milano </a> [URL=http://www.ravennzna.org/solari] solari [/URL] <a href='http://www.ravennzna.org/solari'> solari </a> [URL=http://www.ravennzna.org/vento] vento [/URL] <a href='http://www.ravennzna.org/vento'> vento </a> [URL=http://www.ravennzna.org/portale] portale [/URL] <a href='http://www.ravennzna.org/portale'> portale </a> [URL=http://www.ravennzna.org/villa] villa [/URL] <a href='http://www.ravennzna.org/villa'> villa </a> [URL=http://www.ravennzna.org/stradario] stradario [/URL] <a href='http://www.ravennzna.org/stradario'> stradario </a> [URL=http://www.ravennzna.org/appunti] appunti [/URL] <a href='http://www.ravennzna.org/appunti'> appunti </a> [URL=http://www.ravennzna.org/errore] errore [/URL] <a href='http://www.ravennzna.org/errore'> errore </a> [URL=http://www.ravennzna.org/giorgio] giorgio [/URL] <a href='http://www.ravennzna.org/giorgio'> giorgio </a> [URL=http://www.ravennzna.org/ricerca-di] ricerca di [/URL] <a href='http://www.ravennzna.org/ricerca-di'> ricerca di </a> [URL=http://www.ravennzna.org/nude] nude [/URL] <a href='http://www.ravennzna.org/nude'> nude </a> [URL=http://www.ravennzna.org/spettacoli] spettacoli [/URL] <a href='http://www.ravennzna.org/spettacoli'> spettacoli </a> [URL=http://www.ravennzna.org/intesa] intesa [/URL] <a href='http://www.ravennzna.org/intesa'> intesa </a> [URL=http://www.ravennzna.org/semi] semi [/URL] <a href='http://www.ravennzna.org/semi'> semi </a> [URL=http://www.ravennzna.org/arabe] arabe [/URL] <a href='http://www.ravennzna.org/arabe'> arabe </a> [URL=http://www.ravennzna.org/sarai] sarai [/URL] <a href='http://www.ravennzna.org/sarai'> sarai </a> [URL=http://www.ravennzna.org/sofia] sofia [/URL] <a href='http://www.ravennzna.org/sofia'> sofia </a> [URL=http://www.ravennzna.org/doppia] doppia [/URL] <a href='http://www.ravennzna.org/doppia'> doppia </a>
Lucy! Please call me,Lucy! Please call me
Not sure if this is on the similar lines, but I have a display form and am struggling to view the attachments.
Ian
http://geo.ya.com/yojik/sjx/01-20.html <a href="http://geo.ya.com/yojik/sjx/01-20.html">footjobs video</a>
http://gb7b69.probook.de/
Nice class!!! Really really helpful! Thanks!
This is a great feature, but does anyone know how to default it to "yes" for libraries converted during an in-place upgrade from SPS 2003?
The fixes posted above had worked for me until I tried running my application on a vista computer. Now I am back to the same error. Does anyone have any suggestions?
Very Good Site! Thanx http://ciara.abrek.info/index6.html qutggr <a href= http://labia.abrek.info/wet-labia.html >wet labia</a> [url=http://labia.abrek.info/wet-labia.html]wet labia[/url] <a href= http://labia.abrek.info/huge-labia.html >huge labia</a> [url=http://labia.abrek.info/huge-labia.html]huge labia[/url] <a href= http://labia.abrek.info/luscious-labia.html >luscious labia</a> [url=http://labia.abrek.info/luscious-labia.html]luscious labia[/url] <a href= http://labia.abrek.info/young-girl-labia.html >young girl labia</a> [url=http://labia.abrek.info/young-girl-labia.html]young girl labia[/url] <a href= http://labia.abrek.info/labial-reduction.html >labial reduction</a> [url=http://labia.abrek.info/labial-reduction.html]labial reduction[/url] <a href= http://labia.abrek.info/stretched-labia.html >stretched labia</a> [url=http://labia.abrek.info/stretched-labia.html]stretched labia[/url] <a href= http://labia.abrek.info/latest-injectable-for-nasolabia-folds.html >latest injectable for nasolabia folds</a> [url=http://labia.abrek.info/latest-injectable-for-nasolabia-folds.html]latest injectable for nasolabia folds[/url] <a href= http://labia.abrek.info/labia-reduction.html >labia reduction</a> [url=http://labia.abrek.info/labia-reduction.html]labia reduction[/url] <a href= http://labia.abrek.info/sexy-labia.html >sexy labia</a> [url=http://labia.abrek.info/sexy-labia.html]sexy labia[/url] <a href= http://labia.abrek.info/pictures-of-vaginal-labiaplasty.html >pictures of vaginal labiaplasty</a> [url=http://labia.abrek.info/pictures-of-vaginal-labiaplasty.html]pictures of vaginal labiaplasty[/url]
Good Site! http://labia.abrek.info/index.html">http://labia.abrek.info/index.html hhlwfi <a href= http://labia.abrek.info/labia-pull.html">http://labia.abrek.info/labia-pull.html >labia pull</a> [url=http://labia.abrek.info/labia-pull.html">http://labia.abrek.info/labia-pull.html]labia pull[/url] <a href= http://labia.abrek.info/world">http://labia.abrek.info/world\s-longest-labia.html >world\'s longest labia</a> [url=http://labia.abrek.info/world">http://labia.abrek.info/world\s-longest-labia.html]world\'s longest labia[/url] <a href= http://labia.abrek.info/\"oversized-labia\".html >\"oversized labia\"</a> [url=http://labia.abrek.info/\"oversized-labia\".html]\"oversized labia\"[/url] <a href= http://labia.abrek.info/labia-pain.html >labia pain</a> [url=http://labia.abrek.info/labia-pain.html]labia pain[/url] <a href= http://labia.abrek.info/lump-in-labia.html >lump in labia</a> [url=http://labia.abrek.info/lump-in-labia.html]lump in labia[/url] <a href= http://labia.abrek.info/swollen-labias.html >swollen labias</a> [url=http://labia.abrek.info/swollen-labias.html]swollen labias[/url] <a href= http://labia.abrek.info/labia-majora.html >labia majora</a> [url=http://labia.abrek.info/labia-majora.html]labia majora[/url] <a href= http://labia.abrek.info/vaginal-labiaplasty-photos-only.html >vaginal labiaplasty photos only</a> [url=http://labia.abrek.info/vaginal-labiaplasty-photos-only.html]vaginal labiaplasty photos only[/url] <a href= http://labia.abrek.info/labiaproductions.html >labiaproductions</a> [url=http://labia.abrek.info/labiaproductions.html]labiaproductions[/url] <a href= http://labia.abrek.info/cyst-on-the-labia.html >cyst on the labia</a> [url=http://labia.abrek.info/cyst-on-the-labia.html]cyst on the labia[/url]
Please, any help about Microsoft Office Sharepoint Server 2007 Beta 2 Trial Period Expired
omarh@estartasolutions.com
<a href='http://sexoenvivo.androot.info/'>sexoenvivo</a> [URL=http://sexoenvivo.androot.info/ ]sexoenvivo[/URL]
<a href='http://donnesessoconcavallifoto.androot.info/'>donne sesso con cavalli foto</a> [URL=http://donnesessoconcavallifoto.androot.info/ ]donne sesso con cavalli foto[/URL]
<a href='http://disdettaaffittomodulo.androot.info/'>disdetta affitto modulo</a> [URL=http://disdettaaffittomodulo.androot.info/ ]disdetta affitto modulo[/URL]
<a href='http://disegnidacolorarenaruto.androot.info/'>disegni da colorare naruto</a> [URL=http://disegnidacolorarenaruto.androot.info/ ]disegni da colorare naruto[/URL]
<a href='http://enviarxploitgusanito.androot.info/'>enviar xploit gusanito</a> [URL=http://enviarxploitgusanito.androot.info/ ]enviar xploit gusanito[/URL]
<a href='http://ilcazzopiùgrandedelmondo.androot.info/'>il *** più grande del mondo</a> [URL=http://ilcazzopiùgrandedelmondo.androot.info/ ]il *** più grande del mondo[/URL]
<a href='http://audiorelatoeroticocastellano.androot.info/'>audio relato erotico castellano</a> [URL=http://audiorelatoeroticocastellano.androot.info/ ]audio relato erotico castellano[/URL]
<a href='http://elencotelefonicodeicellulari.androot.info/'>elenco telefonico dei cellulari</a> [URL=http://elencotelefonicodeicellulari.androot.info/ ]elenco telefonico dei cellulari[/URL]
<a href='http://wweashelynakedplayboy.androot.info/'>wwe ashely naked playboy</a> [URL=http://wweashelynakedplayboy.androot.info/ ]wwe ashely naked playboy[/URL]
<a href='http://canchadefutbolreglamentaria.androot.info/'>cancha de futbol reglamentaria</a> [URL=http://canchadefutbolreglamentaria.androot.info/ ]cancha de futbol reglamentaria[/URL]
<a href='http://freesexfilm.androot.info/'>freesexfilm</a> [URL=http://freesexfilm.androot.info/ ]freesexfilm[/URL]
<a href='http://pompiniconcavalli.androot.info/'>pompini con cavalli</a> [URL=http://pompiniconcavalli.androot.info/ ]pompini con cavalli[/URL]
<a href='http://abitidacerimoniadavalentinoroma.androot.info/'>abiti da cerimonia da valentino roma</a> [URL=http://abitidacerimoniadavalentinoroma.androot.info/ ]abiti da cerimonia da valentino roma[/URL]
<a href='http://fotosdedeborasecconua.androot.info/'>fotos de debora secco nua</a> [URL=http://fotosdedeborasecconua.androot.info/ ]fotos de debora secco nua[/URL]
<a href='http://dicasdogtapc.androot.info/'>dicas do gta pc</a> [URL=http://dicasdogtapc.androot.info/ ]dicas do gta pc[/URL]
<a href='http://parafrasiinferno.androot.info/'>parafrasi inferno</a> [URL=http://parafrasiinferno.androot.info/ ]parafrasi inferno[/URL]
<a href='http://lafigainfotopiubella.androot.info/'>la figa in foto piu bella</a> [URL=http://lafigainfotopiubella.androot.info/ ]la figa in foto piu bella[/URL]
<a href='http://karinajelinekvideos.androot.info/'>karina jelinek videos</a> [URL=http://karinajelinekvideos.androot.info/ ]karina jelinek videos[/URL]
<a href='http://turismoenogastronomicoparma.androot.info/'>turismo enogastronomico parma</a> [URL=http://turismoenogastronomicoparma.androot.info/ ]turismo enogastronomico parma[/URL]
<a href='http://passioneitalianaristorante.androot.info/'>passione italiana ristorante</a> [URL=http://passioneitalianaristorante.androot.info/ ]passione italiana ristorante[/URL]
HI! Nice design!
<a href= http://***.bigteensboobs.org/angelique-***.html >Angelique ***</a> <a href= http://***.bigteensboobs.org/tight-***.html >Tight ***</a> <a href= http://***.bigteensboobs.org/christy-canyon-***.html >Christy canyon ***</a> <a href= http://***.bigteensboobs.org/young-girls-big-***.html >Young girls big ***</a> <a href= http://***.bigteensboobs.org/hepatits.html >Hepatits</a> <a href= http://***.bigteensboobs.org/public-***.html >Public ***</a> <a href= http://***.bigteensboobs.org/xxl-***.html >Xxl ***</a> <a href= http://***.bigteensboobs.org/large-black-***.html >Large black ***</a> <a href= http://***.bigteensboobs.org/phat-black-ass-and-***.html >Phat black ass and ***</a> <a href= http://***.bigteensboobs.org/teeny-***.html >Teeny ***</a> <a href= http://***.bigteensboobs.org/janet-jackson-***.html >Janet jackson ***</a> <a href= http://***.bigteensboobs.org/freckled-***.html >Freckled ***</a> <a href= http://***.bigteensboobs.org/messy-***.html >Messy ***</a> <a href= http://***.bigteensboobs.org/big-fat-***.html >Big fat ***</a> <a href= http://***.bigteensboobs.org/rub-my-***.html >Rub my ***</a> <a href= http://***.bigteensboobs.org/puffy-***.html >Puffy ***</a> <a href= http://***.bigteensboobs.org/***-pics.html >*** pics</a> <a href= http://***.bigteensboobs.org/lara-croft-***.html >Lara croft ***</a> <a href= http://***.bigteensboobs.org/big-***-and-asses.html >Big *** and asses</a> <a href= http://***.bigteensboobs.org/veiny-***.html >Veiny ***</a> ,HI! Nice design!
<a href= http://***.bigteensboobs.org/angelique-***.html >Angelique ***</a> <a href= http://***.bigteensboobs.org/tight-***.html >Tight ***</a> <a href= http://***.bigteensboobs.org/christy-canyon-***.html >Christy canyon ***</a> <a href= http://***.bigteensboobs.org/young-girls-big-***.html >Young girls big ***</a> <a href= http://***.bigteensboobs.org/hepatits.html >Hepatits</a> <a href= http://***.bigteensboobs.org/public-***.html >Public ***</a> <a href= http://***.bigteensboobs.org/xxl-***.html >Xxl ***</a> <a href= http://***.bigteensboobs.org/large-black-***.html >Large black ***</a> <a href= http://***.bigteensboobs.org/phat-black-ass-and-***.html >Phat black ass and ***</a> <a href= http://***.bigteensboobs.org/teeny-***.html >Teeny ***</a> <a href= http://***.bigteensboobs.org/janet-jackson-***.html >Janet jackson ***</a> <a href= http://***.bigteensboobs.org/freckled-***.html >Freckled ***</a> <a href= http://***.bigteensboobs.org/messy-***.html >Messy ***</a> <a href= http://***.bigteensboobs.org/big-fat-***.html >Big fat ***</a> <a href= http://***.bigteensboobs.org/rub-my-***.html >Rub my ***</a> <a href= http://***.bigteensboobs.org/puffy-***.html >Puffy ***</a> <a href= http://***.bigteensboobs.org/***-pics.html >*** pics</a> <a href= http://***.bigteensboobs.org/lara-croft-***.html >Lara croft ***</a> <a href= http://***.bigteensboobs.org/big-***-and-asses.html >Big *** and asses</a> <a href= http://***.bigteensboobs.org/veiny-***.html >Veiny ***</a>
I have the same problem as Dragan. Im running windows XP with Visual Studio 2005, and M$ wont let me install the studio extensions because im not running windows server 2003. is it actually supposed to be this way ? a requirement to run windows server 2003 to be able to develop for sharepoint services ?
I have written an event handler to validate a form during the ItemUpdating event. If the user did something invalid, it cancels the update and displays the standard SharePoint error page with a customized message that tells the user specifically what they need to correct. This works great with the default EditForm.aspx, but when I use a custom edit form on the same list a just get an error page with a generic message that says "The data source control failed to execute the update command". It looks like my event handler is doing it's validation and cancelling the update ok, but SharePoint is simply detecting that the event was cancelled and supplying its own (useless) error message. Does anyone know a way around this?
<a href='http://fotohard.androot.info/'>fotohard</a> [URL=http://fotohard.androot.info/ ]fotohard[/URL]
<a href='http://lanumerologia2007.androot.info/'>la numerologia 2007</a> [URL=http://lanumerologia2007.androot.info/ ]la numerologia 2007[/URL]
<a href='http://imagenesacolordebenitojuarez.androot.info/'>imagenes a color de benito juarez</a> [URL=http://imagenesacolordebenitojuarez.androot.info/ ]imagenes a color de benito juarez[/URL]
<a href='http://www.telenovelalatormenta.androot.info/'>www.telenovela la tormenta</a> [URL=http://www.telenovelalatormenta.androot.info/ ]www.telenovela la tormenta[/URL]
<a href='http://escucharpistasmusicalesgratis.androot.info/'>escuchar pistas musicales gratis</a> [URL=http://escucharpistasmusicalesgratis.androot.info/ ]escuchar pistas musicales gratis[/URL]
<a href='http://www.joseluissincensura.androot.info/'>www.jose luis sin censura</a> [URL=http://www.joseluissincensura.androot.info/ ]www.jose luis sin censura[/URL]
<a href='http://poesialetteraamicizia.androot.info/'>poesia lettera amicizia</a> [URL=http://poesialetteraamicizia.androot.info/ ]poesia lettera amicizia[/URL]
<a href='http://catalogoacconciatureuomo.androot.info/'>catalogo acconciature uomo</a> [URL=http://catalogoacconciatureuomo.androot.info/ ]catalogo acconciature uomo[/URL]
<a href='http://formulacalcoloirpef.androot.info/'>formula calcolo irpef</a> [URL=http://formulacalcoloirpef.androot.info/ ]formula calcolo irpef[/URL]
<a href='http://ejemplosdecienciasauxiliaresdelabiologia.androot.info/'>ejemplos de ciencias auxiliares de la biologia</a> [URL=http://ejemplosdecienciasauxiliaresdelabiologia.androot.info/ ]ejemplos de ciencias auxiliares de la biologia[/URL]
<a href='http://sitrasporti.androot.info/'>si trasporti</a> [URL=http://sitrasporti.androot.info/ ]si trasporti[/URL]
<a href='http://outletserravallescrivia.androot.info/'>outlet serravalle scrivia</a> [URL=http://outletserravallescrivia.androot.info/ ]outlet serravalle scrivia[/URL]
<a href='http://mappewebsatellitari.androot.info/'>mappe web satellitari</a> [URL=http://mappewebsatellitari.androot.info/ ]mappe web satellitari[/URL]
<a href='http://deborasecopelada.androot.info/'>debora seco pelada</a> [URL=http://deborasecopelada.androot.info/ ]debora seco pelada[/URL]
<a href='http://wwedivasnaked-ashley.androot.info/'>wwe divas naked-ashley</a> [URL=http://wwedivasnaked-ashley.androot.info/ ]wwe divas naked-ashley[/URL]
<a href='http://esibizioniste.androot.info/'>esibizioniste</a> [URL=http://esibizioniste.androot.info/ ]esibizioniste[/URL]
<a href='http://creativelabs8gbzenmicrophoto.androot.info/'>creative labs 8gb zen micro photo</a> [URL=http://creativelabs8gbzenmicrophoto.androot.info/ ]creative labs 8gb zen micro photo[/URL]
<a href='http://pareteattrezzata.androot.info/'>parete attrezzata</a> [URL=http://pareteattrezzata.androot.info/ ]parete attrezzata[/URL]
<a href='http://malluhottrailers.androot.info/'>mallu hot trailers</a> [URL=http://malluhottrailers.androot.info/ ]mallu hot trailers[/URL]
<a href='http://smscomuni.androot.info/'>sms comuni</a> [URL=http://smscomuni.androot.info/ ]sms comuni[/URL]
<a href='http://imagenesparacelular.androot.info/'>imagenes para celular</a> [URL=http://imagenesparacelular.androot.info/ ]imagenes para celular[/URL]
<a href='http://parishiltonporn.androot.info/'>parishiltonporn</a> [URL=http://parishiltonporn.androot.info/ ]parishiltonporn[/URL]
<a href='http://mulheresfamosasnuas.androot.info/'>mulheres famosas nuas</a> [URL=http://mulheresfamosasnuas.androot.info/ ]mulheres famosas nuas[/URL]
<a href='http://videopornoanteprime.androot.info/'>videoporno anteprime</a> [URL=http://videopornoanteprime.androot.info/ ]videoporno anteprime[/URL]
<a href='http://fotosdemonjasteniendosexo.androot.info/'>fotos de monjas teniendo sexo</a> [URL=http://fotosdemonjasteniendosexo.androot.info/ ]fotos de monjas teniendo sexo[/URL]
<a href='http://flagrasdefamosas.androot.info/'>flagras de famosas</a> [URL=http://flagrasdefamosas.androot.info/ ]flagras de famosas[/URL]
<a href='http://habbomoedasdegraça.androot.info/'>habbo moedas de graça</a> [URL=http://habbomoedasdegraça.androot.info/ ]habbo moedas de graça[/URL]
<a href='http://videosdejovencitasmamandopenes.androot.info/'>videos de jovencitas mamando penes</a> [URL=http://videosdejovencitasmamandopenes.androot.info/ ]videos de jovencitas mamando penes[/URL]
<a href='http://cartonipornosessoanimali.androot.info/'>cartoni porno sesso animali</a> [URL=http://cartonipornosessoanimali.androot.info/ ]cartoni porno sesso animali[/URL]
<a href='http://pavimentazioniindustrialitoscana.androot.info/'>pavimentazioni industriali toscana</a> [URL=http://pavimentazioniindustrialitoscana.androot.info/ ]pavimentazioni industriali toscana[/URL]
<a href='http://portalesvirtualesgratis.androot.info/'>portales virtuales gratis</a> [URL=http://portalesvirtualesgratis.androot.info/ ]portales virtuales gratis[/URL]
<a href='http://dbzmugen.androot.info/'>dbz mugen</a> [URL=http://dbzmugen.androot.info/ ]dbz mugen[/URL]
<a href='http://www.putaria.com.br.androot.info/'>www.putaria.com.br</a> [URL=http://www.putaria.com.br.androot.info/ ]www.putaria.com.br[/URL]
<a href='http://salutedellapelle.androot.info/'>salute della pelle</a> [URL=http://salutedellapelle.androot.info/ ]salute della pelle[/URL]
<a href='http://nataliciodebenitojuarez.androot.info/'>natalicio de benito juarez</a> [URL=http://nataliciodebenitojuarez.androot.info/ ]natalicio de benito juarez[/URL]
<a href='http://ilpompino.androot.info/'>il pompino</a> [URL=http://ilpompino.androot.info/ ]il pompino[/URL]
<a href='http://traductoresgratis.androot.info/'>traductores gratis</a> [URL=http://traductoresgratis.androot.info/ ]traductores gratis[/URL]
<a href='http://fotosdemulheresbrasileirasnuas.androot.info/'>fotos de mulheres brasileiras nuas</a> [URL=http://fotosdemulheresbrasileirasnuas.androot.info/ ]fotos de mulheres brasileiras nuas[/URL]
<a href='http://guardianangelbeckhamtattoo.androot.info/'>guardian angel beckham tattoo</a> [URL=http://guardianangelbeckhamtattoo.androot.info/ ]guardian angel beckham tattoo[/URL]
<a href='http://videodeninfetasnuas.androot.info/'>video de ninfetas nuas</a> [URL=http://videodeninfetasnuas.androot.info/ ]video de ninfetas nuas[/URL]
THANKSSSSSSSSSSSSSSSSS
Are there any Macros for Receive File Handler for BizTalk 2006
Thanks very much - this was a real lifesaver!
Same problem as Fred once I make a connection to the data base it bombs I have added the connection string to the web config in the wss virdir but it still doesnt see it or something is there another place I need to add the key for the connection string? anybody got any Ideas?
Smart Part Rocks,
One more question for Jan,
I used your smartpart on my Sharepoing moss2007/wss 3.0 and it works like charm.
Can I have .cs file for my .ascx to put all my code in there?
I tried doing that it gave me an error: Can not load your user control.
Does it have have inline coding, or is there way I can put my code in my code behind .cs file?
Please provide any feedback.
...Snehal
I miss the days when I could submit a request to fly wherever to attend events like this. And Belgium is BEAUTIFUL this time of year. Unfortunately, the economy is feeling a CRUNCH and the dollars are scarce. But have fun and please provide a full detailed report of how it goes!
I would really like to test your example, however, the script editor automatically opens the event in JS. Can you please send me the above code in JS?
robin.finerfrock@ngiusa.com
How about adding support for browsable Enum usercontrol properties?
<a href='http://myspaceblogtable.androot.info/'>myspace blog table</a> [URL=http://myspaceblogtable.androot.info/ ]myspace blog table[/URL]
<a href='http://casalinghesexy.androot.info/'>casalinghe sexy</a> [URL=http://casalinghesexy.androot.info/ ]casalinghe sexy[/URL]
<a href='http://propiedadesfisica.androot.info/'>propiedades fisica</a> [URL=http://propiedadesfisica.androot.info/ ]propiedades fisica[/URL]
<a href='http://putinhas.androot.info/'>putinhas</a> [URL=http://putinhas.androot.info/ ]putinhas[/URL]
<a href='http://bumdas.androot.info/'>bumdas</a> [URL=http://bumdas.androot.info/ ]bumdas[/URL]
<a href='http://haifawehbenue.androot.info/'>haifa wehbe nue</a> [URL=http://haifawehbenue.androot.info/ ]haifa wehbe nue[/URL]
<a href='http://impostadibollo.androot.info/'>imposta di bollo</a> [URL=http://impostadibollo.androot.info/ ]imposta di bollo[/URL]
<a href='http://modeloderenuncialaboral.androot.info/'>modelo de renuncia laboral</a> [URL=http://modeloderenuncialaboral.androot.info/ ]modelo de renuncia laboral[/URL]
<a href='http://listinousatoeurotax.androot.info/'>listino usato eurotax</a> [URL=http://listinousatoeurotax.androot.info/ ]listino usato eurotax[/URL]
<a href='http://traduttoreinlinea.androot.info/'>traduttore in linea</a> [URL=http://traduttoreinlinea.androot.info/ ]traduttore in linea[/URL]
<a href= http://my11618.livejournal.com >wildwood n.j. yearly rental</a> <a href= http://my67661.livejournal.com >233 e. roberts ave. wildwood n.j. rental</a> <a href= http://my91464.livejournal.com >daily paper in houston tx</a> <a href= http://my48529.livejournal.com >bay ave trattoria</a> <a href= http://my90003.livejournal.com >delilah and florida</a>
I am sorry i did not know about it and missed it
<a href=" http://greatbestprice.info/5/realty-las-vegas-rentals.html ">realty las vegas rentals</a> <a href=" http://greatbestprice.info/5/u-haul-truck-rental.html ">u haul truck rental</a> <a href=" http://greatbestprice.info/5/cabin-rentals-in-tenessee.html ">cabin rentals in tenessee</a> <a href=" http://greatbestprice.info/5/rental-property-moore-oklahoma.html ">rental property moore oklahoma</a> <a href=" http://greatbestprice.info/5/north-wildwood-rentals.html ">north wildwood rentals</a> <a href=" http://greatbestprice.info/5/lake-cuomo-italy-rentals.html ">lake cuomo italy rentals</a> <a href=" http://greatbestprice.info/5/condo-rentals-destin.html ">condo rentals destin</a> <a href=" http://greatbestprice.info/5/clown-rental-for-philly.html ">clown rental for philly</a> <a href=" http://greatbestprice.info/5/nh-real-estate-rentals.html ">nh real estate-rentals</a> <a href=" http://greatbestprice.info/5/motor-home-rental-georgia.html ">motor home rental georgia</a> <a href=" http://greatbestprice.info/5/condo-rentals-cannon-beach.html ">condo rentals cannon beach</a> <a href=" http://greatbestprice.info/5/bayhouse-rentals.html ">bayhouse rentals</a> <a href=" http://greatbestprice.info/5/yonahlossee-rentals.html ">yonahlossee rentals</a> <a href=" http://greatbestprice.info/5/party-rentals-in-pittsfield-ma..html ">party rentals in pittsfield ma.</a> <a href=" http://greatbestprice.info/5/sebago-boat-rental.html ">sebago boat rental</a> <a href=" http://greatbestprice.info/5/cabin-rentals-in-gatlinburg-tn.html ">cabin rentals in gatlinburg tn</a> <a href=" http://greatbestprice.info/5/parentalontrols.html ">parentalontrols</a> <a href=" http://greatbestprice.info/5/jekyll-island-georgia-vacation-rentals.html ">jekyll island georgia vacation rentals</a> <a href=" http://greatbestprice.info/5/ouachita-vacation-rentals.html ">ouachita vacation rentals</a> <a href=" http://greatbestprice.info/5/rental-questionaire.html ">rental questionaire</a>
travel ghqt search hiy:\n
<a href="http://virginia-travel.travel.find-stuff.org/">virginia-travel</a>
NHC doesn't work on Vista. As soon as I run the EXE it blue screens. Can you re-distribute the EXE compiled on a Vista machine ?
fff
<a href= http://my77721.livejournal.com >praise to the lord almighty</a> <a href= http://my79583.livejournal.com >text of ahmedinejad letter to bush</a> <a href= http://my19979.livejournal.com >cbs channel 5</a> <a href= http://my33734.livejournal.com >rare photographs of richie havens</a> <a href= http://my72523.livejournal.com >mug shots of crimanals in jacksonville florida</a>
I had sharepoint installed in a machine with MSDE. I wanted it to use MS SQL 2000. So uninstalled sharepoint and reinstalled the same. But on installtion it opens IE and directs to url localhost and get "page cannot be displayed" here. Now I cannot access the Sharepoint Central Admin also. There were no dialog boxes or options appearing in installtion.
I am using Win 2003 std edition and stsv2.exe.
When I statically add the AJAXSmartPart to a page layout using the following code:
<%@ Register TagPrefix="sptest" Namespace="SmartPart" Assembly="ReturnOfSmartPart, Version=1.1.0.0, Culture=neutral, PublicKeyToken=9f4da00116c38ec5" %>
<sptest:AJAXSmartPart ID="sm" runat="server" __WebPartId="{AC58F563-56E5-45CC-B42B-6FC8EB1F9D45}" UserControl="~/UserControls\API_Tester2.ascx" />
I get the following error message:
"The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it."
So it looks like AJAXSmartPart forgets to add a ScriptManager when it is added statically. When I manually add a ScriptManager to the page layout code it works fine. Also when I add a second AJAXSmartPart using the normal approach (i.e. add it as a webpart to a WebPartZone), that second one seems to add the ScriptManager and they will both work. Looks like a bug, doesn't it?
<a href= http://my76364.livejournal.com >right hand and the sign of the cross</a> <a href= http://my90685.livejournal.com >anw</a> <a href= http://my50006.livejournal.com >spring craft show morristown nj armory</a> <a href= http://my23389.livejournal.com >erica durance nude photo gallery</a> <a href= http://my63990.livejournal.com >aol 20block 20control</a>
<a href=http://spec-sell.info/index7.html>tracfone free poly ringtones</a>
<a href=http://spec-sell.info/index8.html>tracfone promotional codes for ringtones</a>
<a href=http://spec-sell.info/index9.html>trac phone ringtones</a>
<a href=http://spec-sell.info/index.html>train ringtones</a>
<a href=http://spec-sell.info/index1.html>trainringtones</a>
<a href=http://spec-sell.info/index2.html>trapt ringtones headstrong music tone</a>
<a href=http://spec-sell.info/index3.html>treo ringtones free</a>
<a href=http://spec-sell.info/index4.html>true beats ringtones</a>
<a href=http://spec-sell.info/index5.html>truebeats ringtones</a>
<a href=http://spec-sell.info/index6.html>truetone ringtones</a>
<a href=http://spec-sell.info/index7.html>truringtones</a>
<a href=http://spec-sell.info/index8.html>tupac ringtones for wireless</a>
<a href=http://spec-sell.info/index9.html>turn your music into ringtones</a>
<a href=http://spec-sell.info/index.html>tv ringtones</a>
<a href=http://spec-sell.info/index1.html>tweety ringtones</a>
<a href=http://spec-sell.info/index2.html>twista ringtones</a>
I was using Lead-it UserAlerts without any problem till today i can not remove any user that has an alert assign.
Please help me.....and it gives no error
<a href=http://vou4s8md.tripod.com/dog-show-westminster/dog-show-westminster-whi.html>dog show westminster whi</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/dog-show-westminster-who.html>dog show westminster who</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/best-breed-dog-show-west.html>best breed dog show west</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/dog-past-show-westminste.html>dog past show westminste</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/dog-pic-show-westminster.html>dog pic show westminster</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/dog-show-usa-westminster.html>dog show usa westminster</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/bulldog-dog-show-westmin.html>bulldog dog show westmin</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/dog-entry-show-westminst.html>dog entry show westminst</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/dog-german-shepherd-show.html>dog german shepherd show</a> <a href=http://vou4s8md.tripod.com/dog-show-westminster/07-dog-show-westminster.html>07 dog show westminster</a>
http://defene.1gb.in/kue/index.html <a href="http://defene.1gb.in/kue/index.html">buy sex toys</a>
http://defene.1gb.in/kue/14-01.html <a href="http://defene.1gb.in/kue/14-01.html">amateur porn</a>
http://defene.1gb.in/kue/14-02.html <a href="http://defene.1gb.in/kue/14-02.html">anal sex</a>
http://defene.1gb.in/kue/14-03.html <a href="http://defene.1gb.in/kue/14-03.html">asian porn</a>
http://defene.1gb.in/kue/14-04.html <a href="http://defene.1gb.in/kue/14-04.html">bbw sex</a>
http://defene.1gb.in/kue/14-05.html <a href="http://defene.1gb.in/kue/14-05.html">bestiality pictures</a>
http://defene.1gb.in/kue/14-06.html <a href="http://defene.1gb.in/kue/14-05.html">bestiality dvd</a>
http://defene.1gb.in/kue/14-07.html <a href="http://defene.1gb.in/kue/14-07.html">big dicks</a>
http://defene.1gb.in/kue/14-08.html <a href="http://defene.1gb.in/kue/14-08.html">big ***</a>
http://defene.1gb.in/kue/14-09.html <a href="http://defene.1gb.in/kue/14-09.html">black sex</a>
http://defene.1gb.in/kue/14-10.html <a href="http://defene.1gb.in/kue/14-10.html">pornstar video</a>
http://defene.1gb.in/kue/14-11.html <a href="http://defene.1gb.in/kue/14-11.html">brunettes porn</a>
http://defene.1gb.in/kue/14-12.html <a href="http://defene.1gb.in/kue/14-12.html">bukkake pictures</a>
http://defene.1gb.in/kue/14-13.html <a href="http://defene.1gb.in/kue/14-13.html">buy cialis</a>
http://defene.1gb.in/kue/14-14.html <a href="http://defene.1gb.in/kue/14-14.html">cumshot sex</a>
http://defene.1gb.in/kue/14-15.html <a href="http://defene.1gb.in/kue/14-15.html">sex dating</a>
http://defene.1gb.in/kue/14-16.html <a href="http://defene.1gb.in/kue/14-16.html">porn dvd</a>
http://defene.1gb.in/kue/14-17.html <a href="http://defene.1gb.in/kue/14-17.html">ebony sex</a>
http://defene.1gb.in/kue/14-18.html <a href="http://defene.1gb.in/kue/14-18.html">femdom porn</a>
http://defene.1gb.in/kue/14-19.html <a href="http://defene.1gb.in/kue/14-19.html">fisting sex</a>
http://defene.1gb.in/kue/14-20.html <a href="http://defene.1gb.in/kue/14-20.html">footjobs porn</a>
http://defene.1gb.in/kue/14-21.html <a href="http://defene.1gb.in/kue/14-21.html">gangbang sex</a>
http://defene.1gb.in/kue/14-22.html <a href="http://defene.1gb.in/kue/14-22.html">granny porn</a>
http://defene.1gb.in/kue/14-23.html <a href="http://defene.1gb.in/kue/14-23.html">handjobs sex</a>
http://defene.1gb.in/kue/14-24.html <a href="http://defene.1gb.in/kue/14-24.html">incest porn</a>
http://defene.1gb.in/kue/14-25.html <a href="http://defene.1gb.in/kue/14-25.html">indian porn</a>
http://defene.1gb.in/kue/14-26.html <a href="http://defene.1gb.in/kue/14-26.html">interracial sex</a>
http://defene.1gb.in/kue/14-27.html <a href="http://defene.1gb.in/kue/14-27.html">latina porn</a>
http://defene.1gb.in/kue/14-28.html <a href="http://defene.1gb.in/kue/14-28.html">lesbians sex</a>
http://defene.1gb.in/kue/14-29.html <a href="http://defene.1gb.in/kue/14-29.html">buy levitra</a>
http://defene.1gb.in/kue/14-30.html <a href="http://defene.1gb.in/kue/14-30.html">live sex chat</a>
http://defene.1gb.in/kue/14-31.html <a href="http://defene.1gb.in/kue/14-31.html">mature porn</a>
http://defene.1gb.in/kue/14-32.html <a href="http://defene.1gb.in/kue/14-32.html">group sex</a>
http://defene.1gb.in/kue/14-33.html <a href="http://defene.1gb.in/kue/14-33.html">pantyhose sex</a>
http://defene.1gb.in/kue/14-34.html <a href="http://defene.1gb.in/kue/14-34.html">pissing girls</a>
http://defene.1gb.in/kue/14-35.html <a href="http://defene.1gb.in/kue/14-35.html">preggo porn</a>
http://defene.1gb.in/kue/14-36.html <a href="http://defene.1gb.in/kue/14-36.html">rape video</a>
http://defene.1gb.in/kue/14-37.html <a href="http://defene.1gb.in/kue/14-37.html">redheads sex</a>
http://defene.1gb.in/kue/14-38.html <a href="http://defene.1gb.in/kue/14-38.html">scat sex</a>
http://defene.1gb.in/kue/14-39.html <a href="http://defene.1gb.in/kue/14-39.html">sextoys for sale</a>
http://defene.1gb.in/kue/14-40.html <a href="http://defene.1gb.in/kue/14-40.html">shemales sex</a>
http://defene.1gb.in/kue/14-41.html <a href="http://defene.1gb.in/kue/14-41.html">teen porn</a>
http://defene.1gb.in/kue/14-42.html <a href="http://defene.1gb.in/kue/14-42.html">hardcore toons</a>
http://defene.1gb.in/kue/14-43.html <a href="http://defene.1gb.in/kue/14-43.html">twink sex</a>
http://defene.1gb.in/kue/14-44.html <a href="http://defene.1gb.in/kue/14-44.html">buy viagra</a>
http://defene.1gb.in/kue/14-45.html <a href="http://defene.1gb.in/kue/14-45.html">voyeur porn</a>
Very nice! I have some LJ with news, check this out:
<a href= http://michelas.livejournal.com >My live journal</a>
<a href= http://homerius.livejournal.com >Lastest news</a>
<a href= http://johnyknoxw.livejournal.com >My live journal</a>
9 su 10! Ottenerlo! Siete buoni!
interesting
"This will navigate to the RSS feed’s URL, but you’re not going to see the raw XML; it’s transformed into a nice web page using a XSLT"
I want to see the raw XML RSS Feed of a list item. Is't Possible
Thanks in Advance,
Arshad
<a href= http://iwantubadlyz.livejournal.com >Newest news</a>
<a href= http://annakubat.livejournal.com >Check this out</a>
<a href= http://jackie_simpson.livejournal.com >livejournal</a>
L'information interessante que vous avez! I'am allant revenir bientot.
luogo fine, sapete..
Cool...
Thanks much for this information, its been very helpful.
A quick question: Anyone tried making multi-page forms for filling out an entry for a list?
http://www.rmoqlsf.info/index28.html index28.html http://www.rsfmafm.info/index29.html index29.html http://www.rsfmafm.info/index14.html index14.html http://www.qbrkrek.info/index4.html index4.html http://www.rsfmafm.info/index9.html index9.html http://www.rmoqlsf.info/index21.html index21.html http://www.qbrkrek.info/index23.html index23.html http://www.rsfmafm.info/index31.html index31.html http://www.rmoqlsf.info/index26.html index26.html http://www.rmoqlsf.info/index19.html index19.html http://www.nokadme.info/index7.html index7.html http://www.nokadme.info/index29.html index29.html http://www.nokadme.info/index14.html index14.html http://www.qbrkrek.info/index10.html index10.html http://www.nokadme.info/index24.html index24.html http://www.rsfmafm.info/index22.html index22.html http://www.nokadme.info/index31.html index31.html http://www.rmoqlsf.info/index24.html index24.html http://www.nokadme.info/index32.html index32.html http://www.rmoqlsf.info/index6.html index6.html ,http://www.rmoqlsf.info/index28.html index28.html http://www.rsfmafm.info/index29.html index29.html http://www.rsfmafm.info/index14.html index14.html http://www.qbrkrek.info/index4.html index4.html http://www.rsfmafm.info/index9.html index9.html http://www.rmoqlsf.info/index21.html index21.html http://www.qbrkrek.info/index23.html index23.html http://www.rsfmafm.info/index31.html index31.html http://www.rmoqlsf.info/index26.html index26.html http://www.rmoqlsf.info/index19.html index19.html http://www.nokadme.info/index7.html index7.html http://www.nokadme.info/index29.html index29.html http://www.nokadme.info/index14.html index14.html http://www.qbrkrek.info/index10.html index10.html http://www.nokadme.info/index24.html index24.html http://www.rsfmafm.info/index22.html index22.html http://www.nokadme.info/index31.html index31.html http://www.rmoqlsf.info/index24.html index24.html http://www.nokadme.info/index32.html index32.html http://www.rmoqlsf.info/index6.html index6.html
Hi simon,
I've encountared the same problem,
Did you succeed to solve it yet?
Yonatan
Unfortunately this does not work with forms authentication enabled.
this same error reported on september 24, 2006 are still happens until now..
looks like it don't get maintained anymore..
I have the same issue as Mark Vogt,
http://weblogs.asp.net/jan/archive/2006/02/01/437037.aspx#437891
anyone know how to switch ASP.NET version of the VS2005 or maybe any other solution.
Can I still get "InfoPath 2003 Toolkit for Visual Studio 2005?"
I need to design InfoPath 2003 forms with VS 2005.
Is this webpart compatible with Sharepoint 2007? We have been successfully using this with sharepoint 2003 and wanted to know if there are instabilities with '07
-- adam
http://estadium.ya.com/vorona/gok/index.html <a href="http://estadium.ya.com/vorona/gok/index.html">buy sex toys</a>
http://estadium.ya.com/vorona/gok/04-01.html <a href="http://estadium.ya.com/vorona/gok/04-01.html">amateur porn</a>
http://estadium.ya.com/vorona/gok/04-02.html <a href="http://estadium.ya.com/vorona/gok/04-02.html">anal sex</a>
http://estadium.ya.com/vorona/gok/04-03.html <a href="http://estadium.ya.com/vorona/gok/04-03.html">asian porn</a>
http://estadium.ya.com/vorona/gok/04-04.html <a href="http://estadium.ya.com/vorona/gok/04-04.html">bbw sex</a>
http://estadium.ya.com/vorona/gok/04-05.html <a href="http://estadium.ya.com/vorona/gok/04-05.html">bestiality pictures</a>
http://estadium.ya.com/vorona/gok/04-06.html <a href="http://estadium.ya.com/vorona/gok/04-06.html">bestiality dvd</a>
http://estadium.ya.com/vorona/gok/04-07.html <a href="http://estadium.ya.com/vorona/gok/04-07.html">big dicks</a>
http://estadium.ya.com/vorona/gok/04-08.html <a href="http://estadium.ya.com/vorona/gok/04-08.html">big ***</a>
http://estadium.ya.com/vorona/gok/04-09.html <a href="http://estadium.ya.com/vorona/gok/04-09.html">black sex</a>
http://estadium.ya.com/vorona/gok/04-10.html <a href="http://estadium.ya.com/vorona/gok/04-10.html">pornstar video</a>
http://estadium.ya.com/vorona/gok/04-11.html <a href="http://estadium.ya.com/vorona/gok/04-11.html">brunettes porn</a>
http://estadium.ya.com/vorona/gok/04-12.html <a href="http://estadium.ya.com/vorona/gok/04-12.html">bukkake pictures</a>
http://estadium.ya.com/vorona/gok/04-13.html <a href="http://estadium.ya.com/vorona/gok/04-13.html">buy cialis</a>
http://estadium.ya.com/vorona/gok/04-14.html <a href="http://estadium.ya.com/vorona/gok/04-14.html">cumshot sex</a>
http://estadium.ya.com/vorona/gok/04-15.html <a href="http://estadium.ya.com/vorona/gok/04-15.html">sex dating</a>
http://estadium.ya.com/vorona/gok/04-16.html <a href="http://estadium.ya.com/vorona/gok/04-16.html">porn dvd</a>
http://estadium.ya.com/vorona/gok/04-17.html <a href="http://estadium.ya.com/vorona/gok/04-17.html">ebony sex</a>
http://estadium.ya.com/vorona/gok/04-18.html <a href="http://estadium.ya.com/vorona/gok/04-18.html">femdom porn</a>
http://estadium.ya.com/vorona/gok/04-19.html <a href="http://estadium.ya.com/vorona/gok/04-19.html">fisting sex</a>
http://estadium.ya.com/vorona/gok/04-20.html <a href="http://estadium.ya.com/vorona/gok/04-20.html">footjobs porn</a>
http://estadium.ya.com/vorona/gok/04-21.html <a href="http://estadium.ya.com/vorona/gok/04-21.html">gangbang sex</a>
http://estadium.ya.com/vorona/gok/04-22.html <a href="http://estadium.ya.com/vorona/gok/04-22.html">granny porn</a>
http://estadium.ya.com/vorona/gok/04-23.html <a href="http://estadium.ya.com/vorona/gok/04-23.html">handjobs sex</a>
http://estadium.ya.com/vorona/gok/04-24.html <a href="http://estadium.ya.com/vorona/gok/04-24.html">incest porn</a>
http://estadium.ya.com/vorona/gok/04-25.html <a href="http://estadium.ya.com/vorona/gok/04-25.html">indian porn</a>
http://estadium.ya.com/vorona/gok/04-26.html <a href="http://estadium.ya.com/vorona/gok/04-26.html">interracial sex</a>
http://estadium.ya.com/vorona/gok/04-27.html <a href="http://estadium.ya.com/vorona/gok/04-27.html">latina porn</a>
http://estadium.ya.com/vorona/gok/04-28.html <a href="http://estadium.ya.com/vorona/gok/04-28.html">lesbians sex</a>
http://estadium.ya.com/vorona/gok/04-29.html <a href="http://estadium.ya.com/vorona/gok/04-29.html">buy levitra</a>
http://estadium.ya.com/vorona/gok/04-30.html <a href="http://estadium.ya.com/vorona/gok/04-30.html">live sex chat</a>
http://estadium.ya.com/vorona/gok/04-31.html <a href="http://estadium.ya.com/vorona/gok/04-31.html">mature porn</a>
http://estadium.ya.com/vorona/gok/04-32.html <a href="http://estadium.ya.com/vorona/gok/04-32.html">group sex</a>
http://estadium.ya.com/vorona/gok/04-33.html <a href="http://estadium.ya.com/vorona/gok/04-33.html">pantyhose sex</a>
http://estadium.ya.com/vorona/gok/04-34.html <a href="http://estadium.ya.com/vorona/gok/04-34.html">pissing girls</a>
http://estadium.ya.com/vorona/gok/04-35.html <a href="http://estadium.ya.com/vorona/gok/04-35.html">preggo porn</a>
http://estadium.ya.com/vorona/gok/04-36.html <a href="http://estadium.ya.com/vorona/gok/04-36.html">rape video</a>
http://estadium.ya.com/vorona/gok/04-37.html <a href="http://estadium.ya.com/vorona/gok/04-37.html">redheads sex</a>
http://estadium.ya.com/vorona/gok/04-38.html <a href="http://estadium.ya.com/vorona/gok/04-38.html">scat sex</a>
http://estadium.ya.com/vorona/gok/04-39.html <a href="http://estadium.ya.com/vorona/gok/04-39.html">sextoys for sale</a>
http://estadium.ya.com/vorona/gok/04-40.html <a href="http://estadium.ya.com/vorona/gok/04-40.html">shemales sex</a>
http://estadium.ya.com/vorona/gok/04-41.html <a href="http://estadium.ya.com/vorona/gok/04-41.html">teen porn</a>
http://estadium.ya.com/vorona/gok/04-42.html <a href="http://estadium.ya.com/vorona/gok/04-42.html">hardcore toons</a>
http://estadium.ya.com/vorona/gok/04-43.html <a href="http://estadium.ya.com/vorona/gok/04-43.html">twink sex</a>
http://estadium.ya.com/vorona/gok/04-44.html <a href="http://estadium.ya.com/vorona/gok/04-44.html">buy viagra</a>
http://estadium.ya.com/vorona/gok/04-45.html <a href="http://estadium.ya.com/vorona/gok/04-45.html">voyeur porn</a>
<a href= http://adderall.livelog.com#1 >adderall xr</a>[url=http://adderall.livelog.com#1]adderall xr[/url]<a href= http://adderall.livelog.com#3 >adderall xr</a>[url=http://adderall.livelog.com#3]adderall xr[/url]<a href= http://adderall.livelog.com#4 >adderall abuse</a>[url=http://adderall.livelog.com#4]adderall abuse[/url]
Gefeliciteerd! Mooi kindje!
Ik kan als vader van 2 dochters (in de luiers) zeggen: Sterkte ;-).
Dus in de toekomst niet alleen slapeloze nachten van MOSS en Smartparts..
Komt er nu ook een 'daughter of the SmartPart' uit ?
Congratulations! Although I can't really understand the prevoius comment, the keyword SmartPart seems to fit. And of course: babies are always micro + soft :)
Congratulations!!!! She is beautiful!
Randy
<a href= http://sugar-free.150m.com >Home gift baskets</a> <a href= http://foodgi.150m.com/index2.html">http://foodgi.150m.com/index2.html >gift basket</a> <a href= http://foodgi.150m.com/ >gift baskets new jersey</a> <a href= http://sugar-free.150m.com >new grandparents gift baskets</a> <a href= http://sugar-free.150m.com >corporate gift basket scheduled delivery</a> <a href= http://foodgi.150m.com/ >gift baskets gourmet</a> <a href= http://sugar-free.150m.com >basket business gift home start</a> <a href= http://sugar-free.150m.com >gift baskets champagne and chocolate</a> <a href= http://marginall.150m.com/ >taffy christmas gift basket from north carolina</a> <a href= http://sugar-free.150m.com >wine gift baskets maryland</a>
Congrats! A golden pig year baby in Chinese culture! You can only have a golden pig year baby for every 60 years! She's so beautiful!
Congratulations!
It's every time excellent feeling that new life is born...
How do you feel in father's role?
We've been using your SharePoint essentials for a long time with WSS v2. Now that we are moving towards WSS v3, we cannot manage to re-install your webparts on our new WSS v3 server. When we double-click on the .msi file, nothing happens. If we try it again, Windows tells us that the package is already installed. This is confirmed when viewing the "Add/Remove Programs" feature.
I am about to try to install them manually with the .CAB file and StsAdm.exe -addwppack...
How do we upgrade? We have Thousand's of WSS sites using your webparts!
Please reply at miguel.caron@snclavalin.com
Thanx,
I'm getting a message saying:
Error: unable to load ~\/UserControls\cLookup.ascx
Details: That assembly does not allow partially trusted callers.
When I try to load my ascx. It has a purchased control in it, which I put the associated BIN file in the BIN folder for the WSS Virtual Directory. Can You give me any pointers here?
frank.walsh[at]gmail.com
Doesn't show up ?
Install into GAC.
CAB is in \Program Files\WPPackager...
STSADM is in \Program Files\Common Files\Microsoft Shared\web server extensions\60\BIN\
Run: stsadm -o addwppack -globalinstall -force -filename "Lead-it SharePoint Administration Webparts_Jan Tielens, Lead-it.cab"
<a href=" http://tomcochrane.com/artwork/video/poker/Full-Tilt-Poker-Freeroll.html ">Full Tilt Poker Freeroll</a>
<a href=" http://tomcochrane.com/artwork/video/poker/Full-Login-Poker-Tilt.html ">Full Login Poker Tilt</a>
<a href=" http://tomcochrane.com/artwork/video/poker/Full-Hockey-Jersey-Poker-Tilt.html ">Full Hockey Jersey Poker Tilt</a>
<a href=" http://tomcochrane.com/artwork/video/poker/Full-Point-Poker-Tilt.html ">Full Point Poker Tilt</a>
<a href=" http://tomcochrane.com/artwork/video/poker/index.html ">index</a>,
<a href=" http://tomcochrane.com/artwork/video/poker/index.html ">index</a>
Remove alerts with
Site Settings / Go to Site Administration / Management and Statistics - Manage user alerts
Your life has changed forever.
Congratulations to your family.
Is it possible to have Custom WebPartManager in Sharepoint
if so can i put my custom WebPartManager in the Custom Master Page.
Please hlep me
Anil
I was able to get my web part working by adding it to the web.config compilation tag as suggested, which stopped the partially trusted assembly message I was receiving. However, now I receive a message simply stating there was an error, I believe this has something to do with the 3rd party control I'm attempting to use but I'd like to dive further into it, is there somewhere I can get more detailed information about the error?
THanks,
Frank.Walsh[at]gmail.com
Jan, congratulations to you and your partner :-)
Hii someone
pls tell me how to reference stylesheet/ javascript file inside Smartpart..
as smartpart does not contain head element, how can I link stylesheet?
Pls pls help me someone
Congratulations to Jan and his wife!
-Bart
Adriano, Stjepan
The format and content for the alert messages is defined in the CAML file alerttemplates.xml in
C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\XML\
Good article!!
I implemented this using a console application and was getting the 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."
Upon some trouble shooting I found the below article in MSDN. This precisely addresses the above issue.
http://support.microsoft.com/kb/555292
http://findit01.pochta.ru/001.html <a href="http://findit01.pochta.ru/001.html">001</a>
http://findit01.pochta.ru/002.html <a href="http://findit01.pochta.ru/002.html">002</a>
http://findit01.pochta.ru/003.html <a href="http://findit01.pochta.ru/003.html">003</a>
http://findit01.pochta.ru/004.html <a href="http://findit01.pochta.ru/004.html">004</a>
http://findit01.pochta.ru/005.html <a href="http://findit01.pochta.ru/005.html">005</a>
http://findit01.pochta.ru/006.html <a href="http://findit01.pochta.ru/006.html">006</a>
http://findit01.pochta.ru/007.html <a href="http://findit01.pochta.ru/007.html">007</a>
http://findit01.pochta.ru/008.html <a href="http://findit01.pochta.ru/008.html">008</a>
http://findit01.pochta.ru/009.html <a href="http://findit01.pochta.ru/009.html">009</a>
http://findit01.pochta.ru/010.html <a href="http://findit01.pochta.ru/010.html">010</a>
http://findit01.pochta.ru/011.html <a href="http://findit01.pochta.ru/011.html">011</a>
http://findit01.pochta.ru/012.html <a href="http://findit01.pochta.ru/012.html">012</a>
http://findit01.pochta.ru/013.html <a href="http://findit01.pochta.ru/013.html">013</a>
http://findit01.pochta.ru/014.html <a href="http://findit01.pochta.ru/014.html">014</a>
http://findit01.pochta.ru/015.html <a href="http://findit01.pochta.ru/015.html">015</a>
http://findit01.pochta.ru/016.html <a href="http://findit01.pochta.ru/016.html">016</a>
http://findit01.pochta.ru/017.html <a href="http://findit01.pochta.ru/017.html">017</a>
http://findit01.pochta.ru/018.html <a href="http://findit01.pochta.ru/018.html">018</a>
http://findit01.pochta.ru/019.html <a href="http://findit01.pochta.ru/019.html">019</a>
http://findit01.pochta.ru/020.html <a href="http://findit01.pochta.ru/020.html">020</a>
http://findit02.pochta.ru/021.html <a href="http://findit02.pochta.ru/021.html">021</a>
http://findit02.pochta.ru/022.html <a href="http://findit02.pochta.ru/022.html">022</a>
http://findit02.pochta.ru/023.html <a href="http://findit02.pochta.ru/023.html">023</a>
http://findit02.pochta.ru/024.html <a href="http://findit02.pochta.ru/024.html">024</a>
http://findit02.pochta.ru/025.html <a href="http://findit02.pochta.ru/025.html">025</a>
http://findit02.pochta.ru/026.html <a href="http://findit02.pochta.ru/026.html">026</a>
http://findit02.pochta.ru/027.html <a href="http://findit02.pochta.ru/027.html">027</a>
http://findit02.pochta.ru/028.html <a href="http://findit02.pochta.ru/028.html">028</a>
http://findit02.pochta.ru/029.html <a href="http://findit02.pochta.ru/029.html">029</a>
http://findit02.pochta.ru/030.html <a href="http://findit02.pochta.ru/030.html">030</a>
http://findit02.pochta.ru/031.html <a href="http://findit02.pochta.ru/031.html">031</a>
http://findit02.pochta.ru/032.html <a href="http://findit02.pochta.ru/032.html">032</a>
http://findit02.pochta.ru/033.html <a href="http://findit02.pochta.ru/033.html">033</a>
http://findit02.pochta.ru/034.html <a href="http://findit02.pochta.ru/034.html">034</a>
http://findit02.pochta.ru/035.html <a href="http://findit02.pochta.ru/035.html">035</a>
http://findit02.pochta.ru/036.html <a href="http://findit02.pochta.ru/036.html">036</a>
http://findit02.pochta.ru/037.html <a href="http://findit02.pochta.ru/037.html">037</a>
http://findit02.pochta.ru/038.html <a href="http://findit02.pochta.ru/038.html">038</a>
http://findit02.pochta.ru/039.html <a href="http://findit02.pochta.ru/039.html">039</a>
http://findit02.pochta.ru/040.html <a href="http://findit02.pochta.ru/040.html">040</a>
http://findit03.pochta.ru/041.html <a href="http://findit03.pochta.ru/041.html">041</a>
http://findit03.pochta.ru/042.html <a href="http://findit03.pochta.ru/042.html">042</a>
http://findit03.pochta.ru/043.html <a href="http://findit03.pochta.ru/043.html">043</a>
http://findit03.pochta.ru/044.html <a href="http://findit03.pochta.ru/044.html">044</a>
http://findit03.pochta.ru/045.html <a href="http://findit03.pochta.ru/045.html">045</a>
http://findit03.pochta.ru/046.html <a href="http://findit03.pochta.ru/046.html">046</a>
http://findit03.pochta.ru/047.html <a href="http://findit03.pochta.ru/047.html">047</a>
http://findit03.pochta.ru/048.html <a href="http://findit03.pochta.ru/048.html">048</a>
http://findit03.pochta.ru/049.html <a href="http://findit03.pochta.ru/049.html">049</a>
http://findit03.pochta.ru/050.html <a href="http://findit03.pochta.ru/050.html">050</a>
http://findit03.pochta.ru/051.html <a href="http://findit03.pochta.ru/051.html">051</a>
http://findit03.pochta.ru/052.html <a href="http://findit03.pochta.ru/052.html">052</a>
http://findit03.pochta.ru/053.html <a href="http://findit03.pochta.ru/053.html">053</a>
http://findit03.pochta.ru/054.html <a href="http://findit03.pochta.ru/054.html">054</a>
http://findit03.pochta.ru/055.html <a href="http://findit03.pochta.ru/055.html">055</a>
http://findit03.pochta.ru/056.html <a href="http://findit03.pochta.ru/056.html">056</a>
http://findit03.pochta.ru/057.html <a href="http://findit03.pochta.ru/057.html">057</a>
http://findit03.pochta.ru/058.html <a href="http://findit03.pochta.ru/058.html">058</a>
http://findit03.pochta.ru/059.html <a href="http://findit03.pochta.ru/059.html">059</a>
http://findit03.pochta.ru/060.html <a href="http://findit03.pochta.ru/060.html">060</a>
Your site is best look my site - <a href="http://freecal.brownbearsw.com/Magnarx">Magna rx</a>
Congrats Jan... mine is 2yrs old now and I never thought it would be as much fun or fulfilling as it really is. Enjoy it. That first day when they finally focus on you and smile is priceless. :)
I am also upgrading to WSS v3 and have been unable to get your web parts working. Please help!
Very nice! I have some sites with news, check this out:
<a href= http://kreolikko.livejournal.com >Politics news</a>
<a href= http://icefroggg.livejournal.com >Lastest news</a>
<a href= http://icyiceman.livejournal.com >Lifestyle news</a>
http://findit04.pochta.ru/061.html <a href="http://findit04.pochta.ru/061.html">061</a>
http://findit04.pochta.ru/062.html <a href="http://findit04.pochta.ru/062.html">062</a>
http://findit04.pochta.ru/063.html <a href="http://findit04.pochta.ru/063.html">063</a>
http://findit04.pochta.ru/064.html <a href="http://findit04.pochta.ru/064.html">064</a>
http://findit04.pochta.ru/065.html <a href="http://findit04.pochta.ru/065.html">065</a>
http://findit04.pochta.ru/066.html <a href="http://findit04.pochta.ru/066.html">066</a>
http://findit04.pochta.ru/067.html <a href="http://findit04.pochta.ru/067.html">067</a>
http://findit04.pochta.ru/068.html <a href="http://findit04.pochta.ru/068.html">068</a>
http://findit04.pochta.ru/069.html <a href="http://findit04.pochta.ru/069.html">069</a>
http://findit04.pochta.ru/070.html <a href="http://findit04.pochta.ru/070.html">070</a>
http://findit04.pochta.ru/071.html <a href="http://findit04.pochta.ru/071.html">071</a>
http://findit04.pochta.ru/072.html <a href="http://findit04.pochta.ru/072.html">072</a>
http://findit04.pochta.ru/073.html <a href="http://findit04.pochta.ru/073.html">073</a>
http://findit04.pochta.ru/074.html <a href="http://findit04.pochta.ru/074.html">074</a>
http://findit04.pochta.ru/075.html <a href="http://findit04.pochta.ru/075.html">075</a>
http://findit04.pochta.ru/076.html <a href="http://findit04.pochta.ru/076.html">076</a>
http://findit04.pochta.ru/077.html <a href="http://findit04.pochta.ru/077.html">077</a>
http://findit04.pochta.ru/078.html <a href="http://findit04.pochta.ru/078.html">078</a>
http://findit04.pochta.ru/079.html <a href="http://findit04.pochta.ru/079.html">079</a>
http://findit04.pochta.ru/080.html <a href="http://findit04.pochta.ru/080.html">080</a>
http://findit05.pochta.ru/081.html <a href="http://findit05.pochta.ru/081.html">081</a>
http://findit05.pochta.ru/082.html <a href="http://findit05.pochta.ru/082.html">082</a>
http://findit05.pochta.ru/083.html <a href="http://findit05.pochta.ru/083.html">083</a>
http://findit05.pochta.ru/084.html <a href="http://findit05.pochta.ru/084.html">084</a>
http://findit05.pochta.ru/085.html <a href="http://findit05.pochta.ru/085.html">085</a>
http://findit05.pochta.ru/086.html <a href="http://findit05.pochta.ru/086.html">086</a>
http://findit05.pochta.ru/087.html <a href="http://findit05.pochta.ru/087.html">087</a>
http://findit05.pochta.ru/088.html <a href="http://findit05.pochta.ru/088.html">088</a>
http://findit05.pochta.ru/089.html <a href="http://findit05.pochta.ru/089.html">089</a>
http://findit05.pochta.ru/090.html <a href="http://findit05.pochta.ru/090.html">090</a>
http://findit05.pochta.ru/091.html <a href="http://findit05.pochta.ru/091.html">091</a>
http://findit05.pochta.ru/092.html <a href="http://findit05.pochta.ru/092.html">092</a>
http://findit05.pochta.ru/093.html <a href="http://findit05.pochta.ru/093.html">093</a>
http://findit05.pochta.ru/094.html <a href="http://findit05.pochta.ru/094.html">094</a>
http://findit05.pochta.ru/095.html <a href="http://findit05.pochta.ru/095.html">095</a>
http://findit05.pochta.ru/096.html <a href="http://findit05.pochta.ru/096.html">096</a>
http://findit05.pochta.ru/097.html <a href="http://findit05.pochta.ru/097.html">097</a>
http://findit05.pochta.ru/098.html <a href="http://findit05.pochta.ru/098.html">098</a>
http://findit05.pochta.ru/099.html <a href="http://findit05.pochta.ru/099.html">099</a>
http://findit05.pochta.ru/100.html <a href="http://findit05.pochta.ru/100.html">100</a>
http://findit06.pochta.ru/101.html <a href="http://findit06.pochta.ru/101.html">101</a>
http://findit06.pochta.ru/102.html <a href="http://findit06.pochta.ru/102.html">102</a>
http://findit06.pochta.ru/103.html <a href="http://findit06.pochta.ru/103.html">103</a>
http://findit06.pochta.ru/104.html <a href="http://findit06.pochta.ru/104.html">104</a>
http://findit06.pochta.ru/105.html <a href="http://findit06.pochta.ru/105.html">105</a>
http://findit06.pochta.ru/106.html <a href="http://findit06.pochta.ru/106.html">106</a>
http://findit06.pochta.ru/107.html <a href="http://findit06.pochta.ru/107.html">107</a>
http://findit06.pochta.ru/108.html <a href="http://findit06.pochta.ru/108.html">108</a>
http://findit06.pochta.ru/109.html <a href="http://findit06.pochta.ru/109.html">109</a>
http://findit06.pochta.ru/110.html <a href="http://findit06.pochta.ru/110.html">110</a>
http://findit06.pochta.ru/111.html <a href="http://findit06.pochta.ru/111.html">111</a>
http://findit06.pochta.ru/112.html <a href="http://findit06.pochta.ru/112.html">112</a>
http://findit06.pochta.ru/113.html <a href="http://findit06.pochta.ru/113.html">113</a>
http://findit06.pochta.ru/114.html <a href="http://findit06.pochta.ru/114.html">114</a>
http://findit06.pochta.ru/115.html <a href="http://findit06.pochta.ru/115.html">115</a>
http://findit06.pochta.ru/116.html <a href="http://findit06.pochta.ru/116.html">116</a>
http://findit06.pochta.ru/117.html <a href="http://findit06.pochta.ru/117.html">117</a>
http://findit06.pochta.ru/118.html <a href="http://findit06.pochta.ru/118.html">118</a>
http://findit06.pochta.ru/119.html <a href="http://findit06.pochta.ru/119.html">119</a>
http://findit06.pochta.ru/120.html <a href="http://findit06.pochta.ru/120.html">120</a>
How can I tell if the webpart is in "edit mode"? The SmartPart interface doesn't expose the internal WebPartManager object, so I cannot query it from the user control.
Congratulations Jan and your wife so.
And Welcome to Fran, she's very nice.
As you said, its a new life for all of you...
I wish you to spend a lot of time with her(s)
PingBack from http://mhinze.com/links-for-2007-04-06/
I am adding WebParts to a sharepoint page that is not the page I am on. (AddWebPart(newWebPart,"Left",0) Nobody seems to indicate how to determine where to get the zones for a different page. The only thing I have seen is via the WebPartManager, but I can find no way to access a WebPartManager for a page that is not instantiated. Thanks
Congratulations!!
Children make our lives sooo much more adventurous! Most fullfilling thing you will ever do!
Welcome, Fran!!
;)
Dale
Does this webpart display for Portal 2003? I have looked at similar webparts, and they seem to be written for WSS not SPS. Can you help me? Saw a post about it displaying the C(site number) in the breadcrumb trail, but it should as that is part of the trail. Anyway, looks llike something I can use.
You can e-mail me at dale.pratz@definition6.com
PingBack from http://jesscoburn.com/archives/2007/04/07/links-for-2007-04-07/
@Natha,
This tripped me up too, but you need to deploy a folder called "UserControls" to the base wwwroot folder of your sharepoint site (where the web.config lives). once there the WP will read from that location and list any User Controls (ascx) files in the folder.
<a href= http://shemales.ifastnet.com/sexy-">http://shemales.ifastnet.com/sexy-***-sex-59.html >sexy *** sex</a> <a href= http://shemales.ifastnet.com/sex-date-">http://shemales.ifastnet.com/sex-date-***-60.html >sex date ***</a> <a href= http://shemales.ifastnet.com/***-pantie-hose-sex-61.html >*** pantie hose sex</a> <a href= http://shemales.ifastnet.com/***-having-sex-with-woman-62.html >*** having sex with woman</a> <a href= http://shemales.ifastnet.com/***-sex-site-63.html >*** sex site</a> <a href= http://shemales.ifastnet.com/black-gallery-sex-***-xxx-64.html >black gallery sex *** xxx</a> <a href= http://shemales.ifastnet.com/***-sex-cam-65.html >*** sex cam</a> <a href= http://shemales.ifastnet.com/hard-sex-***-66.html >hard sex ***</a> <a href= http://shemales.ifastnet.com/free-video-clip-of-***-sex-67.html >free video clip of *** sex</a> <a href= http://shemales.ifastnet.com/free-***-sex-site-68.html >free *** sex site</a>
<a href= http://domotips.com/i/zolpidem.html#1 >buy zolpidem</a>[url=http://domotips.com/i/zolpidem.html#1]buy zolpidem[/url]<a href= http://domotips.com/i/oxycodone.html#1 >order oxycodone</a>[url=http://domotips.com/i/oxycodone.html#1]order oxycodone[/url]<a href= http://domotips.com/i/soma.html#3 >order soma</a>[url=http://domotips.com/i/soma.html#3]order soma[/url]
<a href= http://www.angelfire.com/indie/mibaqo >a2z computers.com</a> <a href= http://www.angelfire.com/droid/pylamo >a wooden bed</a> <a href= http://www.angelfire.com/indie/newupe >a groovy kind of love</a> <a href= http://www.angelfire.com/punk/gyrimy >a rock simon and garfunkel lyric</a> <a href= http://www.angelfire.com/planet/tizegy >a madmans diary by lu xun</a>
<a href= http://www.angelfire.com/blog/dyxavy >ab ca wcb</a> <a href= http://www.angelfire.com/planet/nexeny >aaron lewis outside lyric</a> <a href= http://www.angelfire.com/indie/sojoly >a one dollar bill</a> <a href= http://www.angelfire.com/punk/muveqe >a lack of colour tabs</a> <a href= http://www.angelfire.com/planet/mivumu >a linguistic and semiotic approach to textual analysis</a>
<a href= http://www.angelfire.com/droid/xubycu >a drop in the ocean nottingham review</a> <a href= http://www.angelfire.com/crazy/rybony >a985 lyrics</a> <a href= http://www.angelfire.com/crazy/xyxaba >a face in the crowd andy griffith</a> <a href= http://www.angelfire.com/crazy/dekyso >a few hours after this lyrics</a> <a href= http://www.angelfire.com/crazy/ninami >a time to love zhao wei</a>
<a href= http://www.angelfire.com/punk/rejiwy >depression in teenages case study</a> <a href= http://www.angelfire.com/indie/sobixi >flick plus fork</a> <a href= http://www.angelfire.com/crazy/botavy >watch executions on video</a> <a href= http://www.angelfire.com/indie/tunaki >hard core porn</a> <a href= http://www.angelfire.com/blog/sapara >eastern mass</a>
zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>,zugbu <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030a.htm ">order viagra online</a> zabr <a href=" http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000030b.htm ">order cialis online</a> ktz <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000031.htm ">cheap viagra online</a> hiy <a href=" http://www.it.bond.edu.au/ianl111/_disc1/00000032.htm ">generic cialis online</a>
<a href=" http://www.vg.edu/title/drugs/Buy-Viagra.html ">Buy Viagra</a>
<a href=" http://www.vg.edu/title/drugs/Buy-Viagra-Online.html ">Buy Viagra Online</a>
<a href=" http://www.vg.edu/title/drugs/Buy-Generic-Viagra.html ">Buy Generic Viagra</a>
<a href=" http://supergreatsearch.info/3/gamesfaqs.html ">gamesfaqs</a> <a href=" http://supergreatsearch.info/3/texas-game-warden-life.html ">texas game warden life</a> <a href=" http://supergreatsearch.info/3/free-boggle-games.html ">free boggle games</a> <a href=" http://supergreatsearch.info/3/best-shooting-games-online.html ">best shooting games online</a> <a href=" http://supergreatsearch.info/3/aol-free-bingo-games.html ">aol free bingo games</a> <a href=" http://supergreatsearch.info/3/free-bingo-games-win-cash.html ">free bingo games win cash</a> <a href=" http://supergreatsearch.info/3/star-wars-video-games.html ">star wars video games</a> <a href=" http://supergreatsearch.info/3/nintendo-game-cube-cheat-codes.html ">nintendo game cube cheat codes</a> <a href=" http://supergreatsearch.info/3/games-photohunt.html ">games photohunt</a> <a href=" http://supergreatsearch.info/3/see-all-games.html ">see all games</a> <a href=" http://supergreatsearch.info/3/games-for-preschool.html ">games for preschool</a> <a href=" http://supergreatsearch.info/3/downloadable-dog-games.html ">downloadable dog games</a> <a href=" http://supergreatsearch.info/3/spiderman-birthday-party-games.html ">spiderman birthday party games</a> <a href=" http://supergreatsearch.info/3/gameboy-advance-sp-battery-charger.html ">gameboy advance sp battery charger</a> <a href=" http://supergreatsearch.info/3/free-fun-fast-game-downloads.html ">free fun fast game downloads</a> <a href=" http://supergreatsearch.info/3/christian-women-party-games.html ">christian women party games</a> <a href=" http://supergreatsearch.info/3/free-game-all-time.html ">free game all time</a> <a href=" http://supergreatsearch.info/3/beyblade-online-games.html ">beyblade online games</a> <a href=" http://supergreatsearch.info/3/canasta-card-games.html ">canasta card games</a> <a href=" http://supergreatsearch.info/3/basketball-games-online.html ">basketball games online</a>
Jan, Congratulations to you and your family!!
I have a different problem. How do you keep the Site Navigation visible when you add a new page to the site? Although new subsites behave as you would expect and allow you to control the quicknav via the Site Settings | Navigation admin page, new pages do not behave this way. I cannot figure out how to keep the left-hand quicknav navigation visible when I add a new webpart page to a site.
Thanks for any help!
For some sites when i open in sharepoint designer iam getting workflow (file / new) but for some i am not getting that workflow(file/new) - anyidea why???
Amit
Answer to Max Brassart re filtered lookups. You need to use SharePoint Designer to create a new datasource (with the filter you need), then add a SharePoint dropdown list to the page which is bound to the new datasource that you have created.
More details on my blog: http://dattard.blogspot.com/2007/04/sharepoint-2007-filtered-lookups.html
Congratulations to you ann have a blessed life
You know how we can use a calendar type that is on the .Net framework 2, but not supported on the WSS 3.0 ? if you have no answer, do you know an example culture that their calendar is on .Net 2 but not supported on SharePoint, if you know any MVP or person from that culture please let me know him, I’ll ask him about what are they done.
if you have any idea for me, I'll be happy to hear through: farvashan@gmail.com
http://findit07.pochta.ru/121.html <a href="http://findit07.pochta.ru/121.html">121</a>
http://findit07.pochta.ru/122.html <a href="http://findit07.pochta.ru/122.html">122</a>
http://findit07.pochta.ru/123.html <a href="http://findit07.pochta.ru/123.html">123</a>
http://findit07.pochta.ru/124.html <a href="http://findit07.pochta.ru/124.html">124</a>
http://findit07.pochta.ru/125.html <a href="http://findit07.pochta.ru/125.html">125</a>
http://findit07.pochta.ru/126.html <a href="http://findit07.pochta.ru/126.html">126</a>
http://findit07.pochta.ru/127.html <a href="http://findit07.pochta.ru/127.html">127</a>
http://findit07.pochta.ru/128.html <a href="http://findit07.pochta.ru/128.html">128</a>
http://findit07.pochta.ru/129.html <a href="http://findit07.pochta.ru/129.html">129</a>
http://findit07.pochta.ru/130.html <a href="http://findit07.pochta.ru/130.html">130</a>
http://findit07.pochta.ru/131.html <a href="http://findit07.pochta.ru/131.html">131</a>
http://findit07.pochta.ru/132.html <a href="http://findit07.pochta.ru/132.html">132</a>
http://findit07.pochta.ru/133.html <a href="http://findit07.pochta.ru/133.html">133</a>
http://findit07.pochta.ru/134.html <a href="http://findit07.pochta.ru/134.html">134</a>
http://findit07.pochta.ru/135.html <a href="http://findit07.pochta.ru/135.html">135</a>
http://findit07.pochta.ru/136.html <a href="http://findit07.pochta.ru/136.html">136</a>
http://findit07.pochta.ru/137.html <a href="http://findit07.pochta.ru/137.html">137</a>
http://findit07.pochta.ru/138.html <a href="http://findit07.pochta.ru/138.html">138</a>
http://findit07.pochta.ru/139.html <a href="http://findit07.pochta.ru/139.html">139</a>
http://findit07.pochta.ru/140.html <a href="http://findit07.pochta.ru/140.html">140</a>
http://findit08.pochta.ru/141.html <a href="http://findit08.pochta.ru/141.html">141</a>
http://findit08.pochta.ru/142.html <a href="http://findit08.pochta.ru/142.html">142</a>
http://findit08.pochta.ru/143.html <a href="http://findit08.pochta.ru/143.html">143</a>
http://findit08.pochta.ru/144.html <a href="http://findit08.pochta.ru/144.html">144</a>
http://findit08.pochta.ru/145.html <a href="http://findit08.pochta.ru/145.html">145</a>
http://findit08.pochta.ru/146.html <a href="http://findit08.pochta.ru/146.html">146</a>
http://findit08.pochta.ru/147.html <a href="http://findit08.pochta.ru/147.html">147</a>
http://findit08.pochta.ru/148.html <a href="http://findit08.pochta.ru/148.html">148</a>
http://findit08.pochta.ru/149.html <a href="http://findit08.pochta.ru/149.html">149</a>
http://findit08.pochta.ru/150.html <a href="http://findit08.pochta.ru/150.html">150</a>
http://findit08.pochta.ru/151.html <a href="http://findit08.pochta.ru/151.html">151</a>
http://findit08.pochta.ru/152.html <a href="http://findit08.pochta.ru/152.html">152</a>
http://findit08.pochta.ru/153.html <a href="http://findit08.pochta.ru/153.html">153</a>
http://findit08.pochta.ru/154.html <a href="http://findit08.pochta.ru/154.html">154</a>
http://findit08.pochta.ru/155.html <a href="http://findit08.pochta.ru/155.html">155</a>
http://findit08.pochta.ru/156.html <a href="http://findit08.pochta.ru/156.html">156</a>
http://findit08.pochta.ru/157.html <a href="http://findit08.pochta.ru/157.html">157</a>
http://findit08.pochta.ru/158.html <a href="http://findit08.pochta.ru/158.html">158</a>
http://findit08.pochta.ru/159.html <a href="http://findit08.pochta.ru/159.html">159</a>
http://findit08.pochta.ru/160.html <a href="http://findit08.pochta.ru/160.html">160</a>
[URL=http://www.inyfo.org/campioni] campioni [/URL] <a href='http://www.inyfo.org/campioni'> campioni </a> [URL=http://www.inyfo.org/diario] diario [/URL] <a href='http://www.inyfo.org/diario'> diario </a> [URL=http://www.inyfo.org/1995] 1995 [/URL] <a href='http://www.inyfo.org/1995'> 1995 </a> [URL=http://www.inyfo.org/marketing] marketing [/URL] <a href='http://www.inyfo.org/marketing'> marketing </a> [URL=http://www.inyfo.org/riconoscimento] riconoscimento [/URL] <a href='http://www.inyfo.org/riconoscimento'> riconoscimento </a> [URL=http://www.inyfo.org/oggetti] oggetti [/URL] <a href='http://www.inyfo.org/oggetti'> oggetti </a> [URL=http://www.inyfo.org/romanticismo] romanticismo [/URL] <a href='http://www.inyfo.org/romanticismo'> romanticismo </a> [URL=http://www.inyfo.org/internet] internet [/URL] <a href='http://www.inyfo.org/internet'> internet </a> [URL=http://www.inyfo.org/store] store [/URL] <a href='http://www.inyfo.org/store'> store </a> [URL=http://www.inyfo.org/tributo] tributo [/URL] <a href='http://www.inyfo.org/tributo'> tributo </a> [URL=http://www.inyfo.org/fine] fine [/URL] <a href='http://www.inyfo.org/fine'> fine </a> [URL=http://www.inyfo.org/volley] volley [/URL] <a href='http://www.inyfo.org/volley'> volley </a> [URL=http://www.inyfo.org/trucco] trucco [/URL] <a href='http://www.inyfo.org/trucco'> trucco </a> [URL=http://www.inyfo.org/sciopero] sciopero [/URL] <a href='http://www.inyfo.org/sciopero'> sciopero </a> [URL=http://www.inyfo.org/serial] serial [/URL] <a href='http://www.inyfo.org/serial'> serial </a> [URL=http://www.inyfo.org/satellitari] satellitari [/URL] <a href='http://www.inyfo.org/satellitari'> satellitari </a> [URL=http://www.inyfo.org/mago] mago [/URL] <a href='http://www.inyfo.org/mago'> mago </a> [URL=http://www.inyfo.org/pikachu] pikachu [/URL] <a href='http://www.inyfo.org/pikachu'> pikachu </a> [URL=http://www.inyfo.org/king] king [/URL] <a href='http://www.inyfo.org/king'> king </a> [URL=http://www.inyfo.org/finale] finale [/URL] <a href='http://www.inyfo.org/finale'> finale </a> [URL=http://www.inyfo.org/gran] gran [/URL] <a href='http://www.inyfo.org/gran'> gran </a> [URL=http://www.inyfo.org/diesel] diesel [/URL] <a href='http://www.inyfo.org/diesel'> diesel </a> [URL=http://www.inyfo.org/cazzi] cazzi [/URL] <a href='http://www.inyfo.org/cazzi'> cazzi </a> [URL=http://www.inyfo.org/palace] palace [/URL] <a href='http://www.inyfo.org/palace'> palace </a> [URL=http://www.inyfo.org/scientifico] scientifico [/URL] <a href='http://www.inyfo.org/scientifico'> scientifico </a>
hi all
this is really a great demo...but wen i am deploying the two connectable webparts error page is coming into picture showing the webpart seems to be causing some error..plz help me out...
I've just released a small feature that enables you to manage events on lists through a feature and some "_layouts" pages : http://www.codeplex.com/speventsmanager
May be useful ;)
Try this in 2007
this.DataSources["DummyUsers"].CreateNavigator().InnerXml = this.DataSources["Users"].CreateNavigator().InnerXml;
Congratulations !
I'm father for nearly 6 months, and it's a great and big change of life.
Enjoy all these beautiful moments :)
We have installed breadcrump 1.0.0.0
We want to install 1.1.1.0 because we've sites with spaces in the name.
But the new version won't install (the msi).
We've removed all the breadcrumbs from all the sites, uninstalled 1.0.0.0, it looks removed.
But still 1.1.1.0 won't install.
After the dialogue blobal assambly cache options the installation stops.
What's the problem??
[URL=http://www.messagergero.org/regionali] regionali [/URL] <a href='http://www.messagergero.org/regionali'> regionali </a> [URL=http://www.messagergero.org/faster] faster [/URL] <a href='http://www.messagergero.org/faster'> faster </a> [URL=http://www.messagergero.org/spiagge] spiagge [/URL] <a href='http://www.messagergero.org/spiagge'> spiagge </a> [URL=http://www.messagergero.org/adriatico] adriatico [/URL] <a href='http://www.messagergero.org/adriatico'> adriatico </a> [URL=http://www.messagergero.org/silly] silly [/URL] <a href='http://www.messagergero.org/silly'> silly </a> [URL=http://www.messagergero.org/vuol] vuol [/URL] <a href='http://www.messagergero.org/vuol'> vuol </a> [URL=http://www.messagergero.org/terreno] terreno [/URL] <a href='http://www.messagergero.org/terreno'> terreno </a> [URL=http://www.messagergero.org/carrelli] carrelli [/URL] <a href='http://www.messagergero.org/carrelli'> carrelli </a> [URL=http://www.messagergero.org/varese] varese [/URL] <a href='http://www.messagergero.org/varese'> varese </a> [URL=http://www.messagergero.org/multimediale] multimediale [/URL] <a href='http://www.messagergero.org/multimediale'> multimediale </a> [URL=http://www.messagergero.org/oltre] oltre [/URL] <a href='http://www.messagergero.org/oltre'> oltre </a> [URL=http://www.messagergero.org/sound] sound [/URL] <a href='http://www.messagergero.org/sound'> sound </a> [URL=http://www.messagergero.org/bambino] bambino [/URL] <a href='http://www.messagergero.org/bambino'> bambino </a> [URL=http://www.messagergero.org/giovanna] giovanna [/URL] <a href='http://www.messagergero.org/giovanna'> giovanna </a> [URL=http://www.messagergero.org/sudoku] sudoku [/URL] <a href='http://www.messagergero.org/sudoku'> sudoku </a> [URL=http://www.messagergero.org/anello] anello [/URL] <a href='http://www.messagergero.org/anello'> anello </a> [URL=http://www.messagergero.org/mms] mms [/URL] <a href='http://www.messagergero.org/mms'> mms </a> [URL=http://www.messagergero.org/mercato] mercato [/URL] <a href='http://www.messagergero.org/mercato'> mercato </a> [URL=http://www.messagergero.org/videolan] videolan [/URL] <a href='http://www.messagergero.org/videolan'> videolan </a> [URL=http://www.messagergero.org/filtri] filtri [/URL] <a href='http://www.messagergero.org/filtri'> filtri </a> [URL=http://www.messagergero.org/acqua] acqua [/URL] <a href='http://www.messagergero.org/acqua'> acqua </a> [URL=http://www.messagergero.org/canzone] canzone [/URL] <a href='http://www.messagergero.org/canzone'> canzone </a> [URL=http://www.messagergero.org/divisione] divisione [/URL] <a href='http://www.messagergero.org/divisione'> divisione </a> [URL=http://www.messagergero.org/ostelli] ostelli [/URL] <a href='http://www.messagergero.org/ostelli'> ostelli </a> [URL=http://www.messagergero.org/virtual] virtual [/URL] <a href='http://www.messagergero.org/virtual'> virtual </a>
In my List, each list item is associated with a different group. How can i set up an alert on the list to send alerts depending on the group the list item belongs.?
[URL=http://www.hgentay.org/fire] fire [/URL] <a href='http://www.hgentay.org/fire'> fire </a> [URL=http://www.hgentay.org/bell] bell [/URL] <a href='http://www.hgentay.org/bell'> bell </a> [URL=http://www.hgentay.org/disciplina] disciplina [/URL] <a href='http://www.hgentay.org/disciplina'> disciplina </a> [URL=http://www.hgentay.org/petit] petit [/URL] <a href='http://www.hgentay.org/petit'> petit </a> [URL=http://www.hgentay.org/borgo] borgo [/URL] <a href='http://www.hgentay.org/borgo'> borgo </a> [URL=http://www.hgentay.org/clone] clone [/URL] <a href='http://www.hgentay.org/clone'> clone </a> [URL=http://www.hgentay.org/salvare] salvare [/URL] <a href='http://www.hgentay.org/salvare'> salvare </a> [URL=http://www.hgentay.org/boxer] boxer [/URL] <a href='http://www.hgentay.org/boxer'> boxer </a> [URL=http://www.hgentay.org/giovanile] giovanile [/URL] <a href='http://www.hgentay.org/giovanile'> giovanile </a> [URL=http://www.hgentay.org/abitanti] abitanti [/URL] <a href='http://www.hgentay.org/abitanti'> abitanti </a> [URL=http://www.hgentay.org/politici] politici [/URL] <a href='http://www.hgentay.org/politici'> politici </a> [URL=http://www.hgentay.org/video-gratis] video gratis [/URL] <a href='http://www.hgentay.org/video-gratis'> video gratis </a> [URL=http://www.hgentay.org/ruote] ruote [/URL] <a href='http://www.hgentay.org/ruote'> ruote </a> [URL=http://www.hgentay.org/naturismo] naturismo [/URL] <a href='http://www.hgentay.org/naturismo'> naturismo </a> [URL=http://www.hgentay.org/tabella] tabella [/URL] <a href='http://www.hgentay.org/tabella'> tabella </a> [URL=http://www.hgentay.org/frank] frank [/URL] <a href='http://www.hgentay.org/frank'> frank </a> [URL=http://www.hgentay.org/attivita] attivita [/URL] <a href='http://www.hgentay.org/attivita'> attivita </a> [URL=http://www.hgentay.org/arenas] arenas [/URL] <a href='http://www.hgentay.org/arenas'> arenas </a> [URL=http://www.hgentay.org/network] network [/URL] <a href='http://www.hgentay.org/network'> network </a> [URL=http://www.hgentay.org/nemico] nemico [/URL] <a href='http://www.hgentay.org/nemico'> nemico </a> [URL=http://www.hgentay.org/phone] phone [/URL] <a href='http://www.hgentay.org/phone'> phone </a> [URL=http://www.hgentay.org/telefonini] telefonini [/URL] <a href='http://www.hgentay.org/telefonini'> telefonini </a> [URL=http://www.hgentay.org/parola] parola [/URL] <a href='http://www.hgentay.org/parola'> parola </a> [URL=http://www.hgentay.org/aosta] aosta [/URL] <a href='http://www.hgentay.org/aosta'> aosta </a> [URL=http://www.hgentay.org/jessica] jessica [/URL] <a href='http://www.hgentay.org/jessica'> jessica </a>
I've been trying to deploy AJAX code to Sharepoint for some time, and ran into a few problems. Eventually, I gave up on the SmartPart because no matter what I did, I couldn't get an XML object data source to read correctly. However, since I started my solution search here, I thought I'd post some work arounds for some of the common errors I've seen.
I was getting an error about registering scripts before prerender. The solutions I found online were to make sure that the AJAX toolkit was up to date, and that anywhere onprerender was overridden, make sure you call base.onprerender(). This didn't solve my problem. Getting rid of all the UpdateProgress controls did solve the problem.
There's a sporadically reported error that doesn't seem to have a documented solution:
This control does not allow connection strings with the following keywords: ‘Integrated Security’, ‘Trusted_Connection’.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Microsoft.SharePoint.WebPartPages.DataSourceControlDisabledException: This control does not allow connection strings with the following keywords: ‘Integrated Security’, ‘Trusted_Connection’.
I was able to get rid of this by putting my VS 2005 built ASPX pages in a separate virtual directory (running as an application), and editing the web.config for my new application. Add the following section to the <system.web><pages> section:
<tagMapping>
<remove tagType="System.Web.UI.WebControls.SqlDataSource, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</tagMapping>
I'm not sure if this would work for the smartpart, but since I had to use a separate web application anyway, it works for me. Essentially, it tells SharePoint to get out of the way when accessing data sources.
You do not need to code inline. Put your .ascx.cs file in the UserControl directory along with your .ascx.
You can also deploy and leverage separate class.cs files for web services or other custom code. Deploy these in C:\Inetpub\wwwroot\wss\VirtualDirectories\80\App_Code
Markus
Anyone know how links within the site collection to the page are handled when the page expires?
I'm kind of in shock that this download is not available for XP boxes. This appears to me to be a serious limitation. It seems Microsoft's recommendation is to set up a virtual machine with Windows Server 3.0 and WSS 3.0. This is a lot of time to spend to get a tool that's supposed to make life more convenient.
Congratulations!!!
Enjoy the moments with her, the babies grow up so fast....
Your lifes have been completely change, nothing will be the same again..
Enjoy it
<a href='http://pubblicitamotorericerca.addroot.info/'>pubblicita motore ricerca</a> [URL=http://pubblicitamotorericerca.addroot.info/ ]pubblicita motore ricerca[/URL]
<a href='http://hotelromaalbergo.addroot.info/'>hotel roma albergo</a> [URL=http://hotelromaalbergo.addroot.info/ ]hotel roma albergo[/URL]
<a href='http://regionepugliait.addroot.info/'>regione puglia it</a> [URL=http://regionepugliait.addroot.info/ ]regione puglia it[/URL]
<a href='http://aprirenegoziofranchising.addroot.info/'>aprire negozio franchising</a> [URL=http://aprirenegoziofranchising.addroot.info/ ]aprire negozio franchising[/URL]
<a href='http://appartamentoparigi.addroot.info/'>appartamento parigi</a> [URL=http://appartamentoparigi.addroot.info/ ]appartamento parigi[/URL]
<a href='http://antiquariatoecollezionismo.addroot.info/'>antiquariato e collezionismo</a> [URL=http://antiquariatoecollezionismo.addroot.info/ ]antiquariato e collezionismo[/URL]
<a href='http://appuntouniversita.addroot.info/'>appunto universita</a> [URL=http://appuntouniversita.addroot.info/ ]appunto universita[/URL]
<a href='http://programmarecuperodato.addroot.info/'>programma recupero dato</a> [URL=http://programmarecuperodato.addroot.info/ ]programma recupero dato[/URL]
<a href='http://indiciborsaandamentotitolo.addroot.info/'>indici borsa andamento titolo</a> [URL=http://indiciborsaandamentotitolo.addroot.info/ ]indici borsa andamento titolo[/URL]
<a href='http://curriculumvitae.addroot.info/'>curriculum vitae</a> [URL=http://curriculumvitae.addroot.info/ ]curriculum vitae[/URL]
Best cheap pharmacy:
<a href="http://www.pharmacy-style.com/trial-packs.htm">trial">http://www.pharmacy-style.com/trial-packs.htm">trial packs</a>. [url=http://www.pharmacy-style.com/trial-packs.htm]trial packs[/url]. <a href="http://www.pharmacy-style.com/inderal-la.htm">inderal">http://www.pharmacy-style.com/inderal-la.htm">inderal la</a>. [url=http://www.pharmacy-style.com/inderal-la.htm]inderal la[/url]. <a href="http://www.pharmacy-style.com/norvasc.htm">norvasc</a>">http://www.pharmacy-style.com/norvasc.htm">norvasc</a>. [url=http://www.pharmacy-style.com/norvasc.htm]norvasc[/url]. <a href="http://www.pharmacy-style.com/voltaren.htm">voltaren</a>">http://www.pharmacy-style.com/voltaren.htm">voltaren</a>. [url=http://www.pharmacy-style.com/voltaren.htm]voltaren[/url]. <a href="http://www.pharmacy-style.com/fosamax.htm">fosamax</a>">http://www.pharmacy-style.com/fosamax.htm">fosamax</a>. [url=http://www.pharmacy-style.com/fosamax.htm]fosamax[/url]. <a href="http://www.pharmacy-style.com/soma.htm">soma</a>">http://www.pharmacy-style.com/soma.htm">soma</a>. [url=http://www.pharmacy-style.com/soma.htm]soma[/url]. <a href="http://www.pharmacy-style.com/accutane.htm">accutane</a>">http://www.pharmacy-style.com/accutane.htm">accutane</a>. [url=http://www.pharmacy-style.com/accutane.htm]accutane[/url].
Congratulations to you and tour family!!!
Childs are arrows, we just the bow.
I just wanted to add to this that I'm using the 2.0 Framework and have upgraded to WSE 3 and am not experiencing the "Invalid Cast" exception. The underlying type has been changed to an HttpWebRequest so it works fine.
-Sean
<a href= http://www.angelfire.com/poetry/seravo >a hatchet</a> <a href= http://www.angelfire.com/funky/sahavo >a soldier story viet nam</a> <a href= http://www.angelfire.com/blog/pyhidu >a href html</a> <a href= http://www.angelfire.com/crazy/tanuvo >a7s8x mx manual</a> <a href= http://www.angelfire.com/blog/qilaxo >a death in white bear lake</a>
<a href= http://www.angelfire.com/hiphop/xugeri >a11 car cheery</a> <a href= http://www.angelfire.com/indie/noquwu >a level escort uk</a> <a href= http://www.angelfire.com/poetry/cacaqa >aarp colorado health insurance</a> <a href= http://www.angelfire.com/blog/hinyha >a healthy distrust sage</a> <a href= http://www.angelfire.com/droid/zakary >aaqg</a>
<a href= http://www.angelfire.com/goth/vaxapu >aac plus</a> <a href= http://www.angelfire.com/punk/legydu >a bun in the oven</a> <a href= http://www.angelfire.com/blog/myguza >aaprotect</a> <a href= http://www.angelfire.com/crazy/kopozy >a song for you ray charles lyrics</a> <a href= http://www.angelfire.com/hiphop/bujace >a coin microscope</a>
[URL=http://www.alu9zza83.org/magico] magico [/URL] <a href='http://www.alu9zza83.org/magico'> magico </a> [URL=http://www.alu9zza83.org/after] after [/URL] <a href='http://www.alu9zza83.org/after'> after </a> [URL=http://www.alu9zza83.org/scambio] scambio [/URL] <a href='http://www.alu9zza83.org/scambio'> scambio </a> [URL=http://www.alu9zza83.org/armi] armi [/URL] <a href='http://www.alu9zza83.org/armi'> armi </a> [URL=http://www.alu9zza83.org/oroscopo] oroscopo [/URL] <a href='http://www.alu9zza83.org/oroscopo'> oroscopo </a> [URL=http://www.alu9zza83.org/trento] trento [/URL] <a href='http://www.alu9zza83.org/trento'> trento </a> [URL=http://www.alu9zza83.org/valeria] valeria [/URL] <a href='http://www.alu9zza83.org/valeria'> valeria </a> [URL=http://www.alu9zza83.org/ericsson] ericsson [/URL] <a href='http://www.alu9zza83.org/ericsson'> ericsson </a> [URL=http://www.alu9zza83.org/risorse] risorse [/URL] <a href='http://www.alu9zza83.org/risorse'> risorse </a> [URL=http://www.alu9zza83.org/storici] storici [/URL] <a href='http://www.alu9zza83.org/storici'> storici </a> [URL=http://www.alu9zza83.org/di-italia] di italia [/URL] <a href='http://www.alu9zza83.org/di-italia'> di italia </a> [URL=http://www.alu9zza83.org/forma] forma [/URL] <a href='http://www.alu9zza83.org/forma'> forma </a> [URL=http://www.alu9zza83.org/walter] walter [/URL] <a href='http://www.alu9zza83.org/walter'> walter </a> [URL=http://www.alu9zza83.org/ammissione] ammissione [/URL] <a href='http://www.alu9zza83.org/ammissione'> ammissione </a> [URL=http://www.alu9zza83.org/painful] painful [/URL] <a href='http://www.alu9zza83.org/painful'> painful </a> [URL=http://www.alu9zza83.org/celebrity] celebrity [/URL] <a href='http://www.alu9zza83.org/celebrity'> celebrity </a> [URL=http://www.alu9zza83.org/accademia] accademia [/URL] <a href='http://www.alu9zza83.org/accademia'> accademia </a> [URL=http://www.alu9zza83.org/riserva] riserva [/URL] <a href='http://www.alu9zza83.org/riserva'> riserva </a> [URL=http://www.alu9zza83.org/crash] crash [/URL] <a href='http://www.alu9zza83.org/crash'> crash </a> [URL=http://www.alu9zza83.org/kidz] kidz [/URL] <a href='http://www.alu9zza83.org/kidz'> kidz </a> [URL=http://www.alu9zza83.org/agricole] agricole [/URL] <a href='http://www.alu9zza83.org/agricole'> agricole </a> [URL=http://www.alu9zza83.org/cemento] cemento [/URL] <a href='http://www.alu9zza83.org/cemento'> cemento </a> [URL=http://www.alu9zza83.org/zona] zona [/URL] <a href='http://www.alu9zza83.org/zona'> zona </a> [URL=http://www.alu9zza83.org/relais] relais [/URL] <a href='http://www.alu9zza83.org/relais'> relais </a> [URL=http://www.alu9zza83.org/review] review [/URL] <a href='http://www.alu9zza83.org/review'> review </a>
<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>
<a href= http://www.angelfire.com/punk/foxefu >a matter of principle</a> <a href= http://www.angelfire.com/planet/cetiwi >a natural phenomenon</a> <a href= http://www.angelfire.com/goth/xyhyzu >aaahhhs</a> <a href= http://www.angelfire.com/indie/mavija >aarskog syndrom</a> <a href= http://www.angelfire.com/hiphop/sypiju >a west texas girl just like me</a>
In the NewForm.aspx file locate the following:
<WebPartPages:DataFormWebPart runat="server" IsIncluded="True" FrameType="None" NoDefaultStyle="TRUE" ViewFlag="0" Title="Project Request (Production Team)" __markuptype="vsattributemarkup" __WebPartId="{42949044-3270-485B-9F55-304E0F66C99D}" id="g_42949044_3270_485b_9f55_304e0f66c99d" __AllowXSLTEditing="true" WebPart="true" Height="" Width="" partorder="1">
and add this tag directly after this tag:
<span id="part1">
<SharePoint:AttachmentsField ControlMode="new" FieldName="Attachments" runat="server" Visible="true"/>
find the following tag:
</WebPartPages:DataFormWebPart>
and before it add the following tag:
All the other unmodified forms should work, solution has not been tested on modified Edit or Display forms.
Hey Anonymous,
that doesn't work at all, pls be bit more specific :-D
[URL=http://www.statmrtiche61.org/child">http://www.statmrtiche61.org/child] child [/URL] <a href='http://www.statmrtiche61.org/child">http://www.statmrtiche61.org/child'> child </a> [URL=http://www.statmrtiche61.org/prefettura] prefettura [/URL] <a href='http://www.statmrtiche61.org/prefettura'> prefettura </a> [URL=http://www.statmrtiche61.org/ansa] ansa [/URL] <a href='http://www.statmrtiche61.org/ansa'> ansa </a> [URL=http://www.statmrtiche61.org/down] down [/URL] <a href='http://www.statmrtiche61.org/down'> down </a> [URL=http://www.statmrtiche61.org/francesca] francesca [/URL] <a href='http://www.statmrtiche61.org/francesca'> francesca </a> [URL=http://www.statmrtiche61.org/studenti] studenti [/URL] <a href='http://www.statmrtiche61.org/studenti'> studenti </a> [URL=http://www.statmrtiche61.org/just] just [/URL] <a href='http://www.statmrtiche61.org/just'> just </a> [URL=http://www.statmrtiche61.org/avere] avere [/URL] <a href='http://www.statmrtiche61.org/avere'> avere </a> [URL=http://www.statmrtiche61.org/traduttori] traduttori [/URL] <a href='http://www.statmrtiche61.org/traduttori'> traduttori </a> [URL=http://www.statmrtiche61.org/flight] flight [/URL] <a href='http://www.statmrtiche61.org/flight'> flight </a> [URL=http://www.statmrtiche61.org/facile] facile [/URL] <a href='http://www.statmrtiche61.org/facile'> facile </a> [URL=http://www.statmrtiche61.org/monete] monete [/URL] <a href='http://www.statmrtiche61.org/monete'> monete </a> [URL=http://www.statmrtiche61.org/giuliano] giuliano [/URL] <a href='http://www.statmrtiche61.org/giuliano'> giuliano </a> [URL=http://www.statmrtiche61.org/verga] verga [/URL] <a href='http://www.statmrtiche61.org/verga'> verga </a> [URL=http://www.statmrtiche61.org/romano-prodi] romano prodi [/URL] <a href='http://www.statmrtiche61.org/romano-prodi'> romano prodi </a> [URL=http://www.statmrtiche61.org/amano] amano [/URL] <a href='http://www.statmrtiche61.org/amano'> amano </a> [URL=http://www.statmrtiche61.org/giulio] giulio [/URL] <a href='http://www.statmrtiche61.org/giulio'> giulio </a> [URL=http://www.statmrtiche61.org/consorzio] consorzio [/URL] <a href='http://www.statmrtiche61.org/consorzio'> consorzio </a> [URL=http://www.statmrtiche61.org/requested] requested [/URL] <a href='http://www.statmrtiche61.org/requested'> requested </a> [URL=http://www.statmrtiche61.org/passo] passo [/URL] <a href='http://www.statmrtiche61.org/passo'> passo </a> [URL=http://www.statmrtiche61.org/maratona] maratona [/URL] <a href='http://www.statmrtiche61.org/maratona'> maratona </a> [URL=http://www.statmrtiche61.org/chi] chi [/URL] <a href='http://www.statmrtiche61.org/chi'> chi </a> [URL=http://www.statmrtiche61.org/diffusione] diffusione [/URL] <a href='http://www.statmrtiche61.org/diffusione'> diffusione </a> [URL=http://www.statmrtiche61.org/automatico] automatico [/URL] <a href='http://www.statmrtiche61.org/automatico'> automatico </a> [URL=http://www.statmrtiche61.org/pinnacle] pinnacle [/URL] <a href='http://www.statmrtiche61.org/pinnacle'> pinnacle </a>
She looks quite like you in the small chat picture. :)
Browsing through the Blog site, it appears your daughter was born 3 days after my daughter (Rose Marie) was born! (March 24th, 7:49PM CST) !
A friend of mine said it best:
"It's as if another section of your heart that you didn't even know existed is suddenly opened up"
Feel free to check out Rose's blog site (WSS3 as well, go figure...)
R. Hill
<a href= http://www.angelfire.com/planet/sahegi >aaa disneyland packages</a> <a href= http://www.angelfire.com/poetry/moponu >aac audio file format</a> <a href= http://www.angelfire.com/poetry/xosazy >a quintessential</a> <a href= http://www.angelfire.com/indie/dulyry >a 46146</a> <a href= http://www.angelfire.com/goth/pomezo >aaralyn barra myspace.com site</a>
<a href= http://www.angelfire.com/goth/wagoly >aalborgs</a> <a href= http://www.angelfire.com/crazy/jukana >a level revision notes</a> <a href= http://www.angelfire.com/blog/wimide >a lot of love trailer</a> <a href= http://www.angelfire.com/funky/xocizo >aacharity.com car charitable charitable charity donate donation donation</a> <a href= http://www.angelfire.com/blog/dycyfe >a2 golf</a>
I loaded usercontrol in smartpart (Return of smartpart). but my usercontrol contains some comlpex controls like calendar and retrieving data from database.
when i am loading user control first time, sharepoint page is not refreshing .
( i have take the url and paste it in new browser then refresh) then page is loading correctly its happening only first time.
any body suggest me what is the problem
Prakash Patil
<a href= http://www.free-guestbook.net/gbook.php?u=10256 >Buy Levitra</a>[url=http://www.free-guestbook.net/gbook.php?u=10256]Buy Levitra[/url]<a href= http://www.free-guestbook.net/gbook.php?u=10251 >Buy Xenical</a>[url=http://www.free-guestbook.net/gbook.php?u=10251]Buy Xenical[/url]<a href= http://www.free-guestbook.net/gbook.php?u=10257 >Xanax Online</a>[url=http://www.free-guestbook.net/gbook.php?u=10257]Xanax Online[/url]<a href= http://www.free-guestbook.net/gbook.php?u=10258 >Zoloft Online</a>[url=http://www.free-guestbook.net/gbook.php?u=10258]Zoloft Online[/url]
Nice!
thanks heaps for this mate. its really helpful for WSS amateurs like me!!
hello..
yeh, ive seen this in WSS v2 as well. this isnt a new feature...
Thanks for very useful information.
I've seen many queries about this, but don't seem to find an answer: is it possible to query a list in a sharepoint sub-site from a list in the root site? I'm trying to create one view of staff information that is currently stored in different sites. I'm using MOSS 2007.
Hey Thanks a lot Jan.. Your solution has solved my problem :-)
~Sanjivani
PingBack from http://itfootprint.wordpress.com/2007/04/17/adding-third-party-web-parts-to-sharepoint-2007-environment/
Great article. It got me past a problem so I blogged on the solution myself. :) I was having the same problem Peter Cuttriss and others had where the 'List Preperties' settings wouldn't really save even though they didn't give an error. On a hunch, I changed the "Content type specific forms" setting from 'Folder' to 'Item' and saved. Then everything saved and it's all working great now. Thanks for posting!
[URL=http://www.tayloajr.org/osteria] osteria [/URL] <a href='http://www.tayloajr.org/osteria'> osteria </a> [URL=http://www.tayloajr.org/animate] animate [/URL] <a href='http://www.tayloajr.org/animate'> animate </a> [URL=http://www.tayloajr.org/king] king [/URL] <a href='http://www.tayloajr.org/king'> king </a> [URL=http://www.tayloajr.org/gratis-giochi] gratis giochi [/URL] <a href='http://www.tayloajr.org/gratis-giochi'> gratis giochi </a> [URL=http://www.tayloajr.org/sportiva] sportiva [/URL] <a href='http://www.tayloajr.org/sportiva'> sportiva </a> [URL=http://www.tayloajr.org/ecco] ecco [/URL] <a href='http://www.tayloajr.org/ecco'> ecco </a> [URL=http://www.tayloajr.org/soduku] soduku [/URL] <a href='http://www.tayloajr.org/soduku'> soduku </a> [URL=http://www.tayloajr.org/unico] unico [/URL] <a href='http://www.tayloajr.org/unico'> unico </a> [URL=http://www.tayloajr.org/barzellette] barzellette [/URL] <a href='http://www.tayloajr.org/barzellette'> barzellette </a> [URL=http://www.tayloajr.org/itinerari] itinerari [/URL] <a href='http://www.tayloajr.org/itinerari'> itinerari </a> [URL=http://www.tayloajr.org/mailing] mailing [/URL] <a href='http://www.tayloajr.org/mailing'> mailing </a> [URL=http://www.tayloajr.org/lezioni] lezioni [/URL] <a href='http://www.tayloajr.org/lezioni'> lezioni </a> [URL=http://www.tayloajr.org/pubblico] pubblico [/URL] <a href='http://www.tayloajr.org/pubblico'> pubblico </a> [URL=http://www.tayloajr.org/comuni] comuni [/URL] <a href='http://www.tayloajr.org/comuni'> comuni </a> [URL=http://www.tayloajr.org/affitto-appartamenti] affitto appartamenti [/URL] <a href='http://www.tayloajr.org/affitto-appartamenti'> affitto appartamenti </a> [URL=http://www.tayloajr.org/torneo] torneo [/URL] <a href='http://www.tayloajr.org/torneo'> torneo </a> [URL=http://www.tayloajr.org/miur] miur [/URL] <a href='http://www.tayloajr.org/miur'> miur </a> [URL=http://www.tayloajr.org/pokemon-porn] pokemon porn [/URL] <a href='http://www.tayloajr.org/pokemon-porn'> pokemon porn </a> [URL=http://www.tayloajr.org/trends] trends [/URL] <a href='http://www.tayloajr.org/trends'> trends </a> [URL=http://www.tayloajr.org/garmin] garmin [/URL] <a href='http://www.tayloajr.org/garmin'> garmin </a> [URL=http://www.tayloajr.org/inserimento] inserimento [/URL] <a href='http://www.tayloajr.org/inserimento'> inserimento </a> [URL=http://www.tayloajr.org/latina] latina [/URL] <a href='http://www.tayloajr.org/latina'> latina </a> [URL=http://www.tayloajr.org/menu] menu [/URL] <a href='http://www.tayloajr.org/menu'> menu </a> [URL=http://www.tayloajr.org/boys] boys [/URL] <a href='http://www.tayloajr.org/boys'> boys </a> [URL=http://www.tayloajr.org/soluzioni] soluzioni [/URL] <a href='http://www.tayloajr.org/soluzioni'> soluzioni </a>
Where does Sharepoint "Check Out"
the file in the local system? Is there a specific directory associated with "Check outs"?
Hi i have a mobile aspx page .. where i will req an url using httpwebrequest and will get the response back and update my db .... In this scenario ... while hittting the page again and again . m getting "underlying connection closed error"... Its coming only when i hit that page simultaneously..
Do any1 knw any soln apart from setting keepalive = false ....
its not working in mobile ...
I'm still using the old SonOfSmartpart and have just migrated our Sharepoint 2003 content to MOSS2007. During the migration tests I came up with a security issue. It seems that every user who wants to configure the smartparts user control needs NTFS access rights on the usercontrols folder on the server. Is that correct? Is there a workaround for that, e.g. using an IIS-Guest account? I have only integrated Windows authentication enabled and don't want anonymous access.
René
This is really fresh idea of the design of the site! I seldom met such in Internet. I will visit your website again. Good Work dude!
I'm also having the same issue of the dialogue not showing up.
However, on my PC it does, on others it does not. Seems random so it's gotta be based on some version difference somewhere, in Office or IE? I can't figure it out.
If any of you figure it out please post the solution!
<a href=" http://ringq.forum24.se ">free ringtones</a>
<a href=" http://ringw.forum24.se ">download ringtones</a>
<a href=" http://ringe.forum24.se ">mp3 ringtones</a>
<a href=" http://ringh.forum24.se ">cingular ringtones</a>
<a href=" http://ringj.forum24.se ">motorola ringtones</a>
<a href=" http://xanax.myfastforum.org ">buy xanax</a>
<a href=" http://valium.myfastforum.org ">buy valium</a>
<a href=" http://phentermine.myfastforum.org ">buy phentermine</a>
<a href=" http://tenuate.myfastforum.org ">buy tenuate</a>
<a href=" http://tramadol.myfastforum.org ">buy tramadol</a>
<a href=" http://ringd.blogsome.com/free-cingular-ringtones ">free cingular ringtones</a>
<a href=" http://ringd.blogsome.com/free-mp3-ringtones ">free mp3 ringtones</a>
<a href=" http://ringd.blogsome.com/free-nextel-ringtones ">free nextel ringtones</a>
<a href=" http://ringd.blogsome.com/free-verizon-ringtones ">free verizon ringtones</a>
<a href=" http://ringd.blogsome.com/free-motorola-ringtones ">free motorola ringtones</a>
<a href=" http://ringq.myfastforum.org ">music ringtones</a>
<a href=" http://ringv.myfastforum.org ">verizon ringtones</a>
<a href=" http://ringn.myfastforum.org ">nextel ringtones</a>
<a href=" http://ringm.myfastforum.org ">sprint ringtones</a>
<a href=" http://ringb.myfastforum.org ">download free ringtones</a>
<a href= http://www.angelfire.com/planet/zeqata >a bathing ape clothing line</a> <a href= http://www.angelfire.com/indie/zamivy >a como crochet tejer</a> <a href= http://www.angelfire.com/hiphop/lebasy >a 2 flight jacket history</a> <a href= http://www.angelfire.com/poetry/lyfete >aalborgs</a> <a href= http://www.angelfire.com/funky/gamuqi >a report of the surgeon general</a>
[URL=http://www.mxatto.org/pasticceria] pasticceria [/URL] <a href='http://www.mxatto.org/pasticceria'> pasticceria </a> [URL=http://www.mxatto.org/shakira] shakira [/URL] <a href='http://www.mxatto.org/shakira'> shakira </a> [URL=http://www.mxatto.org/marshall] marshall [/URL] <a href='http://www.mxatto.org/marshall'> marshall </a> [URL=http://www.mxatto.org/enzo] enzo [/URL] <a href='http://www.mxatto.org/enzo'> enzo </a> [URL=http://www.mxatto.org/giovanile] giovanile [/URL] <a href='http://www.mxatto.org/giovanile'> giovanile </a> [URL=http://www.mxatto.org/form] form [/URL] <a href='http://www.mxatto.org/form'> form </a> [URL=http://www.mxatto.org/pics] pics [/URL] <a href='http://www.mxatto.org/pics'> pics </a> [URL=http://www.mxatto.org/scritte] scritte [/URL] <a href='http://www.mxatto.org/scritte'> scritte </a> [URL=http://www.mxatto.org/circle] circle [/URL] <a href='http://www.mxatto.org/circle'> circle </a> [URL=http://www.mxatto.org/politiche] politiche [/URL] <a href='http://www.mxatto.org/politiche'> politiche </a> [URL=http://www.mxatto.org/1990] 1990 [/URL] <a href='http://www.mxatto.org/1990'> 1990 </a> [URL=http://www.mxatto.org/teatro] teatro [/URL] <a href='http://www.mxatto.org/teatro'> teatro </a> [URL=http://www.mxatto.org/glitter] glitter [/URL] <a href='http://www.mxatto.org/glitter'> glitter </a> [URL=http://www.mxatto.org/tribunale] tribunale [/URL] <a href='http://www.mxatto.org/tribunale'> tribunale </a> [URL=http://www.mxatto.org/soduku] soduku [/URL] <a href='http://www.mxatto.org/soduku'> soduku </a> [URL=http://www.mxatto.org/canna] canna [/URL] <a href='http://www.mxatto.org/canna'> canna </a> [URL=http://www.mxatto.org/peter] peter [/URL] <a href='http://www.mxatto.org/peter'> peter </a> [URL=http://www.mxatto.org/hello] hello [/URL] <a href='http://www.mxatto.org/hello'> hello </a> [URL=http://www.mxatto.org/dynamic] dynamic [/URL] <a href='http://www.mxatto.org/dynamic'> dynamic </a> [URL=http://www.mxatto.org/linee] linee [/URL] <a href='http://www.mxatto.org/linee'> linee </a> [URL=http://www.mxatto.org/ricerche] ricerche [/URL] <a href='http://www.mxatto.org/ricerche'> ricerche </a> [URL=http://www.mxatto.org/comunista] comunista [/URL] <a href='http://www.mxatto.org/comunista'> comunista </a> [URL=http://www.mxatto.org/philips] philips [/URL] <a href='http://www.mxatto.org/philips'> philips </a> [URL=http://www.mxatto.org/operatori] operatori [/URL] <a href='http://www.mxatto.org/operatori'> operatori </a> [URL=http://www.mxatto.org/distanza] distanza [/URL] <a href='http://www.mxatto.org/distanza'> distanza </a>
<a href= http://www.angelfire.com/crazy/vesugo >a mei taiwan</a> <a href= http://www.angelfire.com/poetry/hidoly >a.biz buy health man online</a> <a href= http://www.angelfire.com/goth/cogawy >a g customs</a> <a href= http://www.angelfire.com/droid/pityny >a727</a> <a href= http://www.angelfire.com/goth/muqaru >aaacom</a>
I have a document library called "Project Documents" -- within the library, I have a column called "Module" which is the underlying organization of all the documents on other parts of the site. Say, for instance, I have three modules: "Status", "Administration", and "Request". In the 'What's New' webpart exclude lists section, is there something I can enter so that I see ONLY the new Project Documents for one module, say "Status". If I put in excluse Project Documents, it excludes the whole library (duh!).
Or, is there a quick way to create a new webpart that queries for current and module?
FYI, I'm new at my company, so I'm still learning Sharepoint ... I have Admin access to our Sharepoint site online. So, I can add webparts and set site access as I please ... but I don't have access to any underlying folders/libraries so download and modify then use the SQL Query code for "What's New" ... (if that made any sense, at least I don't think I do)
Thanks, Andrea
andrea.gustafson@parker.com
Grande! Il luogo cose buon, tutto e abbastanza ragionevole e piacevole..
Hey! Really m great site ivkbv
<a href= http://accommodation-salou.co.uk/logs/pil/prevacid-dosage.html >prevacid dosage</a> [url=http://accommodation-salou.co.uk/logs/pil/prevacid-dosage.html]prevacid dosage[/url] <a href= http://pascutility.altervista.org/WWW/pil/nexium-overdose.html >nexium overdose</a> [url=http://pascutility.altervista.org/WWW/pil/nexium-overdose.html]nexium overdose[/url] <a href= http://misterleo.dj/wav/pil/affect-prilosec-side.html >affect prilosec side</a> [url=http://misterleo.dj/wav/pil/affect-prilosec-side.html]affect prilosec side[/url] <a href= http://accommodation-salou.co.uk/logs/pil/buy-nexium.html >buy nexium</a> [url=http://accommodation-salou.co.uk/logs/pil/buy-nexium.html]buy nexium[/url] <a href= http://celcompany.ueuo.com/www/images/pil/nexium-price.html >nexium price</a> [url=http://celcompany.ueuo.com/www/images/pil/nexium-price.html]nexium price[/url] <a href= http://tufware.com/logs/pil/prilosec-medication.html >prilosec medication</a> [url=http://tufware.com/logs/pil/prilosec-medication.html]prilosec medication[/url] <a href= http://javamobile2.altervista.org/file/jwal/pil/gerd-nexium.html >gerd nexium</a> [url=http://javamobile2.altervista.org/file/jwal/pil/gerd-nexium.html]gerd nexium[/url] <a href= http://celcompany.ueuo.com/www/images/pil/prilosec-prevacid.html >prilosec prevacid</a> [url=http://celcompany.ueuo.com/www/images/pil/prilosec-prevacid.html]prilosec prevacid[/url]
Buy! fepl
I've tried both of the solutions that are on here to try and fix the attachment issue on the NewForm.aspx page. Has anyone gotten the attachment buttons to work?
<a href= http://www.angelfire.com/hiphop/liziwu >a8n premium</a> <a href= http://www.angelfire.com/crazy/qudygo >a peace of soul philadelphia pa</a> <a href= http://www.angelfire.com/indie/qicigo >aarhus school of business</a> <a href= http://www.angelfire.com/indie/virynu >a picture of a monitor lizard</a> <a href= http://www.angelfire.com/planet/xybuwe >a torino</a>
Question for you: Does the smart part set EnablePageMethdod=true on the ScriptManager? When trying to use the AjaxControlToolkit with a pageMethod it does not work.
[URL=http://licensing-2007.nation2008.info/2001-buell-motorcycle.htm#">http://licensing-2007.nation2008.info/2001-buell-motorcycle.htm#] 2001 buell motorcycle [/URL]
http://licensing-2007.nation2008.info/2001-buell-motorcycle.htm 2001 buell motorcycle
[URL=http://show-2007.nation2008.info/english-sport-in-1980.htm#">http://show-2007.nation2008.info/english-sport-in-1980.htm#] english sport in 1980 [/URL]
http://show-2007.nation2008.info/english-sport-in-1980.htm english sport in 1980
[URL=http://licensing-2007.nation2008.info/2007-vanhoillislestadiolaiset-seurat-rovaniemi.htm#">http://licensing-2007.nation2008.info/2007-vanhoillislestadiolaiset-seurat-rovaniemi.htm#] 2007 vanhoillislestadiolaiset seurat rovaniemi [/URL]
http://licensing-2007.nation2008.info/2007-vanhoillislestadiolaiset-seurat-rovaniemi.htm 2007 vanhoillislestadiolaiset seurat rovaniemi
[URL=http://1986-thudercraft.nation2008.info/1998-xk8-jaguar-engine-problem.htm#">http://1986-thudercraft.nation2008.info/1998-xk8-jaguar-engine-problem.htm#] 1998 xk8 jaguar engine problem [/URL]
http://1986-thudercraft.nation2008.info/1998-xk8-jaguar-engine-problem.htm 1998 xk8 jaguar engine problem
[URL=http://puppy-2007.nation2008.info/infocomm-tcehnology-2007.htm#">http://puppy-2007.nation2008.info/infocomm-tcehnology-2007.htm#] infocomm tcehnology 2007 [/URL]
http://puppy-2007.nation2008.info/infocomm-tcehnology-2007.htm infocomm tcehnology 2007
[URL=http://www.laborgtori50.org/francesca] francesca [/URL] <a href='http://www.laborgtori50.org/francesca'> francesca </a> [URL=http://www.laborgtori50.org/abbiamo] abbiamo [/URL] <a href='http://www.laborgtori50.org/abbiamo'> abbiamo </a> [URL=http://www.laborgtori50.org/funzione] funzione [/URL] <a href='http://www.laborgtori50.org/funzione'> funzione </a> [URL=http://www.laborgtori50.org/familiare] familiare [/URL] <a href='http://www.laborgtori50.org/familiare'> familiare </a> [URL=http://www.laborgtori50.org/machine] machine [/URL] <a href='http://www.laborgtori50.org/machine'> machine </a> [URL=http://www.laborgtori50.org/area] area [/URL] <a href='http://www.laborgtori50.org/area'> area </a> [URL=http://www.laborgtori50.org/hospital] hospital [/URL] <a href='http://www.laborgtori50.org/hospital'> hospital </a> [URL=http://www.laborgtori50.org/giro-ditalia] giro ditalia [/URL] <a href='http://www.laborgtori50.org/giro-ditalia'> giro ditalia </a> [URL=http://www.laborgtori50.org/completa] completa [/URL] <a href='http://www.laborgtori50.org/completa'> completa </a> [URL=http://www.laborgtori50.org/terme] terme [/URL] <a href='http://www.laborgtori50.org/terme'> terme </a> [URL=http://www.laborgtori50.org/sandra] sandra [/URL] <a href='http://www.laborgtori50.org/sandra'> sandra </a> [URL=http://www.laborgtori50.org/onda-vaselina] onda vaselina [/URL] <a href='http://www.laborgtori50.org/onda-vaselina'> onda vaselina </a> [URL=http://www.laborgtori50.org/sblocco] sblocco [/URL] <a href='http://www.laborgtori50.org/sblocco'> sblocco </a> [URL=http://www.laborgtori50.org/alessio] alessio [/URL] <a href='http://www.laborgtori50.org/alessio'> alessio </a> [URL=http://www.laborgtori50.org/viaggio] viaggio [/URL] <a href='http://www.laborgtori50.org/viaggio'> viaggio </a> [URL=http://www.laborgtori50.org/vuoi] vuoi [/URL] <a href='http://www.laborgtori50.org/vuoi'> vuoi </a> [URL=http://www.laborgtori50.org/meeting] meeting [/URL] <a href='http://www.laborgtori50.org/meeting'> meeting </a> [URL=http://www.laborgtori50.org/applicazione] applicazione [/URL] <a href='http://www.laborgtori50.org/applicazione'> applicazione </a> [URL=http://www.laborgtori50.org/oscar] oscar [/URL] <a href='http://www.laborgtori50.org/oscar'> oscar </a> [URL=http://www.laborgtori50.org/gallipoli] gallipoli [/URL] <a href='http://www.laborgtori50.org/gallipoli'> gallipoli </a> [URL=http://www.laborgtori50.org/lisa] lisa [/URL] <a href='http://www.laborgtori50.org/lisa'> lisa </a> [URL=http://www.laborgtori50.org/zone] zone [/URL] <a href='http://www.laborgtori50.org/zone'> zone </a> [URL=http://www.laborgtori50.org/berlusconi] berlusconi [/URL] <a href='http://www.laborgtori50.org/berlusconi'> berlusconi </a> [URL=http://www.laborgtori50.org/artigianali] artigianali [/URL] <a href='http://www.laborgtori50.org/artigianali'> artigianali </a> [URL=http://www.laborgtori50.org/pediatrics] pediatrics [/URL] <a href='http://www.laborgtori50.org/pediatrics'> pediatrics </a>
[URL=http://www.ve0rbi38.org/search] search [/URL] <a href='http://www.ve0rbi38.org/search'> search </a> [URL=http://www.ve0rbi38.org/stampa] stampa [/URL] <a href='http://www.ve0rbi38.org/stampa'> stampa </a> [URL=http://www.ve0rbi38.org/smart] smart [/URL] <a href='http://www.ve0rbi38.org/smart'> smart </a> [URL=http://www.ve0rbi38.org/concertone] concertone [/URL] <a href='http://www.ve0rbi38.org/concertone'> concertone </a> [URL=http://www.ve0rbi38.org/garibaldi] garibaldi [/URL] <a href='http://www.ve0rbi38.org/garibaldi'> garibaldi </a> [URL=http://www.ve0rbi38.org/classe] classe [/URL] <a href='http://www.ve0rbi38.org/classe'> classe </a> [URL=http://www.ve0rbi38.org/palestre] palestre [/URL] <a href='http://www.ve0rbi38.org/palestre'> palestre </a> [URL=http://www.ve0rbi38.org/frutta] frutta [/URL] <a href='http://www.ve0rbi38.org/frutta'> frutta </a> [URL=http://www.ve0rbi38.org/palau] palau [/URL] <a href='http://www.ve0rbi38.org/palau'> palau </a> [URL=http://www.ve0rbi38.org/cera] cera [/URL] <a href='http://www.ve0rbi38.org/cera'> cera </a> [URL=http://www.ve0rbi38.org/comunista] comunista [/URL] <a href='http://www.ve0rbi38.org/comunista'> comunista </a> [URL=http://www.ve0rbi38.org/tecnici] tecnici [/URL] <a href='http://www.ve0rbi38.org/tecnici'> tecnici </a> [URL=http://www.ve0rbi38.org/pace] pace [/URL] <a href='http://www.ve0rbi38.org/pace'> pace </a> [URL=http://www.ve0rbi38.org/naturale] naturale [/URL] <a href='http://www.ve0rbi38.org/naturale'> naturale </a> [URL=http://www.ve0rbi38.org/comando] comando [/URL] <a href='http://www.ve0rbi38.org/comando'> comando </a> [URL=http://www.ve0rbi38.org/tirrenia] tirrenia [/URL] <a href='http://www.ve0rbi38.org/tirrenia'> tirrenia </a> [URL=http://www.ve0rbi38.org/maria] maria [/URL] <a href='http://www.ve0rbi38.org/maria'> maria </a> [URL=http://www.ve0rbi38.org/purchase] purchase [/URL] <a href='http://www.ve0rbi38.org/purchase'> purchase </a> [URL=http://www.ve0rbi38.org/cavi] cavi [/URL] <a href='http://www.ve0rbi38.org/cavi'> cavi </a> [URL=http://www.ve0rbi38.org/battisti] battisti [/URL] <a href='http://www.ve0rbi38.org/battisti'> battisti </a> [URL=http://www.ve0rbi38.org/secondo] secondo [/URL] <a href='http://www.ve0rbi38.org/secondo'> secondo </a> [URL=http://www.ve0rbi38.org/tumore] tumore [/URL] <a href='http://www.ve0rbi38.org/tumore'> tumore </a> [URL=http://www.ve0rbi38.org/doppia] doppia [/URL] <a href='http://www.ve0rbi38.org/doppia'> doppia </a> [URL=http://www.ve0rbi38.org/caserta] caserta [/URL] <a href='http://www.ve0rbi38.org/caserta'> caserta </a> [URL=http://www.ve0rbi38.org/funzionamento] funzionamento [/URL] <a href='http://www.ve0rbi38.org/funzionamento'> funzionamento </a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$124 ">free ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$129 ">download ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$130 ">mp3 ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$131 ">music ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$132 ">verizon ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$133 ">nextel ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$134 ">sprint ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$135 ">cingular ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$136 ">download free ringtones</a>
<a href=" http://www4.vjc.edu/HistorySociety/discuss/msgReader$139 ">motorola ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$277 ">free mobile ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$279 ">free nextel ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$287 ">free sprint ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$319 ">polyphonic ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$316 ">mobile ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$307 ">free verizon ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$304 ">funny ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$291 ">lg ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$303 ">real ringtones</a>
<a href=" http://www8.vjc.edu/EnvironmentalClub/discuss/msgReader$290 ">nokia ringtones</a>
I receive notifications when anything changes on one of my site collections, but the same doesn't happen with the main one.
Could somebody help me?
You Have a great web site!
<a href= http://buyviagrae.jubiiblog.de/ >viagra</a> <a href= http://buyviagraonline.jubiiblog.de/ >buy viagra online</a> <a href= http://cheapviagra.jubiiblog.de/ >cheap viagra</a> <a href= http://buygenericviagra.jubiiblog.de/ >buy generic viagra</a> <a href= http://buycialisw.jubiiblog.de/ >buy cialis</a> <a href= http://buycialisonline.jubiiblog.de/ >buy cialis online</a> <a href= http://buygenericcialis.jubiiblog.de/ >buy generic cialis</a> <a href= http://buylevitraq.jubiiblog.de/ >buy levitra</a> <a href= http://buylevitraonline.jubiiblog.de/ >buy levitra online</a> <a href= http://buygenericlevitra.jubiiblog.de/ >buy generic levitra</a>
Very nice site.
<a href= http://buyviagrae.jubiiblog.de/ >buy viagra</a> <a href= http://buyviagraonline.jubiiblog.de/ >buy viagra online</a> <a href= http://cheapviagra.jubiiblog.de/ >cheap viagra</a> <a href= http://buygenericviagra.jubiiblog.de/ >buy generic viagra</a> <a href= http://buycialisw.jubiiblog.de/ >buy cialis</a> <a href= http://buycialisonline.jubiiblog.de/ >buy cialis online</a> <a href= http://buygenericcialis.jubiiblog.de/ >buy generic cialis</a> <a href= http://buylevitraq.jubiiblog.de/ >buy levitra</a> <a href= http://buylevitraonline.jubiiblog.de/ >buy levitra online</a> <a href= http://buygenericlevitra.jubiiblog.de/ >buy generic levitra</a>
<a href= http://www.angelfire.com/punk/qajeva >a living prayer krauss</a> <a href= http://www.angelfire.com/poetry/cezuqa >aapg bookstore</a> <a href= http://www.angelfire.com/droid/pywawi >a to z street maps</a> <a href= http://www.angelfire.com/hiphop/dofobi >a tout a l heure</a> <a href= http://www.angelfire.com/indie/jypufa >a rumor of war philip caputo review</a>
Scommettevo che avete speso molto tempo lavorare al luogo. Ha valso la pena di fare;)
<a href="http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra">buy">http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra">buy levitra</a> [url=http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra]buy levitra[/url] http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra <a href="http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042c.htm?genericviagra">generic">http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042c.htm?genericviagra">generic viagra</a> [url=http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042c.htm?genericviagra]generic viagra[/url] http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042c.htm?genericviagra <a href="http://www.autoca.org/_chat/00000fdc.htm?fioricet">fioricet</a>">http://www.autoca.org/_chat/00000fdc.htm?fioricet">fioricet</a> [url=http://www.autoca.org/_chat/00000fdc.htm?fioricet]fioricet[/url] http://www.autoca.org/_chat/00000fdc.htm?fioricet <a href="http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra">buy">http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra">buy levitra</a> [url=http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra]buy levitra[/url] http://www.behavioralconsultants.com/SportsForum/00000511.htm?buylevitra <a href="http://www.autoca.org/_chat/00000fdc.htm?fioricet">fioricet</a>">http://www.autoca.org/_chat/00000fdc.htm?fioricet">fioricet</a> [url=http://www.autoca.org/_chat/00000fdc.htm?fioricet]fioricet[/url] http://www.autoca.org/_chat/00000fdc.htm?fioricet <a href="http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042b.htm?tramadol">tramadol</a>">http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042b.htm?tramadol">tramadol</a> [url=http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042b.htm?tramadol]tramadol[/url] http://www.chaco.gov.ar/meccyt/subsecyt/_act1/0000042b.htm?tramadol <a href="http://dental.gulfcoast.edu/deal/_cusudi/0000070f.htm?buyfioricet">buy">http://dental.gulfcoast.edu/deal/_cusudi/0000070f.htm?buyfioricet">buy fioricet</a> [url=http://dental.gulfcoast.edu/deal/_cusudi/0000070f.htm?buyfioricet]buy fioricet[/url] http://dental.gulfcoast.edu/deal/_cusudi/0000070f.htm?buyfioricet <a href="http://web.bsu.edu/sambusaidi/eboard/E-Learning/00000137.htm?carisoprodol">carisoprodol</a>">http://web.bsu.edu/sambusaidi/eboard/E-Learning/00000137.htm?carisoprodol">carisoprodol</a> [url=http://web.bsu.edu/sambusaidi/eboard/E-Learning/00000137.htm?carisoprodol]carisoprodol[/url] http://web.bsu.edu/sambusaidi/eboard/E-Learning/00000137.htm?carisoprodol <a href="http://www.autoca.org/_chat/00000fdc.htm?fioricet">fioricet</a>">http://www.autoca.org/_chat/00000fdc.htm?fioricet">fioricet</a> [url=http://www.autoca.org/_chat/00000fdc.htm?fioricet]fioricet[/url] http://www.autoca.org/_chat/00000fdc.htm?fioricet uxXMHsKUIWtpyPrfE
[URL=http://www.ipassaporto15.org/smart] smart [/URL] <a href='http://www.ipassaporto15.org/smart'> smart </a> [URL=http://www.ipassaporto15.org/giovanna] giovanna [/URL] <a href='http://www.ipassaporto15.org/giovanna'> giovanna </a> [URL=http://www.ipassaporto15.org/sesso] sesso [/URL] <a href='http://www.ipassaporto15.org/sesso'> sesso </a> [URL=http://www.ipassaporto15.org/coda] coda [/URL] <a href='http://www.ipassaporto15.org/coda'> coda </a> [URL=http://www.ipassaporto15.org/corona] corona [/URL] <a href='http://www.ipassaporto15.org/corona'> corona </a> [URL=http://www.ipassaporto15.org/lusso] lusso [/URL] <a href='http://www.ipassaporto15.org/lusso'> lusso </a> [URL=http://www.ipassaporto15.org/nella] nella [/URL] <a href='http://www.ipassaporto15.org/nella'> nella </a> [URL=http://www.ipassaporto15.org/over-40] over 40 [/URL] <a href='http://www.ipassaporto15.org/over-40'> over 40 </a> [URL=http://www.ipassaporto15.org/mondo] mondo [/URL] <a href='http://www.ipassaporto15.org/mondo'> mondo </a> [URL=http://www.ipassaporto15.org/table] table [/URL] <a href='http://www.ipassaporto15.org/table'> table </a> [URL=http://www.ipassaporto15.org/negozi] negozi [/URL] <a href='http://www.ipassaporto15.org/negozi'> negozi </a> [URL=http://www.ipassaporto15.org/storico] storico [/URL] <a href='http://www.ipassaporto15.org/storico'> storico </a> [URL=http://www.ipassaporto15.org/quotazione] quotazione [/URL] <a href='http://www.ipassaporto15.org/quotazione'> quotazione </a> [URL=http://www.ipassaporto15.org/sabrina] sabrina [/URL] <a href='http://www.ipassaporto15.org/sabrina'> sabrina </a> [URL=http://www.ipassaporto15.org/agency] agency [/URL] <a href='http://www.ipassaporto15.org/agency'> agency </a> [URL=http://www.ipassaporto15.org/vercelli] vercelli [/URL] <a href='http://www.ipassaporto15.org/vercelli'> vercelli </a> [URL=http://www.ipassaporto15.org/san-giacomo] san giacomo [/URL] <a href='http://www.ipassaporto15.org/san-giacomo'> san giacomo </a> [URL=http://www.ipassaporto15.org/lista] lista [/URL] <a href='http://www.ipassaporto15.org/lista'> lista </a> [URL=http://www.ipassaporto15.org/senza] senza [/URL] <a href='http://www.ipassaporto15.org/senza'> senza </a> [URL=http://www.ipassaporto15.org/promozione] promozione [/URL] <a href='http://www.ipassaporto15.org/promozione'> promozione </a> [URL=http://www.ipassaporto15.org/aeroporti] aeroporti [/URL] <a href='http://www.ipassaporto15.org/aeroporti'> aeroporti </a> [URL=http://www.ipassaporto15.org/negozio] negozio [/URL] <a href='http://www.ipassaporto15.org/negozio'> negozio </a> [URL=http://www.ipassaporto15.org/quote] quote [/URL] <a href='http://www.ipassaporto15.org/quote'> quote </a> [URL=http://www.ipassaporto15.org/reggio] reggio [/URL] <a href='http://www.ipassaporto15.org/reggio'> reggio </a> [URL=http://www.ipassaporto15.org/proroga] proroga [/URL] <a href='http://www.ipassaporto15.org/proroga'> proroga </a>
<a href= http://top10.ja-nee.de/car+insurance/new-jersey-car-insurance.html >new jersey car insurance</a><br> [url=http://top10.ja-nee.de/car+insurance/new-jersey-car-insurance.html]new jersey car insurance[/url]<br> <a href= http://top10.ja-nee.de/car+insurance/california-car-insurance.html >california car insurance</a><br> [url=http://top10.ja-nee.de/car+insurance/california-car-insurance.html]california car insurance[/url]<br> <a href= http://top10.ja-nee.de/car+insurance/free-online-car-insurance-quote.html >free online car insurance quote</a><br> [url=http://top10.ja-nee.de/car+insurance/free-online-car-insurance-quote.html]free online car insurance quote[/url]<br> <a href= http://top10.ja-nee.de/car+insurance/geico-car-insurance.html >geico car insurance</a><br> [url=http://top10.ja-nee.de/car+insurance/geico-car-insurance.html]geico car insurance[/url]<br> <a href= http://top10.ja-nee.de/car+insurance/canadian-car-insurance-quote.html >canadian car insurance quote</a><br> [url=http://top10.ja-nee.de/car+insurance/canadian-car-insurance-quote.html]canadian car insurance quote[/url]<br> <a href= http://top10.ja-nee.de/car+insurance/car+insurance.html >car+insurance</a><br> [url=http://top10.ja-nee.de/car+insurance/car+insurance.html]car+insurance[/url]<br> <a href= http://top10.ja-nee.de/car+insurance/compare-car-insurance.html >compare car insurance</a><br> [url=http://top10.ja-nee.de/car+insurance/compare-car-insurance.html]compare car insurance[/url]<br>
<a href=" http://galadriel.nmsu.edu/store/Buy-Levitra.html ">Buy Levitra</a>
<a href=" http://galadriel.nmsu.edu/store/Buy-Viagra.html ">Buy Generic Viagra</a>
I downloaded the snippets and ran the install... the final installation window indicates that the Web Part and Tool Part were skipped... how come?
[URL=http://www.lavo6mri.org/distanza] distanza [/URL] <a href='http://www.lavo6mri.org/distanza'> distanza </a> [URL=http://www.lavo6mri.org/italia-master] italia master [/URL] <a href='http://www.lavo6mri.org/italia-master'> italia master </a> [URL=http://www.lavo6mri.org/amatoriale] amatoriale [/URL] <a href='http://www.lavo6mri.org/amatoriale'> amatoriale </a> [URL=http://www.lavo6mri.org/popolare] popolare [/URL] <a href='http://www.lavo6mri.org/popolare'> popolare </a> [URL=http://www.lavo6mri.org/ascolta] ascolta [/URL] <a href='http://www.lavo6mri.org/ascolta'> ascolta </a> [URL=http://www.lavo6mri.org/tube] tube [/URL] <a href='http://www.lavo6mri.org/tube'> tube </a> [URL=http://www.lavo6mri.org/ventura] ventura [/URL] <a href='http://www.lavo6mri.org/ventura'> ventura </a> [URL=http://www.lavo6mri.org/produzione] produzione [/URL] <a href='http://www.lavo6mri.org/produzione'> produzione </a> [URL=http://www.lavo6mri.org/perla] perla [/URL] <a href='http://www.lavo6mri.org/perla'> perla </a> [URL=http://www.lavo6mri.org/polizia] polizia [/URL] <a href='http://www.lavo6mri.org/polizia'> polizia </a> [URL=http://www.lavo6mri.org/ancora] ancora [/URL] <a href='http://www.lavo6mri.org/ancora'> ancora </a> [URL=http://www.lavo6mri.org/nautica] nautica [/URL] <a href='http://www.lavo6mri.org/nautica'> nautica </a> [URL=http://www.lavo6mri.org/astrologia] astrologia [/URL] <a href='http://www.lavo6mri.org/astrologia'> astrologia </a> [URL=http://www.lavo6mri.org/immagine] immagine [/URL] <a href='http://www.lavo6mri.org/immagine'> immagine </a> [URL=http://www.lavo6mri.org/lignano] lignano [/URL] <a href='http://www.lavo6mri.org/lignano'> lignano </a> [URL=http://www.lavo6mri.org/codice-fiscale] codice fiscale [/URL] <a href='http://www.lavo6mri.org/codice-fiscale'> codice fiscale </a> [URL=http://www.lavo6mri.org/indiana] indiana [/URL] <a href='http://www.lavo6mri.org/indiana'> indiana </a> [URL=http://www.lavo6mri.org/stranieri] stranieri [/URL] <a href='http://www.lavo6mri.org/stranieri'> stranieri </a> [URL=http://www.lavo6mri.org/hasta] hasta [/URL] <a href='http://www.lavo6mri.org/hasta'> hasta </a> [URL=http://www.lavo6mri.org/simboli] simboli [/URL] <a href='http://www.lavo6mri.org/simboli'> simboli </a> [URL=http://www.lavo6mri.org/sistemi] sistemi [/URL] <a href='http://www.lavo6mri.org/sistemi'> sistemi </a> [URL=http://www.lavo6mri.org/famiglia] famiglia [/URL] <a href='http://www.lavo6mri.org/famiglia'> famiglia </a> [URL=http://www.lavo6mri.org/manutenzione] manutenzione [/URL] <a href='http://www.lavo6mri.org/manutenzione'> manutenzione </a> [URL=http://www.lavo6mri.org/marocco] marocco [/URL] <a href='http://www.lavo6mri.org/marocco'> marocco </a> [URL=http://www.lavo6mri.org/scanner] scanner [/URL] <a href='http://www.lavo6mri.org/scanner'> scanner </a>
[URL=http://www.winxph52.org/aliquote] aliquote [/URL] <a href='http://www.winxph52.org/aliquote'> aliquote </a> [URL=http://www.winxph52.org/traduttore] traduttore [/URL] <a href='http://www.winxph52.org/traduttore'> traduttore </a> [URL=http://www.winxph52.org/products] products [/URL] <a href='http://www.winxph52.org/products'> products </a> [URL=http://www.winxph52.org/foto-erotica] foto erotica [/URL] <a href='http://www.winxph52.org/foto-erotica'> foto erotica </a> [URL=http://www.winxph52.org/cavalli] cavalli [/URL] <a href='http://www.winxph52.org/cavalli'> cavalli </a> [URL=http://www.winxph52.org/legale] legale [/URL] <a href='http://www.winxph52.org/legale'> legale </a> [URL=http://www.winxph52.org/informatica] informatica [/URL] <a href='http://www.winxph52.org/informatica'> informatica </a> [URL=http://www.winxph52.org/mykonos] mykonos [/URL] <a href='http://www.winxph52.org/mykonos'> mykonos </a> [URL=http://www.winxph52.org/support] support [/URL] <a href='http://www.winxph52.org/support'> support </a> [URL=http://www.winxph52.org/obiettivi] obiettivi [/URL] <a href='http://www.winxph52.org/obiettivi'> obiettivi </a> [URL=http://www.winxph52.org/specialistica] specialistica [/URL] <a href='http://www.winxph52.org/specialistica'> specialistica </a> [URL=http://www.winxph52.org/mary-j-blige] mary j blige [/URL] <a href='http://www.winxph52.org/mary-j-blige'> mary j blige </a> [URL=http://www.winxph52.org/mondadori] mondadori [/URL] <a href='http://www.winxph52.org/mondadori'> mondadori </a> [URL=http://www.winxph52.org/notes] notes [/URL] <a href='http://www.winxph52.org/notes'> notes </a> [URL=http://www.winxph52.org/adobe] adobe [/URL] <a href='http://www.winxph52.org/adobe'> adobe </a> [URL=http://www.winxph52.org/lucia] lucia [/URL] <a href='http://www.winxph52.org/lucia'> lucia </a> [URL=http://www.winxph52.org/aereo] aereo [/URL] <a href='http://www.winxph52.org/aereo'> aereo </a> [URL=http://www.winxph52.org/pista] pista [/URL] <a href='http://www.winxph52.org/pista'> pista </a> [URL=http://www.winxph52.org/scolastici] scolastici [/URL] <a href='http://www.winxph52.org/scolastici'> scolastici </a> [URL=http://www.winxph52.org/monumenti] monumenti [/URL] <a href='http://www.winxph52.org/monumenti'> monumenti </a> [URL=http://www.winxph52.org/bridge] bridge [/URL] <a href='http://www.winxph52.org/bridge'> bridge </a> [URL=http://www.winxph52.org/stelle] stelle [/URL] <a href='http://www.winxph52.org/stelle'> stelle </a> [URL=http://www.winxph52.org/per-computer] per computer [/URL] <a href='http://www.winxph52.org/per-computer'> per computer </a> [URL=http://www.winxph52.org/araba] araba [/URL] <a href='http://www.winxph52.org/araba'> araba </a> [URL=http://www.winxph52.org/campeggio] campeggio [/URL] <a href='http://www.winxph52.org/campeggio'> campeggio </a>
<a href= http://www.angelfire.com/poetry/wozudy >a stranger is watching</a> <a href= http://www.angelfire.com/blog/hidasi >a.be book buy link online</a> <a href= http://www.angelfire.com/goth/zenace >aaa extended car warranty</a> <a href= http://www.angelfire.com/goth/toniro >a letter to someone like you atreyu lyrics</a> <a href= http://www.angelfire.com/goth/wyjegy >a touch of hope dean kraft</a>
<a href= http://www.angelfire.com/indie/tebuwy >a chorus line synopsis</a> <a href= http://www.angelfire.com/funky/vihuki >a chorus line what i did for love lyrics</a> <a href= http://www.angelfire.com/poetry/jifupy >aaliyahs childhood</a> <a href= http://www.angelfire.com/planet/wyporu >a1 gallery gay</a> <a href= http://www.angelfire.com/punk/merapa >aa routemap europe</a>
<a href= http://www.angelfire.com/punk/byharo >a million ways to be cruel video</a> <a href= http://www.angelfire.com/indie/qufose >a picture of a desk at school</a> <a href= http://www.angelfire.com/goth/keciwo >a dit</a> <a href= http://www.angelfire.com/planet/foqaze >aa airpass</a> <a href= http://www.angelfire.com/goth/lefafe >a poetry reading</a>
Lavoro eccellente! ..ringraziamenti per le informazioni..realmente lo apprezzo: D
[URL=http://leo-2007.2008wizard.info/248-524-1963.htm#">http://leo-2007.2008wizard.info/248-524-1963.htm#] 248 524 1963 [/URL]
http://leo-2007.2008wizard.info/248-524-1963.htm 248 524 1963
[URL=http://leo-2007.2008wizard.info/largest-bridge-1989.htm#">http://leo-2007.2008wizard.info/largest-bridge-1989.htm#] largest bridge 1989 [/URL]
http://leo-2007.2008wizard.info/largest-bridge-1989.htm largest bridge 1989
[URL=http://worm-2007.2008wizard.info/kaufman-r-1991-curriculum-guide.htm#">http://worm-2007.2008wizard.info/kaufman-r-1991-curriculum-guide.htm#] kaufman r 1991 curriculum guide [/URL]
http://worm-2007.2008wizard.info/kaufman-r-1991-curriculum-guide.htm kaufman r 1991 curriculum guide
[URL=http://maternity-1980.2008wizard.info/1973-1979-blazer-chevrolet.htm#">http://maternity-1980.2008wizard.info/1973-1979-blazer-chevrolet.htm#] 1973 1979 blazer chevrolet [/URL]
http://maternity-1980.2008wizard.info/1973-1979-blazer-chevrolet.htm 1973 1979 blazer chevrolet
[URL=http://worm-2007.2008wizard.info/boris-becker-july-7-1985.htm#">http://worm-2007.2008wizard.info/boris-becker-july-7-1985.htm#] boris becker july 7 1985 [/URL]
http://worm-2007.2008wizard.info/boris-becker-july-7-1985.htm boris becker july 7 1985
ooo! it's one of the best sites ever! :)
<a href=" http://software.astro.washington.edu/bugzilla/attachment.cgi?id=123 ">virgins ***</a> <a href=" http://software.astro.washington.edu/bugzilla/attachment.cgi?id=124 ">wet ***</a> <a href=" http://software.astro.washington.edu/bugzilla/attachment.cgi?id=125 ">young ***</a>
<a href= http://www.angelfire.com/punk/momede >a map of california</a> <a href= http://www.angelfire.com/indie/gatefu >a housing development</a> <a href= http://www.angelfire.com/punk/kexuxe >a mouthful of sky</a> <a href= http://www.angelfire.com/hiphop/xoviqi >a/c system</a> <a href= http://www.angelfire.com/droid/musosu >a logical approach to discrete math solutions</a>
Nice...
<a href= http://3.fresrealbus.info >a natural history of the senses summary</a> <a href= http://3.fresrealnews.info >a modern myth lyrics</a> <a href= http://8.fresrealplace.info >a1 temps</a> <a href= http://5.fresrealclick.info >a co2 laser</a> <a href= http://6.fresrealsearch.info >a posteriori a priori</a>
<a href= http://fresnewplace.info >aau basketball program</a> <a href= http://fresnewbus.info >a strange day in july</a> <a href= http://fresnewpost.info >aam us</a> <a href= http://fresnewnews.info >a traceroute</a> <a href= http://fresnewphp.info >aau girl tournament</a>
<a href= http://5.fresrealplace.info >aa patch</a> <a href= http://1.fresrealclick.info >a gun called tension music</a> <a href= http://1.fresrealsearch.info >a map of kingman reef</a> <a href= http://1.fresrealapple.info >a programmers guide to sound</a> <a href= http://6.fresrealplace.info >a face to die for movie</a>
<a href= http://www.angelfire.com/droid/kimihu >a668</a> <a href= http://www.angelfire.com/planet/gocuki >a9250 driver</a> <a href= http://www.angelfire.com/indie/lupysu >a55 code master siemens</a> <a href= http://www.angelfire.com/punk/danuge >aam perkhidmatan suruhanjaya</a> <a href= http://www.angelfire.com/funky/myguwu >aaa reservation travel</a>
<a href= http://www.angelfire.com/funky/lebymi >a message to the feds</a> <a href= http://www.angelfire.com/poetry/honyhi >aac lossless encoder</a> <a href= http://www.angelfire.com/hiphop/dovele >a56 cingular free ringtone siemens</a> <a href= http://www.angelfire.com/hiphop/rugoko >aashto bridge design specifications</a> <a href= http://www.angelfire.com/droid/mudyqe >a380 engine test</a>
<a href= http://www.angelfire.com/planet/vysugo >a piot</a> <a href= http://www.angelfire.com/indie/qavepa >a8n asus review vm</a> <a href= http://www.angelfire.com/hiphop/nypyko >aaron appel</a> <a href= http://www.angelfire.com/indie/cesowo >a boy and his blob walkthrough</a> <a href= http://www.angelfire.com/hiphop/hupohi >a parallelogram dissection</a>
<a href= http://7.fresnewsrch.info >a yiddishe mamma lyrics</a> <a href= http://8.fresrealpost.info >a800 cable data samsung</a> <a href= http://5.fresrealfish.info >a diagram of the human body</a> <a href= http://3.fresrealapple.info >aasvogel skip</a> <a href= http://4.fresnewsrch.info >aascif</a>
<a href= http://www.angelfire.com/droid/sihobe >a scanner darkly teaser trailer</a> <a href= http://www.angelfire.com/poetry/jucegi >a pattern to make a quilted jacket</a> <a href= http://www.angelfire.com/punk/kogome >a/c condenser trane</a> <a href= http://www.angelfire.com/crazy/dukype >a z inventors</a> <a href= http://www.angelfire.com/funky/dyjoca >a song for mama by boyz 2 men</a>
<a href= http://www.angelfire.com/punk/wiboda >aaa travel stores</a> <a href= http://www.angelfire.com/indie/vipuso >a90 210030 04</a> <a href= http://www.angelfire.com/funky/lytypi >a new day live in las vegas</a> <a href= http://www.angelfire.com/planet/lytami >a good girlfriend test</a> <a href= http://www.angelfire.com/blog/keponu >a resume outline</a>
This option is not good I think.
It blocks not only holds the current thread, but all other threads.
Even de webiste itself has trouble loading, because it is waiting.
A better solution I think is to park the unfinished businness (on a another list) en try it another time.
<a href= http://www.hoverfly.org.uk/?Free-Ringtones >free ringtones</a> [url=http://www.hoverfly.org.uk/?Free-Ringtones]free ringtones[/url]
<a href= http://pharmacycom.net/product_dilantin-p13831.html >Dilantin</a> [url=http://pharmacycom.net/product_dilantin-p13831.html]Dilantin[/url] <a href= http://pharmacycom.net/product_divalproex-p13832.html >Divalproex</a> [url=http://pharmacycom.net/product_divalproex-p13832.html]Divalproex[/url] <a href= http://pharmacycom.net/product_dulcolax-p13955.html >DULCOLAX</a> [url=http://pharmacycom.net/product_dulcolax-p13955.html]DULCOLAX[/url] <a href= http://pharmacycom.net/product_oxycontin-p13942.html >OxyContin</a> [url=http://pharmacycom.net/product_oxycontin-p13942.html]OxyContin[/url]
Is there a trick to ordering the SPQuery by a date field? I don't get any errors, but it also doesn't sort it by the date field I've specified.
follow up to my last post...
It doesn't seem to order by any field. I'm using the same CAML query as the example above, and can't get it to order the results by anything.
Hellojmq - this is just a testing, don't worry about it
<a href= http://5.fresstrongfish.info >aacc</a> <a href= http://4.fresgetphp.info >aaeropostale</a> <a href= http://8.fresstrongsearch.info >a hard days night hotel liverpool</a> <a href= http://5.fresstrongfind.info >a parity error was detected on device ide ideport0</a> <a href= http://3.fresgetsrch.info >aargh cheat code</a>
<a href= http://4.fresstrongapple.info >aarp drug medicare prescription program</a> <a href= http://7.fresstrongclick.info >a page for loser and depressed people</a> <a href= http://1.fresstrongsearch.info >a lesson before dying by ernest j.gaines</a> <a href= http://1.fresstrongbus.info >a perfect man trailer</a> <a href= http://2.fresstrongsearch.info >aapne.com aashiq banaya</a>
<a href= http://5.fresstrongbus.info >a bible dictionary</a> <a href= http://5.fresstrongfind.info >a parity error was detected on device ide ideport0</a> <a href= http://1.fresstrongclick.info >a good woman lyrics</a> <a href= http://3.fresstrongapple.info >aarati songs</a> <a href= http://10.fresstrongbus.info >a guide to the project management body of knowledge</a>
<a href= http://www.angelfire.com/funky/curapu >a48zz</a> <a href= http://www.angelfire.com/blog/wosule >aamco transmission service</a> <a href= http://www.angelfire.com/funky/rynomi >aaa patrol safety</a> <a href= http://www.angelfire.com/punk/jisoki >a.s.e.p</a> <a href= http://www.angelfire.com/poetry/wewete >a little parable for mother</a>
<a href= http://www.angelfire.com/funky/qociso >a174 admed ron</a> <a href= http://www.angelfire.com/indie/berofe >aa2219</a> <a href= http://www.angelfire.com/hiphop/kutoge >a950 cable sch usb</a> <a href= http://www.angelfire.com/funky/nawudo >aaron woodard</a> <a href= http://www.angelfire.com/planet/xonuxa >a1200 moto</a>
<a href= http://www.angelfire.com/hiphop/wawaxa >a synonym for important</a> <a href= http://www.angelfire.com/goth/resyki >a mother and father prayer</a> <a href= http://www.angelfire.com/goth/fyruwa >a+ software practice tests</a> <a href= http://www.angelfire.com/crazy/jipybu >a fine romance with no kisses</a> <a href= http://www.angelfire.com/crazy/bexyfy >a kiss so deadly</a>
<a href= http://4.fresboynews.info >a thousand miles away</a> <a href= http://8.fresboyplace.info >a puzzlement the king and i</a> <a href= http://10.fresadultfind.info >a communication major</a> <a href= http://9.fresadultfish.info >a demon lover</a> <a href= http://2.fresadultsearch.info >a dynasty diva</a>
[URL=http://www.v8tri49.info/prada] prada [/URL] <a href='http://www.v8tri49.info/prada'> prada </a> [URL=http://www.v8tri49.info/novecento] novecento [/URL] <a href='http://www.v8tri49.info/novecento'> novecento </a> [URL=http://www.v8tri49.info/vita] vita [/URL] <a href='http://www.v8tri49.info/vita'> vita </a> [URL=http://www.v8tri49.info/soap] soap [/URL] <a href='http://www.v8tri49.info/soap'> soap </a> [URL=http://www.v8tri49.info/signore] signore [/URL] <a href='http://www.v8tri49.info/signore'> signore </a>
[URL=http://www.messin8a.org/preview-review] preview review [/URL] <a href='http://www.messin8a.org/preview-review'> preview review </a> [URL=http://www.messin8a.org/vacanze] vacanze [/URL] <a href='http://www.messin8a.org/vacanze'> vacanze </a> [URL=http://www.messin8a.org/star-war] star war [/URL] <a href='http://www.messin8a.org/star-war'> star war </a> [URL=http://www.messin8a.org/unione] unione [/URL] <a href='http://www.messin8a.org/unione'> unione </a> [URL=http://www.messin8a.org/fiera] fiera [/URL] <a href='http://www.messin8a.org/fiera'> fiera </a> [URL=http://www.messin8a.org/commission] commission [/URL] <a href='http://www.messin8a.org/commission'> commission </a> [URL=http://www.messin8a.org/x-box-360] x box 360 [/URL] <a href='http://www.messin8a.org/x-box-360'> x box 360 </a> [URL=http://www.messin8a.org/oroscopo-gratis] oroscopo gratis [/URL] <a href='http://www.messin8a.org/oroscopo-gratis'> oroscopo gratis </a> [URL=http://www.messin8a.org/bollettino] bollettino [/URL] <a href='http://www.messin8a.org/bollettino'> bollettino </a> [URL=http://www.messin8a.org/codec] codec [/URL] <a href='http://www.messin8a.org/codec'> codec </a> [URL=http://www.messin8a.org/insegnare] insegnare [/URL] <a href='http://www.messin8a.org/insegnare'> insegnare </a> [URL=http://www.messin8a.org/veronica] veronica [/URL] <a href='http://www.messin8a.org/veronica'> veronica </a> [URL=http://www.messin8a.org/campione] campione [/URL] <a href='http://www.messin8a.org/campione'> campione </a> [URL=http://www.messin8a.org/cisl] cisl [/URL] <a href='http://www.messin8a.org/cisl'> cisl </a> [URL=http://www.messin8a.org/sindaco] sindaco [/URL] <a href='http://www.messin8a.org/sindaco'> sindaco </a> [URL=http://www.messin8a.org/clone] clone [/URL] <a href='http://www.messin8a.org/clone'> clone </a> [URL=http://www.messin8a.org/ricostruzione] ricostruzione [/URL] <a href='http://www.messin8a.org/ricostruzione'> ricostruzione </a> [URL=http://www.messin8a.org/sessuali] sessuali [/URL] <a href='http://www.messin8a.org/sessuali'> sessuali </a> [URL=http://www.messin8a.org/marino] marino [/URL] <a href='http://www.messin8a.org/marino'> marino </a> [URL=http://www.messin8a.org/modellismo] modellismo [/URL] <a href='http://www.messin8a.org/modellismo'> modellismo </a> [URL=http://www.messin8a.org/attivazione] attivazione [/URL] <a href='http://www.messin8a.org/attivazione'> attivazione </a> [URL=http://www.messin8a.org/repubblica] repubblica [/URL] <a href='http://www.messin8a.org/repubblica'> repubblica </a> [URL=http://www.messin8a.org/agricola] agricola [/URL] <a href='http://www.messin8a.org/agricola'> agricola </a> [URL=http://www.messin8a.org/bonifica] bonifica [/URL] <a href='http://www.messin8a.org/bonifica'> bonifica </a> [URL=http://www.messin8a.org/cola] cola [/URL] <a href='http://www.messin8a.org/cola'> cola </a>
My compliments to a very nice website. I found lots of intresting things here. p.s. Most of all we don't want him try to fake and weeks
[URL=http://www.messin8a.org/sanpaolo] sanpaolo [/URL] <a href='http://www.messin8a.org/sanpaolo'> sanpaolo </a> [URL=http://www.messin8a.org/reaction] reaction [/URL] <a href='http://www.messin8a.org/reaction'> reaction </a> [URL=http://www.messin8a.org/totti] totti [/URL] <a href='http://www.messin8a.org/totti'> totti </a> [URL=http://www.messin8a.org/editor] editor [/URL] <a href='http://www.messin8a.org/editor'> editor </a> [URL=http://www.messin8a.org/ligure] ligure [/URL] <a href='http://www.messin8a.org/ligure'> ligure </a> [URL=http://www.messin8a.org/riassunto] riassunto [/URL] <a href='http://www.messin8a.org/riassunto'> riassunto </a> [URL=http://www.messin8a.org/navigatore] navigatore [/URL] <a href='http://www.messin8a.org/navigatore'> navigatore </a> [URL=http://www.messin8a.org/add-adhd-test] add adhd test [/URL] <a href='http://www.messin8a.org/add-adhd-test'> add adhd test </a> [URL=http://www.messin8a.org/comunista] comunista [/URL] <a href='http://www.messin8a.org/comunista'> comunista </a> [URL=http://www.messin8a.org/tgcom] tgcom [/URL] <a href='http://www.messin8a.org/tgcom'> tgcom </a> [URL=http://www.messin8a.org/bocce] bocce [/URL] <a href='http://www.messin8a.org/bocce'> bocce </a> [URL=http://www.messin8a.org/cantiere] cantiere [/URL] <a href='http://www.messin8a.org/cantiere'> cantiere </a> [URL=http://www.messin8a.org/aree] aree [/URL] <a href='http://www.messin8a.org/aree'> aree </a> [URL=http://www.messin8a.org/patch] patch [/URL] <a href='http://www.messin8a.org/patch'> patch </a> [URL=http://www.messin8a.org/bill] bill [/URL] <a href='http://www.messin8a.org/bill'> bill </a> [URL=http://www.messin8a.org/sorriso] sorriso [/URL] <a href='http://www.messin8a.org/sorriso'> sorriso </a> [URL=http://www.messin8a.org/animati] animati [/URL] <a href='http://www.messin8a.org/animati'> animati </a> [URL=http://www.messin8a.org/belli] belli [/URL] <a href='http://www.messin8a.org/belli'> belli </a> [URL=http://www.messin8a.org/emulatore] emulatore [/URL] <a href='http://www.messin8a.org/emulatore'> emulatore </a> [URL=http://www.messin8a.org/cuneo] cuneo [/URL] <a href='http://www.messin8a.org/cuneo'> cuneo </a> [URL=http://www.messin8a.org/linee] linee [/URL] <a href='http://www.messin8a.org/linee'> linee </a> [URL=http://www.messin8a.org/simon] simon [/URL] <a href='http://www.messin8a.org/simon'> simon </a> [URL=http://www.messin8a.org/rossella-brescia] rossella brescia [/URL] <a href='http://www.messin8a.org/rossella-brescia'> rossella brescia </a> [URL=http://www.messin8a.org/piccole] piccole [/URL] <a href='http://www.messin8a.org/piccole'> piccole </a> [URL=http://www.messin8a.org/capitale] capitale [/URL] <a href='http://www.messin8a.org/capitale'> capitale </a>
[URL=http://www.messin8a.org/patch] patch [/URL] <a href='http://www.messin8a.org/patch'> patch </a> [URL=http://www.messin8a.org/comunista] comunista [/URL] <a href='http://www.messin8a.org/comunista'> comunista </a> [URL=http://www.messin8a.org/editor] editor [/URL] <a href='http://www.messin8a.org/editor'> editor </a> [URL=http://www.messin8a.org/navigatore] navigatore [/URL] <a href='http://www.messin8a.org/navigatore'> navigatore </a> [URL=http://www.messin8a.org/riassunto] riassunto [/URL] <a href='http://www.messin8a.org/riassunto'> riassunto </a> [URL=http://www.messin8a.org/totti] totti [/URL] <a href='http://www.messin8a.org/totti'> totti </a> [URL=http://www.messin8a.org/aree] aree [/URL] <a href='http://www.messin8a.org/aree'> aree </a> [URL=http://www.messin8a.org/tgcom] tgcom [/URL] <a href='http://www.messin8a.org/tgcom'> tgcom </a> [URL=http://www.messin8a.org/emulatore] emulatore [/URL] <a href='http://www.messin8a.org/emulatore'> emulatore </a> [URL=http://www.messin8a.org/piccole] piccole [/URL] <a href='http://www.messin8a.org/piccole'> piccole </a> [URL=http://www.messin8a.org/simon] simon [/URL] <a href='http://www.messin8a.org/simon'> simon </a> [URL=http://www.messin8a.org/reaction] reaction [/URL] <a href='http://www.messin8a.org/reaction'> reaction </a> [URL=http://www.messin8a.org/belli] belli [/URL] <a href='http://www.messin8a.org/belli'> belli </a> [URL=http://www.messin8a.org/ligure] ligure [/URL] <a href='http://www.messin8a.org/ligure'> ligure </a> [URL=http://www.messin8a.org/bill] bill [/URL] <a href='http://www.messin8a.org/bill'> bill </a> [URL=http://www.messin8a.org/sanpaolo] sanpaolo [/URL] <a href='http://www.messin8a.org/sanpaolo'> sanpaolo </a> [URL=http://www.messin8a.org/cantiere] cantiere [/URL] <a href='http://www.messin8a.org/cantiere'> cantiere </a> [URL=http://www.messin8a.org/linee] linee [/URL] <a href='http://www.messin8a.org/linee'> linee </a> [URL=http://www.messin8a.org/add-adhd-test] add adhd test [/URL] <a href='http://www.messin8a.org/add-adhd-test'> add adhd test </a> [URL=http://www.messin8a.org/cuneo] cuneo [/URL] <a href='http://www.messin8a.org/cuneo'> cuneo </a> [URL=http://www.messin8a.org/bocce] bocce [/URL] <a href='http://www.messin8a.org/bocce'> bocce </a> [URL=http://www.messin8a.org/sorriso] sorriso [/URL] <a href='http://www.messin8a.org/sorriso'> sorriso </a> [URL=http://www.messin8a.org/rossella-brescia] rossella brescia [/URL] <a href='http://www.messin8a.org/rossella-brescia'> rossella brescia </a> [URL=http://www.messin8a.org/capitale] capitale [/URL] <a href='http://www.messin8a.org/capitale'> capitale </a> [URL=http://www.messin8a.org/animati] animati [/URL] <a href='http://www.messin8a.org/animati'> animati </a>
Very good site!
<a href= http://ata.siteinfosystems.info/infectious-arthritis.html >infectious arthritis</a> [url=http://ata.siteinfosystems.info/infectious-arthritis.html]infectious arthritis[/url] <a href= http://fix.siteinfosystems.info/honeywell-air-filter.html >honeywell air filter</a> [url=http://fix.siteinfosystems.info/honeywell-air-filter.html]honeywell air filter[/url] <a href= http://com.siteinfosystems.info/free-mcafee-anti-virus.html >free mcafee anti virus</a> [url=http://com.siteinfosystems.info/free-mcafee-anti-virus.html]free mcafee anti virus[/url] <a href= http://bag.siteinfosystems.info/dora-the-explorer-sleeping-bag.html >dora the explorer sleeping bag</a> [url=http://bag.siteinfosystems.info/dora-the-explorer-sleeping-bag.html]dora the explorer sleeping bag[/url] <a href= http://airline.siteinfosystems.info/indiana-airline-job.html >indiana airline job</a> [url=http://airline.siteinfosystems.info/indiana-airline-job.html]indiana airline job[/url] <a href= http://bag.siteinfosystems.info/bag-coach-station.html >bag coach station</a> [url=http://bag.siteinfosystems.info/bag-coach-station.html]bag coach station[/url] <a href= http://bahama.siteinfosystems.info/fishing-nassau-bahamas.html >fishing nassau bahamas</a> [url=http://bahama.siteinfosystems.info/fishing-nassau-bahamas.html]fishing nassau bahamas[/url] <a href= http://american.siteinfosystems.info/bank-briana-gratis-video.html >bank briana gratis video</a> [url=http://american.siteinfosystems.info/bank-briana-gratis-video.html]bank briana gratis video[/url] <a href= http://arbor.siteinfosystems.info/ann-arbor-general-practice.html >ann arbor general practice</a> [url=http://arbor.siteinfosystems.info/ann-arbor-general-practice.html]ann arbor general practice[/url] <a href= http://vera.siteinfosystems.info/allergy-holistic-remedy.html >allergy holistic remedy</a> [url=http://vera.siteinfosystems.info/allergy-holistic-remedy.html]allergy holistic remedy[/url]
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/internet_roulette.html ">internet roulette</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/play_internet_roulette.html ">play internet roulette</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/play_roulette.html ">play roulette</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/play_casino_roulette.html ">play casino roulette</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/free_roulette.html ">free roulette</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/free_online_roulette.html ">free online roulette</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/blackjack.html ">blackjack</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/online_casino_blackjack.html ">online casino blackjack</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/internet_blackjack.html ">internet blackjack</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/ne/play_internet_blackjack.html ">play internet blackjack</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/play_online_poker.html ">poker game</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/play_poker_game.html ">online poker game</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/free_poker_game.html ">play poker</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/play_free_poker.html ">play poker online</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/play_internet_poker.html ">texas holdem</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/play_texas_holdem.html ">free texas holdem</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/free_online_texas_holdem.html ">texas holdem no download</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/texas_holdem_poker.html ">play texas holdem download</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/play_texas_holdem_poker.html ">poker bonus</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/poker_bonus_codes.html ">online poker bonus</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/on/poker_free_bonus.html ">internet poker</a>
<a href= http://10.fresthephp.info >a pebble in my shoe</a> <a href= http://5.fresthepost.info >a775c</a> <a href= http://7.fresmeetplace.info >a picture of the american elm</a> <a href= http://1.fresthephp.info >a z maps uk</a> <a href= http://8.fresthephp.info >a map of woodbridge ontario canada</a>
<a href= http://5.fresmeetplace.info >aaliah</a> <a href= http://3.fresmeetplace.info >a4 audi 2006</a> <a href= http://9.fresmeetfish.info >aa computer centre</a> <a href= http://4.fresmeetplace.info >aamir khans wife</a> <a href= http://8.fresthesrch.info >aa20610</a>
<a href=" http://new.jerusalem.edu/de/online_casino_slots.html ">online casino slots</a>
<a href=" http://new.jerusalem.edu/de/roulette.html ">roulette</a>
<a href=" http://new.jerusalem.edu/de/online_casino_roulette.html ">online casino roulette</a>
<a href=" http://new.jerusalem.edu/de/blackjack.html ">blackjack</a>
<a href=" http://new.jerusalem.edu/de/online_casino_blackjack.html ">online casino blackjack</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/en/levitra_Generic_Cialis.html ">levitra Generic Cialis</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/en/cialis_Free_Sample.html ">cialis Free Sample</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/en/cialis_Pharmacy.html ">cialis Pharmacy</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/en/cialis_Compare_Levitra_Viagra.html ">cialis Compare Levitra Viagra</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/en/cialis_Drug_Impotence.html ">cialis Drug Impotence</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/de/cheap_Cialis_Generic.html ">cheap Cialis Generic</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/de/canada_Cialis.html ">canada Cialis</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/de/cialis_Sample.html ">cialis Sample</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/de/cialis_Cheap.html ">cialis Cheap</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/de/cialis_Com.html ">cialis Com</a>
[URL=http://prescription-adipex.medications10.info/faith-dental-service.htm#">http://prescription-adipex.medications10.info/faith-dental-service.htm#] faith dental service [/URL]
http://prescription-adipex.medications10.info/faith-dental-service.htm faith dental service
[URL=http://hand-rehab.medications10.info/dental-micro-mirrors.htm#">http://hand-rehab.medications10.info/dental-micro-mirrors.htm#] dental micro mirrors [/URL]
http://hand-rehab.medications10.info/dental-micro-mirrors.htm dental micro mirrors
[URL=http://prescription-adipex.medications10.info/classes-of-steroids.htm#">http://prescription-adipex.medications10.info/classes-of-steroids.htm#] classes of steroids [/URL]
http://prescription-adipex.medications10.info/classes-of-steroids.htm classes of steroids
[URL=http://healthpartners-dental.medications10.info/dental-digital-radiography.htm#">http://healthpartners-dental.medications10.info/dental-digital-radiography.htm#] dental digital radiography [/URL]
http://healthpartners-dental.medications10.info/dental-digital-radiography.htm dental digital radiography
[URL=http://tramadol-800count.medications10.info/what-is-no-bese-pill.htm#">http://tramadol-800count.medications10.info/what-is-no-bese-pill.htm#] what is no bese pill [/URL]
http://tramadol-800count.medications10.info/what-is-no-bese-pill.htm what is no bese pill
ghhhdggdg
dgdgdgdg
[URL=http://www.websxite.org/doppia] doppia [/URL] <a href='http://www.websxite.org/doppia'> doppia </a> [URL=http://www.websxite.org/disdetta] disdetta [/URL] <a href='http://www.websxite.org/disdetta'> disdetta </a> [URL=http://www.websxite.org/diretta] diretta [/URL] <a href='http://www.websxite.org/diretta'> diretta </a> [URL=http://www.websxite.org/pena] pena [/URL] <a href='http://www.websxite.org/pena'> pena </a> [URL=http://www.websxite.org/leone] leone [/URL] <a href='http://www.websxite.org/leone'> leone </a> [URL=http://www.websxite.org/istat] istat [/URL] <a href='http://www.websxite.org/istat'> istat </a> [URL=http://www.websxite.org/connection] connection [/URL] <a href='http://www.websxite.org/connection'> connection </a> [URL=http://www.websxite.org/americana] americana [/URL] <a href='http://www.websxite.org/americana'> americana </a> [URL=http://www.websxite.org/flight] flight [/URL] <a href='http://www.websxite.org/flight'> flight </a> [URL=http://www.websxite.org/rovigo] rovigo [/URL] <a href='http://www.websxite.org/rovigo'> rovigo </a> [URL=http://www.websxite.org/alessia-marcuzzi] alessia marcuzzi [/URL] <a href='http://www.websxite.org/alessia-marcuzzi'> alessia marcuzzi </a> [URL=http://www.websxite.org/dubai] dubai [/URL] <a href='http://www.websxite.org/dubai'> dubai </a> [URL=http://www.websxite.org/security] security [/URL] <a href='http://www.websxite.org/security'> security </a> [URL=http://www.websxite.org/long] long [/URL] <a href='http://www.websxite.org/long'> long </a> [URL=http://www.websxite.org/tecnico] tecnico [/URL] <a href='http://www.websxite.org/tecnico'> tecnico </a> [URL=http://www.websxite.org/giorgia-palmas] giorgia palmas [/URL] <a href='http://www.websxite.org/giorgia-palmas'> giorgia palmas </a> [URL=http://www.websxite.org/testi-canzoni] testi canzoni [/URL] <a href='http://www.websxite.org/testi-canzoni'> testi canzoni </a> [URL=http://www.websxite.org/rolling] rolling [/URL] <a href='http://www.websxite.org/rolling'> rolling </a> [URL=http://www.websxite.org/ventura] ventura [/URL] <a href='http://www.websxite.org/ventura'> ventura </a> [URL=http://www.websxite.org/orlando] orlando [/URL] <a href='http://www.websxite.org/orlando'> orlando </a> [URL=http://www.websxite.org/double] double [/URL] <a href='http://www.websxite.org/double'> double </a> [URL=http://www.websxite.org/ospedali] ospedali [/URL] <a href='http://www.websxite.org/ospedali'> ospedali </a> [URL=http://www.websxite.org/gazzetta] gazzetta [/URL] <a href='http://www.websxite.org/gazzetta'> gazzetta </a> [URL=http://www.websxite.org/premium] premium [/URL] <a href='http://www.websxite.org/premium'> premium </a> [URL=http://www.websxite.org/palau] palau [/URL] <a href='http://www.websxite.org/palau'> palau </a>
Hi Sam! Photos i send on e-mail.
Green,Hi Sam! Photos i send on e-mail.
Green
Can you provide some solution to the above problem (Fordec checkout before editing a document) in Share Point Portal 2003.
I have the same question as David. I am trying to use the AutoComplete from the ajaxtoolkit to call an external web service. That was not working (access denied errors. - by the way if you have any comments on how to call a web service on a different server - that would be helpful.) But for the pageMethod, how can you set the EnablePageMethod = true?
I want to try to accomplish this idea in SharePoint 2007, but in a different way. I have an SPWeb object and need to troll through all the SPFiles and SPDocumentLibrary's in the web to find active and erroneous web parts. This is done on site creation from a custom site template (.stp file).
Without using obsolete/depricated methods, is this possible?
http://www.goamoto.ru/001.php <a href="http://www.goamoto.ru/001.php">001</a>
http://www.goamoto.ru/002.php <a href="http://www.goamoto.ru/002.php">002</a>
http://www.goamoto.ru/003.php <a href="http://www.goamoto.ru/003.php">003</a>
http://www.goamoto.ru/004.php <a href="http://www.goamoto.ru/004.php">004</a>
http://www.goamoto.ru/005.php <a href="http://www.goamoto.ru/005.php">005</a>
http://www.goamoto.ru/006.php <a href="http://www.goamoto.ru/006.php">006</a>
http://www.goamoto.ru/007.php <a href="http://www.goamoto.ru/007.php">007</a>
http://www.goamoto.ru/008.php <a href="http://www.goamoto.ru/008.php">008</a>
http://www.goamoto.ru/009.php <a href="http://www.goamoto.ru/009.php">009</a>
http://www.goamoto.ru/010.php <a href="http://www.goamoto.ru/010.php">010</a>
http://www.goamoto.ru/011.php <a href="http://www.goamoto.ru/011.php">011</a>
http://www.goamoto.ru/012.php <a href="http://www.goamoto.ru/012.php">012</a>
http://www.goamoto.ru/013.php <a href="http://www.goamoto.ru/013.php">013</a>
http://www.goamoto.ru/014.php <a href="http://www.goamoto.ru/014.php">014</a>
http://www.goamoto.ru/015.php <a href="http://www.goamoto.ru/015.php">015</a>
http://www.goamoto.ru/016.php <a href="http://www.goamoto.ru/016.php">016</a>
http://www.goamoto.ru/017.php <a href="http://www.goamoto.ru/017.php">017</a>
http://www.goamoto.ru/018.php <a href="http://www.goamoto.ru/018.php">018</a>
http://www.goamoto.ru/019.php <a href="http://www.goamoto.ru/019.php">019</a>
http://www.goamoto.ru/020.php <a href="http://www.goamoto.ru/020.php">020</a>
http://www.goamoto.ru/021.php <a href="http://www.goamoto.ru/021.php">021</a>
http://www.goamoto.ru/022.php <a href="http://www.goamoto.ru/022.php">022</a>
http://www.goamoto.ru/023.php <a href="http://www.goamoto.ru/023.php">023</a>
http://www.goamoto.ru/024.php <a href="http://www.goamoto.ru/024.php">024</a>
http://www.goamoto.ru/025.php <a href="http://www.goamoto.ru/025.php">025</a>
http://www.goamoto.ru/026.php <a href="http://www.goamoto.ru/026.php">026</a>
http://www.goamoto.ru/027.php <a href="http://www.goamoto.ru/027.php">027</a>
http://www.goamoto.ru/028.php <a href="http://www.goamoto.ru/028.php">028</a>
http://www.goamoto.ru/029.php <a href="http://www.goamoto.ru/029.php">029</a>
http://www.goamoto.ru/030.php <a href="http://www.goamoto.ru/030.php">030</a>
http://www.goamoto.ru/031.php <a href="http://www.goamoto.ru/031.php">031</a>
http://www.goamoto.ru/032.php <a href="http://www.goamoto.ru/032.php">032</a>
http://www.goamoto.ru/033.php <a href="http://www.goamoto.ru/033.php">033</a>
http://www.goamoto.ru/034.php <a href="http://www.goamoto.ru/034.php">034</a>
http://www.goamoto.ru/035.php <a href="http://www.goamoto.ru/035.php">035</a>
http://www.goamoto.ru/036.php <a href="http://www.goamoto.ru/036.php">036</a>
http://www.goamoto.ru/037.php <a href="http://www.goamoto.ru/037.php">037</a>
http://www.goamoto.ru/038.php <a href="http://www.goamoto.ru/038.php">038</a>
http://www.goamoto.ru/039.php <a href="http://www.goamoto.ru/039.php">039</a>
http://www.goamoto.ru/040.php <a href="http://www.goamoto.ru/040.php">040</a>
http://www.goamoto.ru/041.php <a href="http://www.goamoto.ru/041.php">041</a>
http://www.goamoto.ru/042.php <a href="http://www.goamoto.ru/042.php">042</a>
http://www.goamoto.ru/043.php <a href="http://www.goamoto.ru/043.php">043</a>
http://www.goamoto.ru/044.php <a href="http://www.goamoto.ru/044.php">044</a>
http://www.goamoto.ru/045.php <a href="http://www.goamoto.ru/045.php">045</a>
[URL=http://www.peinox50.info/classe] classe [/URL] <a href='http://www.peinox50.info/classe'> classe </a> [URL=http://www.peinox50.info/mysql] mysql [/URL] <a href='http://www.peinox50.info/mysql'> mysql </a> [URL=http://www.peinox50.info/andreas] andreas [/URL] <a href='http://www.peinox50.info/andreas'> andreas </a> [URL=http://www.peinox50.info/circolo] circolo [/URL] <a href='http://www.peinox50.info/circolo'> circolo </a> [URL=http://www.peinox50.info/boxes] boxes [/URL] <a href='http://www.peinox50.info/boxes'> boxes </a> [URL=http://www.peinox50.info/picture] picture [/URL] <a href='http://www.peinox50.info/picture'> picture </a> [URL=http://www.peinox50.info/certificazione] certificazione [/URL] <a href='http://www.peinox50.info/certificazione'> certificazione </a> [URL=http://www.peinox50.info/henry] henry [/URL] <a href='http://www.peinox50.info/henry'> henry </a> [URL=http://www.peinox50.info/toni] toni [/URL] <a href='http://www.peinox50.info/toni'> toni </a> [URL=http://www.peinox50.info/el-greco] el greco [/URL] <a href='http://www.peinox50.info/el-greco'> el greco </a> [URL=http://www.peinox50.info/installazione] installazione [/URL] <a href='http://www.peinox50.info/installazione'> installazione </a> [URL=http://www.peinox50.info/surf] surf [/URL] <a href='http://www.peinox50.info/surf'> surf </a> [URL=http://www.peinox50.info/visit] visit [/URL] <a href='http://www.peinox50.info/visit'> visit </a> [URL=http://www.peinox50.info/mercati] mercati [/URL] <a href='http://www.peinox50.info/mercati'> mercati </a> [URL=http://www.peinox50.info/curva] curva [/URL] <a href='http://www.peinox50.info/curva'> curva </a> [URL=http://www.peinox50.info/little] little [/URL] <a href='http://www.peinox50.info/little'> little </a> [URL=http://www.peinox50.info/japan] japan [/URL] <a href='http://www.peinox50.info/japan'> japan </a> [URL=http://www.peinox50.info/porte] porte [/URL] <a href='http://www.peinox50.info/porte'> porte </a> [URL=http://www.peinox50.info/ventaglio] ventaglio [/URL] <a href='http://www.peinox50.info/ventaglio'> ventaglio </a> [URL=http://www.peinox50.info/trust] trust [/URL] <a href='http://www.peinox50.info/trust'> trust </a> [URL=http://www.peinox50.info/dott] dott [/URL] <a href='http://www.peinox50.info/dott'> dott </a> [URL=http://www.peinox50.info/arcade] arcade [/URL] <a href='http://www.peinox50.info/arcade'> arcade </a> [URL=http://www.peinox50.info/tensione] tensione [/URL] <a href='http://www.peinox50.info/tensione'> tensione </a> [URL=http://www.peinox50.info/fumo] fumo [/URL] <a href='http://www.peinox50.info/fumo'> fumo </a> [URL=http://www.peinox50.info/rossi] rossi [/URL] <a href='http://www.peinox50.info/rossi'> rossi </a>
[URL=http://www.peinox50.info/scolastici] scolastici [/URL] <a href='http://www.peinox50.info/scolastici'> scolastici </a> [URL=http://www.peinox50.info/anagrafe] anagrafe [/URL] <a href='http://www.peinox50.info/anagrafe'> anagrafe </a> [URL=http://www.peinox50.info/divieto] divieto [/URL] <a href='http://www.peinox50.info/divieto'> divieto </a> [URL=http://www.peinox50.info/spagnola] spagnola [/URL] <a href='http://www.peinox50.info/spagnola'> spagnola </a> [URL=http://www.peinox50.info/grasso] grasso [/URL] <a href='http://www.peinox50.info/grasso'> grasso </a> [URL=http://www.peinox50.info/maggio] maggio [/URL] <a href='http://www.peinox50.info/maggio'> maggio </a> [URL=http://www.peinox50.info/leonardo] leonardo [/URL] <a href='http://www.peinox50.info/leonardo'> leonardo </a> [URL=http://www.peinox50.info/photoshop] photoshop [/URL] <a href='http://www.peinox50.info/photoshop'> photoshop </a> [URL=http://www.peinox50.info/spazio] spazio [/URL] <a href='http://www.peinox50.info/spazio'> spazio </a> [URL=http://www.peinox50.info/sotto] sotto [/URL] <a href='http://www.peinox50.info/sotto'> sotto </a> [URL=http://www.peinox50.info/universale] universale [/URL] <a href='http://www.peinox50.info/universale'> universale </a> [URL=http://www.peinox50.info/premio] premio [/URL] <a href='http://www.peinox50.info/premio'> premio </a> [URL=http://www.peinox50.info/gabriella] gabriella [/URL] <a href='http://www.peinox50.info/gabriella'> gabriella </a> [URL=http://www.peinox50.info/breakfast] breakfast [/URL] <a href='http://www.peinox50.info/breakfast'> breakfast </a> [URL=http://www.peinox50.info/venere] venere [/URL] <a href='http://www.peinox50.info/venere'> venere </a> [URL=http://www.peinox50.info/ristorazione] ristorazione [/URL] <a href='http://www.peinox50.info/ristorazione'> ristorazione </a> [URL=http://www.peinox50.info/telefonini] telefonini [/URL] <a href='http://www.peinox50.info/telefonini'> telefonini </a> [URL=http://www.peinox50.info/ambientali] ambientali [/URL] <a href='http://www.peinox50.info/ambientali'> ambientali </a> [URL=http://www.peinox50.info/diffusione] diffusione [/URL] <a href='http://www.peinox50.info/diffusione'> diffusione </a> [URL=http://www.peinox50.info/maratona] maratona [/URL] <a href='http://www.peinox50.info/maratona'> maratona </a> [URL=http://www.peinox50.info/verifica] verifica [/URL] <a href='http://www.peinox50.info/verifica'> verifica </a> [URL=http://www.peinox50.info/chiave] chiave [/URL] <a href='http://www.peinox50.info/chiave'> chiave </a> [URL=http://www.peinox50.info/collegamento] collegamento [/URL] <a href='http://www.peinox50.info/collegamento'> collegamento </a> [URL=http://www.peinox50.info/cartella] cartella [/URL] <a href='http://www.peinox50.info/cartella'> cartella </a> [URL=http://www.peinox50.info/geografica] geografica [/URL] <a href='http://www.peinox50.info/geografica'> geografica </a>
Hi there, i have a problem a have to consume a webservice located on a webserver which uses SSL and HTTPS and I do not what to do, please could you help me!
HI jan,
Does pdf stores a thumbnail view of the document and if does can
the ifilter get it.
[URL=http://www.1sesso.info/paese] paese [/URL] <a href='http://www.1sesso.info/paese'> paese </a> [URL=http://www.1sesso.info/european] european [/URL] <a href='http://www.1sesso.info/european'> european </a> [URL=http://www.1sesso.info/amstrad] amstrad [/URL] <a href='http://www.1sesso.info/amstrad'> amstrad </a> [URL=http://www.1sesso.info/economica] economica [/URL] <a href='http://www.1sesso.info/economica'> economica </a> [URL=http://www.1sesso.info/pordenone] pordenone [/URL] <a href='http://www.1sesso.info/pordenone'> pordenone </a> [URL=http://www.1sesso.info/savoia] savoia [/URL] <a href='http://www.1sesso.info/savoia'> savoia </a> [URL=http://www.1sesso.info/inox] inox [/URL] <a href='http://www.1sesso.info/inox'> inox </a> [URL=http://www.1sesso.info/croce] croce [/URL] <a href='http://www.1sesso.info/croce'> croce </a> [URL=http://www.1sesso.info/aspire] aspire [/URL] <a href='http://www.1sesso.info/aspire'> aspire </a> [URL=http://www.1sesso.info/quello] quello [/URL] <a href='http://www.1sesso.info/quello'> quello </a> [URL=http://www.1sesso.info/la-scala] la scala [/URL] <a href='http://www.1sesso.info/la-scala'> la scala </a> [URL=http://www.1sesso.info/comunale] comunale [/URL] <a href='http://www.1sesso.info/comunale'> comunale </a> [URL=http://www.1sesso.info/barcellona] barcellona [/URL] <a href='http://www.1sesso.info/barcellona'> barcellona </a> [URL=http://www.1sesso.info/rosario] rosario [/URL] <a href='http://www.1sesso.info/rosario'> rosario </a> [URL=http://www.1sesso.info/edilizia] edilizia [/URL] <a href='http://www.1sesso.info/edilizia'> edilizia </a> [URL=http://www.1sesso.info/andiamo] andiamo [/URL] <a href='http://www.1sesso.info/andiamo'> andiamo </a> [URL=http://www.1sesso.info/madagascar] madagascar [/URL] <a href='http://www.1sesso.info/madagascar'> madagascar </a> [URL=http://www.1sesso.info/colonne] colonne [/URL] <a href='http://www.1sesso.info/colonne'> colonne </a> [URL=http://www.1sesso.info/ingegneria] ingegneria [/URL] <a href='http://www.1sesso.info/ingegneria'> ingegneria </a> [URL=http://www.1sesso.info/doccia] doccia [/URL] <a href='http://www.1sesso.info/doccia'> doccia </a>
<a href= http://www.angelfire.com/hiphop/miqihi >a little rap site myspace.com</a> <a href= http://www.angelfire.com/hiphop/fuqygy >a plane is born</a> <a href= http://www.angelfire.com/poetry/zarypo >a dictatorship country</a> <a href= http://www.angelfire.com/funky/lisyfo >a sex date</a> <a href= http://www.angelfire.com/blog/qyfaku >a northern light by jennifer donnelly</a>
<a href= http://www.angelfire.com/punk/hogopo >aaa hertz discount</a> <a href= http://www.angelfire.com/droid/vajygu >a pharaohs life</a> <a href= http://www.angelfire.com/blog/tyvyxa >a baltimore love thing lyrics 50</a> <a href= http://www.angelfire.com/indie/miroda >a cake decorator</a> <a href= http://www.angelfire.com/punk/rakibo >aaa office locations california</a>
<a href= http://www.angelfire.com/blog/disaqo >a historial</a> <a href= http://www.angelfire.com/funky/qibobi >aaeropostale</a> <a href= http://www.angelfire.com/planet/lyhoge >a brief history of time chapter summary</a> <a href= http://www.angelfire.com/planet/fihyxo >a beautiful thing lyrics</a> <a href= http://www.angelfire.com/funky/hiwoso >a course in miracles online</a>
<a href= http://www.angelfire.com/indie/xyjiha >a perfect circle cd covers</a> <a href= http://www.angelfire.com/goth/pytozo >aarati songs</a> <a href= http://www.angelfire.com/blog/nycari >a lil bit 50</a> <a href= http://www.angelfire.com/punk/byxohi >a halloween bat</a> <a href= http://www.angelfire.com/blog/sicily >aaliyah rock the boat music video</a>
<a href= http://www.angelfire.com/crazy/hyrebi >aa theory tests</a> <a href= http://www.angelfire.com/poetry/qyvaca >a.h ferguson poetry</a> <a href= http://www.angelfire.com/blog/zuhoto >a tooth cavity</a> <a href= http://www.angelfire.com/hiphop/pohixu >aaatravelagency.com</a> <a href= http://www.angelfire.com/droid/wekyne >a.a big book</a>
<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>
http://my.ncat.edu/announcements/retirements/offers/de/bonus-casino-online.html
http://my.ncat.edu/announcements/retirements/offers/de/casino-online-download.html
http://my.ncat.edu/announcements/retirements/offers/de/casino-bonus.html
http://my.ncat.edu/announcements/retirements/offers/de/no-deposit-casinos.html
http://my.ncat.edu/announcements/retirements/offers/de/rtg-casino-bonus.html
http://my.ncat.edu/announcements/retirements/offers/de/bonus-casino-match-online.html
http://my.ncat.edu/announcements/retirements/offers/de/casino-sign-up-bonus.html
I did the following to deploy the alert web part and i got the error "File Not Found" Unexpected error.
1 copy dll to -/wss/-/bin and also in GAC
2 create the safe control for the dll.
3 create a folder called temp in c:\. The folder contains the strong name
Is there anything i left behind?
Please help
<a href= http://www.anderson.edu/studentblogs/wp-content/uploads/hydrocodone/index.html >hydrocodone</a> <a href= http://www.cdsp.edu/subareas/soma/index.html >soma</a> <a href= http://www.cdsp.edu/subareas/tramadol/index.html >tramadol</a> <a href= http://www.cdsp.edu/subareas/ultram/index.html >ultram</a> <a href= http://www.cdsp.edu/subareas/viagra/index.html >viagra</a>
<a href= http://www.wccnet.edu/aboutwcc/publications/accupril/index.html >accupril</a> <a href= http://www.wccnet.edu/aboutwcc/publications/bontril/index.html >bontril</a> <a href= http://www.anderson.edu/studentblogs/wp-content/uploads/soma/index.html >soma</a> <a href= http://www.anderson.edu/studentblogs/wp-content/uploads/tramadol/index.html >tramadol</a> <a href= http://www.anderson.edu/studentblogs/wp-content/uploads/ultram/index.html >ultram</a>
<a href= http://www.anderson.edu/studentblogs/wp-content/uploads/viagra/index.html >viagra</a> <a href= http://www.anderson.edu/studentblogs/wp-content/uploads/valium/index.html >valium</a> <a href= http://www.anderson.edu/studentblogs/wp-content/uploads/accupril/index.html >accupril</a> <a href= http://www.anderson.edu/studentblogs/wp-content/uploads/bontril/index.html >bontril</a> <a href= http://www.anderson.edu/studentblogs/wp-content/uploads/xanax/index.html >xanax</a>
[URL=http://www.sessoocon.info/foto-hard] foto hard [/URL] <a href='http://www.sessoocon.info/foto-hard'> foto hard </a> [URL=http://www.sessoocon.info/naturale] naturale [/URL] <a href='http://www.sessoocon.info/naturale'> naturale </a> [URL=http://www.sessoocon.info/1993] 1993 [/URL] <a href='http://www.sessoocon.info/1993'> 1993 </a> [URL=http://www.sessoocon.info/resort] resort [/URL] <a href='http://www.sessoocon.info/resort'> resort </a> [URL=http://www.sessoocon.info/chateau] chateau [/URL] <a href='http://www.sessoocon.info/chateau'> chateau </a> [URL=http://www.sessoocon.info/personale] personale [/URL] <a href='http://www.sessoocon.info/personale'> personale </a> [URL=http://www.sessoocon.info/stampa] stampa [/URL] <a href='http://www.sessoocon.info/stampa'> stampa </a> [URL=http://www.sessoocon.info/mass] mass [/URL] <a href='http://www.sessoocon.info/mass'> mass </a> [URL=http://www.sessoocon.info/telefonino] telefonino [/URL] <a href='http://www.sessoocon.info/telefonino'> telefonino </a> [URL=http://www.sessoocon.info/2000] 2000 [/URL] <a href='http://www.sessoocon.info/2000'> 2000 </a> [URL=http://www.sessoocon.info/tale] tale [/URL] <a href='http://www.sessoocon.info/tale'> tale </a> [URL=http://www.sessoocon.info/cavallo] cavallo [/URL] <a href='http://www.sessoocon.info/cavallo'> cavallo </a> [URL=http://www.sessoocon.info/piatti] piatti [/URL] <a href='http://www.sessoocon.info/piatti'> piatti </a> [URL=http://www.sessoocon.info/school] school [/URL] <a href='http://www.sessoocon.info/school'> school </a> [URL=http://www.sessoocon.info/ragusa] ragusa [/URL] <a href='http://www.sessoocon.info/ragusa'> ragusa </a> [URL=http://www.sessoocon.info/secret] secret [/URL] <a href='http://www.sessoocon.info/secret'> secret </a> [URL=http://www.sessoocon.info/fotocamera] fotocamera [/URL] <a href='http://www.sessoocon.info/fotocamera'> fotocamera </a> [URL=http://www.sessoocon.info/loco] loco [/URL] <a href='http://www.sessoocon.info/loco'> loco </a> [URL=http://www.sessoocon.info/traduttori] traduttori [/URL] <a href='http://www.sessoocon.info/traduttori'> traduttori </a> [URL=http://www.sessoocon.info/costruzione] costruzione [/URL] <a href='http://www.sessoocon.info/costruzione'> costruzione </a> [URL=http://www.sessoocon.info/giocare] giocare [/URL] <a href='http://www.sessoocon.info/giocare'> giocare </a> [URL=http://www.sessoocon.info/market] market [/URL] <a href='http://www.sessoocon.info/market'> market </a> [URL=http://www.sessoocon.info/piccola] piccola [/URL] <a href='http://www.sessoocon.info/piccola'> piccola </a> [URL=http://www.sessoocon.info/toshiba] toshiba [/URL] <a href='http://www.sessoocon.info/toshiba'> toshiba </a> [URL=http://www.sessoocon.info/delta] delta [/URL] <a href='http://www.sessoocon.info/delta'> delta </a>
Vitamins to support your health, cheap and testy, only best prices: vitamin -e -c -k here:
<a href= http://vitamin-descr.hit.bg/vitamin.html >vitamin</a> [url=http://vitamin-descr.hit.bg/vitamin.html]vitamin[/url] <a href= http://vitamin-descr.hit.bg/vitamin-e.html >vitamin e</a> [url=http://vitamin-descr.hit.bg/vitamin-e.html]vitamin e[/url] <a href= http://vitamin-descr.hit.bg/vitamin-k.html >vitamin k</a> [url=http://vitamin-descr.hit.bg/vitamin-k.html]vitamin k[/url] <a href= http://vitamin-descr.hit.bg/vitamin-c.html >vitamin c</a> [url=http://vitamin-descr.hit.bg/vitamin-c.html]vitamin c[/url]
,Vitamins to support your health, cheap and testy, only best prices: vitamin -e -c -k here:
Congratulations. Btw, you save me so much time in overriding the WebPartRender as well as CreateChildControls. Your SmartPart ROCKS. More power to you.
<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>
<a href= http://www.angelfire.com/planet/nyjosa >a joint stock</a> <a href= http://www.angelfire.com/indie/sicyji >a nice house</a> <a href= http://www.angelfire.com/poetry/qynoxa >a href http hclient.chat.yahoo.c</a> <a href= http://www.angelfire.com/crazy/wohiji >a5 face north</a> <a href= http://www.angelfire.com/crazy/batyki >aafif</a>
<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>
<a href= http://www.angelfire.com/indie/budewi >a printable metric system chart</a> <a href= http://www.angelfire.com/hiphop/suwawo >a1 limousine princeton nj</a> <a href= http://www.angelfire.com/droid/xoraza >aaron hamill man show</a> <a href= http://www.angelfire.com/punk/sycimy >a little too late</a> <a href= http://www.angelfire.com/punk/nivodo >a href http hclient.chat.yahoo.c</a>
<a href= http://www.angelfire.com/crazy/fuzive >a quote from albert einstein</a> <a href= http://www.angelfire.com/hiphop/kidujo >a5956a</a> <a href= http://www.angelfire.com/goth/tarevy >a mythical woman known for her intelligence</a> <a href= http://www.angelfire.com/blog/xihufe >aarowheads</a> <a href= http://www.angelfire.com/indie/hocegy >a caged bird sings</a>
YO yo people, look nasty models here:
<a href= http://***-on-cam-386f1.camerascams.info/ >*** on cam</a> [url=http://***-on-cam-386f1.camerascams.info/]*** on cam[/url] <a href= http://***-on-web-cam-386f1.girlcamsworld.info/ >*** on web cam</a> [url=http://***-on-web-cam-386f1.girlcamsworld.info/]*** on web cam[/url] <a href= http://***-web-cam-386f1.spycamssite.info/ >*** web cam</a> [url=http://***-web-cam-386f1.spycamssite.info/]*** web cam[/url] <a href= http://real-cam-girls-386f1.hiddenlimocams.info/ >real cam girls</a> [url=http://real-cam-girls-386f1.hiddenlimocams.info/]real cam girls[/url] <a href= http://real-sex-cams-386f1.camerasera.info/ >real sex cams</a> [url=http://real-sex-cams-386f1.camerasera.info/]real sex cams[/url]
,YO yo people, look nasty models here:
<a href= http://www.angelfire.com/crazy/sumyja >a4 avant body kits</a> <a href= http://www.angelfire.com/goth/bizoqy >a moment in the life of lil john</a> <a href= http://www.angelfire.com/blog/lekehe >a1online</a> <a href= http://www.angelfire.com/funky/cymyja >a baby seal walks into a club...</a> <a href= http://www.angelfire.com/blog/pikohy >a southern season nc</a>
[URL=http://www.creaww.info/comma] comma [/URL] <a href='http://www.creaww.info/comma'> comma </a> [URL=http://www.creaww.info/ultra] ultra [/URL] <a href='http://www.creaww.info/ultra'> ultra </a> [URL=http://www.creaww.info/sweet] sweet [/URL] <a href='http://www.creaww.info/sweet'> sweet </a> [URL=http://www.creaww.info/oroscopo-gratis] oroscopo gratis [/URL] <a href='http://www.creaww.info/oroscopo-gratis'> oroscopo gratis </a> [URL=http://www.creaww.info/gothic] gothic [/URL] <a href='http://www.creaww.info/gothic'> gothic </a> [URL=http://www.creaww.info/networks] networks [/URL] <a href='http://www.creaww.info/networks'> networks </a> [URL=http://www.creaww.info/internazionale] internazionale [/URL] <a href='http://www.creaww.info/internazionale'> internazionale </a> [URL=http://www.creaww.info/riva] riva [/URL] <a href='http://www.creaww.info/riva'> riva </a> [URL=http://www.creaww.info/gonna] gonna [/URL] <a href='http://www.creaww.info/gonna'> gonna </a> [URL=http://www.creaww.info/ragazzi] ragazzi [/URL] <a href='http://www.creaww.info/ragazzi'> ragazzi </a> [URL=http://www.creaww.info/playa] playa [/URL] <a href='http://www.creaww.info/playa'> playa </a> [URL=http://www.creaww.info/situazione] situazione [/URL] <a href='http://www.creaww.info/situazione'> situazione </a> [URL=http://www.creaww.info/big-***] big *** [/URL] <a href='http://www.creaww.info/big-***'> big *** </a> [URL=http://www.creaww.info/elenco] elenco [/URL] <a href='http://www.creaww.info/elenco'> elenco </a> [URL=http://www.creaww.info/vita] vita [/URL] <a href='http://www.creaww.info/vita'> vita </a> [URL=http://www.creaww.info/child] child [/URL] <a href='http://www.creaww.info/child'> child </a> [URL=http://www.creaww.info/italia-2006] italia 2006 [/URL] <a href='http://www.creaww.info/italia-2006'> italia 2006 </a> [URL=http://www.creaww.info/vuol] vuol [/URL] <a href='http://www.creaww.info/vuol'> vuol </a> [URL=http://www.creaww.info/motorizzazione] motorizzazione [/URL] <a href='http://www.creaww.info/motorizzazione'> motorizzazione </a> [URL=http://www.creaww.info/riparazione] riparazione [/URL] <a href='http://www.creaww.info/riparazione'> riparazione </a> [URL=http://www.creaww.info/alessio] alessio [/URL] <a href='http://www.creaww.info/alessio'> alessio </a> [URL=http://www.creaww.info/ipaq] ipaq [/URL] <a href='http://www.creaww.info/ipaq'> ipaq </a> [URL=http://www.creaww.info/redazione] redazione [/URL] <a href='http://www.creaww.info/redazione'> redazione </a> [URL=http://www.creaww.info/siamese] siamese [/URL] <a href='http://www.creaww.info/siamese'> siamese </a> [URL=http://www.creaww.info/down] down [/URL] <a href='http://www.creaww.info/down'> down </a>
<a href= http://www.angelfire.com/blog/dudygo >a840 cable data samsung</a> <a href= http://www.angelfire.com/funky/gywepa >a660 phone samsung</a> <a href= http://www.angelfire.com/blog/bylyte >a murder of one counting crows</a> <a href= http://www.angelfire.com/crazy/pasete >a hotel in milan</a> <a href= http://www.angelfire.com/goth/botypy >a4 car review</a>
Why is it that the web part that I wrote to host a user control cannot recognize ~\UserControls\ unless I run page with smartpart on it first. Do you have code that sets the ~\UserControls\ directory somehow to be recognized by sharepoint ? I get this message,
Error: unable to load ~\UserControls\UCContestEntry.ascx
Details: Request failed.
but it does work if I use a page with smartpart on it before I use this page. Thanks!
<a href= http://www.angelfire.com/goth/dipyla >aa car insurance uk</a> <a href= http://www.angelfire.com/funky/dyxihy >a hard rain's a gonna fall lyrics</a> <a href= http://www.angelfire.com/planet/ravowe >a submarine in troubled waters</a> <a href= http://www.angelfire.com/crazy/cuqaqi >a135</a> <a href= http://www.angelfire.com/blog/qykoxi >a p service</a>
<a href= http://www.angelfire.com/droid/wuzesa >a smile like yours lyrics</a> <a href= http://www.angelfire.com/blog/paguvu >a intake manifold for a 96 ford mustang</a> <a href= http://www.angelfire.com/crazy/lajihi >a bout de souffle review</a> <a href= http://www.angelfire.com/crazy/wyvusu >a little to late lyrics</a> <a href= http://www.angelfire.com/crazy/josiwo >a grain of sand william blake</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/esg/cialis_Uprima_Viagra.html ">cialis Uprima Viagra</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/esg/compare_Viagra_To_Cialis.html ">compare Viagra To Cialis</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/esg/cialis_Levitra_Viagra_Vs_Vs.html ">cialis Levitra Viagra Vs Vs</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/esg/cialis_Forum.html ">cialis Forum</a>
<a href=" http://my.ncat.edu/announcements/retirements/offers/esg/cialis_Free_Trial.html ">cialis Free Trial</a>
http://www.goamoto.ru/091.php <a href="http://www.goamoto.ru/091.php">091</a>
http://www.goamoto.ru/092.php <a href="http://www.goamoto.ru/092.php">092</a>
http://www.goamoto.ru/093.php <a href="http://www.goamoto.ru/093.php">093</a>
http://www.goamoto.ru/094.php <a href="http://www.goamoto.ru/094.php">094</a>
http://www.goamoto.ru/095.php <a href="http://www.goamoto.ru/095.php">095</a>
http://www.goamoto.ru/096.php <a href="http://www.goamoto.ru/096.php">096</a>
http://www.goamoto.ru/097.php <a href="http://www.goamoto.ru/097.php">097</a>
http://www.goamoto.ru/098.php <a href="http://www.goamoto.ru/098.php">098</a>
http://www.goamoto.ru/099.php <a href="http://www.goamoto.ru/099.php">099</a>
http://www.goamoto.ru/100.php <a href="http://www.goamoto.ru/100.php">100</a>
http://www.goamoto.ru/101.php <a href="http://www.goamoto.ru/101.php">101</a>
http://www.goamoto.ru/102.php <a href="http://www.goamoto.ru/102.php">102</a>
http://www.goamoto.ru/103.php <a href="http://www.goamoto.ru/103.php">103</a>
http://www.goamoto.ru/104.php <a href="http://www.goamoto.ru/104.php">104</a>
http://www.goamoto.ru/105.php <a href="http://www.goamoto.ru/105.php">105</a>
http://www.goamoto.ru/106.php <a href="http://www.goamoto.ru/106.php">106</a>
http://www.goamoto.ru/107.php <a href="http://www.goamoto.ru/107.php">107</a>
http://www.goamoto.ru/108.php <a href="http://www.goamoto.ru/108.php">108</a>
http://www.goamoto.ru/109.php <a href="http://www.goamoto.ru/109.php">109</a>
http://www.goamoto.ru/110.php <a href="http://www.goamoto.ru/110.php">110</a>
http://www.goamoto.ru/111.php <a href="http://www.goamoto.ru/111.php">111</a>
http://www.goamoto.ru/112.php <a href="http://www.goamoto.ru/112.php">112</a>
http://www.goamoto.ru/113.php <a href="http://www.goamoto.ru/113.php">113</a>
http://www.goamoto.ru/114.php <a href="http://www.goamoto.ru/114.php">114</a>
http://www.goamoto.ru/115.php <a href="http://www.goamoto.ru/115.php">115</a>
http://www.goamoto.ru/116.php <a href="http://www.goamoto.ru/116.php">116</a>
http://www.goamoto.ru/117.php <a href="http://www.goamoto.ru/117.php">117</a>
http://www.goamoto.ru/118.php <a href="http://www.goamoto.ru/118.php">118</a>
http://www.goamoto.ru/119.php <a href="http://www.goamoto.ru/119.php">119</a>
http://www.goamoto.ru/120.php <a href="http://www.goamoto.ru/120.php">120</a>
http://www.goamoto.ru/121.php <a href="http://www.goamoto.ru/121.php">121</a>
http://www.goamoto.ru/122.php <a href="http://www.goamoto.ru/122.php">122</a>
http://www.goamoto.ru/123.php <a href="http://www.goamoto.ru/123.php">123</a>
http://www.goamoto.ru/124.php <a href="http://www.goamoto.ru/124.php">124</a>
http://www.goamoto.ru/125.php <a href="http://www.goamoto.ru/125.php">125</a>
http://www.goamoto.ru/126.php <a href="http://www.goamoto.ru/126.php">126</a>
http://www.goamoto.ru/127.php <a href="http://www.goamoto.ru/127.php">127</a>
http://www.goamoto.ru/128.php <a href="http://www.goamoto.ru/128.php">128</a>
http://www.goamoto.ru/129.php <a href="http://www.goamoto.ru/129.php">129</a>
http://www.goamoto.ru/130.php <a href="http://www.goamoto.ru/130.php">130</a>
http://www.goamoto.ru/131.php <a href="http://www.goamoto.ru/131.php">131</a>
http://www.goamoto.ru/132.php <a href="http://www.goamoto.ru/132.php">132</a>
http://www.goamoto.ru/133.php <a href="http://www.goamoto.ru/133.php">133</a>
http://www.goamoto.ru/134.php <a href="http://www.goamoto.ru/134.php">134</a>
http://www.goamoto.ru/135.php <a href="http://www.goamoto.ru/135.php">135</a>
http://www.goamoto.ru/136.php <a href="http://www.goamoto.ru/136.php">136</a>
http://www.goamoto.ru/137.php <a href="http://www.goamoto.ru/137.php">137</a>
<a href= http://www.angelfire.com/funky/cunimy >a broken wing karaoke</a> <a href= http://www.angelfire.com/funky/rydizu >a420</a> <a href= http://www.angelfire.com/indie/geziqa >a521 t90</a> <a href= http://www.angelfire.com/planet/zoxiqi >aaliyah</a> <a href= http://www.angelfire.com/poetry/zazoku >aaron copland hoedown mp3</a>
[URL=http://www.elewottronica.info/nick">http://www.elewottronica.info/nick] nick [/URL] <a href='http://www.elewottronica.info/nick">http://www.elewottronica.info/nick'> nick </a> [URL=http://www.elewottronica.info/fuga">http://www.elewottronica.info/fuga] fuga [/URL] <a href='http://www.elewottronica.info/fuga">http://www.elewottronica.info/fuga'> fuga </a> [URL=http://www.elewottronica.info/foto-di">http://www.elewottronica.info/foto-di] foto di [/URL] <a href='http://www.elewottronica.info/foto-di">http://www.elewottronica.info/foto-di'> foto di </a> [URL=http://www.elewottronica.info/ville">http://www.elewottronica.info/ville] ville [/URL] <a href='http://www.elewottronica.info/ville">http://www.elewottronica.info/ville'> ville </a> [URL=http://www.elewottronica.info/best-western">http://www.elewottronica.info/best-western] best western [/URL] <a href='http://www.elewottronica.info/best-western">http://www.elewottronica.info/best-western'> best western </a> [URL=http://www.elewottronica.info/ipercoop">http://www.elewottronica.info/ipercoop] ipercoop [/URL] <a href='http://www.elewottronica.info/ipercoop">http://www.elewottronica.info/ipercoop'> ipercoop </a> [URL=http://www.elewottronica.info/cambiare">http://www.elewottronica.info/cambiare] cambiare [/URL] <a href='http://www.elewottronica.info/cambiare">http://www.elewottronica.info/cambiare'> cambiare </a> [URL=http://www.elewottronica.info/connection">http://www.elewottronica.info/connection] connection [/URL] <a href='http://www.elewottronica.info/connection">http://www.elewottronica.info/connection'> connection </a> [URL=http://www.elewottronica.info/azioni">http://www.elewottronica.info/azioni] azioni [/URL] <a href='http://www.elewottronica.info/azioni">http://www.elewottronica.info/azioni'> azioni </a> [URL=http://www.elewottronica.info/game-pc">http://www.elewottronica.info/game-pc] game pc [/URL] <a href='http://www.elewottronica.info/game-pc">http://www.elewottronica.info/game-pc'> game pc </a> [URL=http://www.elewottronica.info/vienna">http://www.elewottronica.info/vienna] vienna [/URL] <a href='http://www.elewottronica.info/vienna">http://www.elewottronica.info/vienna'> vienna </a> [URL=http://www.elewottronica.info/singles">http://www.elewottronica.info/singles] singles [/URL] <a href='http://www.elewottronica.info/singles">http://www.elewottronica.info/singles'> singles </a> [URL=http://www.elewottronica.info/finestre">http://www.elewottronica.info/finestre] finestre [/URL] <a href='http://www.elewottronica.info/finestre">http://www.elewottronica.info/finestre'> finestre </a> [URL=http://www.elewottronica.info/sperma">http://www.elewottronica.info/sperma] sperma [/URL] <a href='http://www.elewottronica.info/sperma">http://www.elewottronica.info/sperma'> sperma </a> [URL=http://www.elewottronica.info/applicazione">http://www.elewottronica.info/applicazione] applicazione [/URL] <a href='http://www.elewottronica.info/applicazione">http://www.elewottronica.info/applicazione'> applicazione </a> [URL=http://www.elewottronica.info/filmografia">http://www.elewottronica.info/filmografia] filmografia [/URL] <a href='http://www.elewottronica.info/filmografia">http://www.elewottronica.info/filmografia'> filmografia </a> [URL=http://www.elewottronica.info/british">http://www.elewottronica.info/british] british [/URL] <a href='http://www.elewottronica.info/british">http://www.elewottronica.info/british'> british </a> [URL=http://www.elewottronica.info/***] *** [/URL] <a href='http://www.elewottronica.info/***'> *** </a> [URL=http://www.elewottronica.info/alone] alone [/URL] <a href='http://www.elewottronica.info/alone'> alone </a> [URL=http://www.elewottronica.info/programmi] programmi [/URL] <a href='http://www.elewottronica.info/programmi'> programmi </a> [URL=http://www.elewottronica.info/pornostar] pornostar [/URL] <a href='http://www.elewottronica.info/pornostar'> pornostar </a> [URL=http://www.elewottronica.info/zona] zona [/URL] <a href='http://www.elewottronica.info/zona'> zona </a> [URL=http://www.elewottronica.info/bello] bello [/URL] <a href='http://www.elewottronica.info/bello'> bello </a> [URL=http://www.elewottronica.info/innovazione] innovazione [/URL] <a href='http://www.elewottronica.info/innovazione'> innovazione </a> [URL=http://www.elewottronica.info/passo] passo [/URL] <a href='http://www.elewottronica.info/passo'> passo </a>