CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.web_parts_and_personalization Tags:
Item Type: NewsGroup Date Entered: 5/26/2007 7:13:25 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 5 Views: 15 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
6 Items, 1 Pages 1 |< << Go >> >|
tusharposhiya
Asp.Net User
Webparts5/26/2007 7:13:25 PM

0/0

hi... Friend's

i have some problem in webparts.

i don't know how to use webparts in web application.

plz reply and as possible as with one e.g. ok.

thx,

regarding,

Tushar Poshiya

mosessaur
Asp.Net User
Re: Webparts5/27/2007 12:36:41 PM

0/0

You can refere to this 3 Parts tutorial:

Part 1: Creating a Simple WebPart Page and use WebServer controls as WebParts
This is an introductory article about WebParts and ASP.NET 2.0. In this article I explained how to use WebPartManager and WebPartZone to create WebPart pages. Also I showed how to use built in ASP.NET Web Controls such as GridView as a WebPart

Part 2: Working with WebParts Page, WebPart Zones & WebParts
Here and after finishing WebPart Page, I started to how can we remove and add WebParts during run time, adding personalizable properties to your WebParts and modifying there values also at run time.

Part 3: WebParts Communication: How WebParts on a page communicate with each other
At this final partI l described how to make WebParts on a WebParts Page communicate with each other, showing how to use ConnectionsZone and how to enable WebParts to talk to each other by connecting them


Muhammad M. Mosa Soliman
Software Engineer
Blog | Live Space
sujanithas
Asp.Net User
Re: Webparts5/30/2007 4:58:58 AM

0/0

Hi,

 

 

How to host / publish webparts in website without using sharepoint?

When i try to implement the simple webpart page, Iam getting an error like this,

'The specified display mode is currently disabled on this page. Make sure personalization is enabled for the current user.
Parameter name: value
 '

Plz......give soln..

Rgrds,

Sujanitha 

 

 

 

 

 

mosessaur
Asp.Net User
Re: Webparts5/30/2007 7:01:21 AM

0/0

This problem occure with me once but it was because of security or personalization.
If you are using IIS to host your web application, kindly disable anonymous authentication on your virtual direcoty. I did that and it worked just find.
But if you are using Web Development Server attached with VS.NET 2005, just make sure that you configured your personalization correctly. below is a sample of overriding default settings:
<connectionStrings>
        <clear />
        <add name="LocalSqlServer" connectionString="data source=.;Integrated Security=SSPI;Database=aspnetdb" providerName="System.Data.SqlClient"/>
    </connectionStrings>
hope this would resoulve your issue


Muhammad M. Mosa Soliman
Software Engineer
Blog | Live Space
sujanithas
Asp.Net User
Re: Webparts5/30/2007 7:41:18 AM

0/0

Hi,

 Here is my webconfirg. Iam using VS.Net 2005.Simply using 2 webpart zones. Kindly help me...

<?xml version="1.0"?><!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<
configuration><appSettings/>

 

<connectionStrings>

<clear />

<remove name="LocalSqlServer" />

<add name="MyDBConnectionString" connectionString="Integrated Security=false;Persist Security Info=False;Initial Catalog=aspnetdb;Data Source=softserver;uid=sa;password= ;" providerName="System.Data.SqlClient" />

 

</
connectionStrings>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->

<customErrors mode="Off"/>

<compilation debug="true"/>

<membership>

<providers>

<remove name="AspNetSqlMembershipProvider" />

<add connectionStringName="MyDBConnectionString" enablePasswordRetrieval="false"

enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/"

requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5"

minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1"

passwordAttemptWindow="10" passwordStrengthRegularExpression=""

name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

</providers>

</membership>

 

<
roleManager enabled="true">

<providers>

<remove name="AspNetSqlRoleProvider" />

<add connectionStringName="MyDBConnectionString" applicationName="/"

name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

<remove name="AspNetWindowsTokenRoleProvider" />

</providers>

</roleManager>

<webParts>

<personalization defaultProvider="AspNetSqlPersonalizationProvider">

<providers>

<remove name="AspNetSqlPersonalizationProvider" />

<add name="AspNetSqlPersonalizationProvider"

type="System.Web.UI.WebControls.WebParts.SqlPersonalizationProvider"

connectionStringName="MyDBConnectionString"

applicationName="/" />

</providers>

<authorization>

<deny users="*" verbs="enterSharedScope" />

<allow users="?" verbs="modifyState" /></authorization>

 

 

</
personalization>

 

</
webParts>

 

<!--

The <authentication> section enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows" />

<!--

<authentication mode="Windows"/>

 

The <customErrors> section enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

 

-->

 

</
system.web>

</configuration>

 

 

In local it is working fine, but not in remote.

Looking forward....

Rgrds,

Sujanitha.

tusharposhiya
Asp.Net User
Re: Webparts6/2/2007 4:25:42 PM

0/0

hi.... Mosessaur

u r great.

thx, to reply my question.

Tushar Poshiya

6 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
ASP.Net 2.0 Web Parts in Action: Building Dynamic Web Portals Authors: Darren Neimke, Pages: 324, Published: 2007
Microsoft Sharepoint: Building Office 2007 Solutions in VB 2005 Authors: Scot P. Hillier, Pages: 519, Published: 2007
Professional ASP.NET 2.0 Authors: Bill Evjen, Scott Hanselman, Farhan Muhammad, Srinivasa Sivakumar, Devin Rader, Pages: 1253, Published: 2005
Microsoft SharePoint 2007 For Dummies Authors: Vanessa L. Williams, Pages: 438, Published: 2007
Microsoft Office SharePoint Server 2007: The Complete Reference Authors: David Matthew Sterling, David Sterling, Pages: 788, Published: 2007
Pro ASP.NET 2.0 in C# 2005 Authors: Matthew MacDonald, Mario Szpuszta, Pages: 1255, Published: 2005
SharePoint 2003 User's Guide Authors: Seth Bates, Tony Smith, Pages: 340, Published: 2005
Essential SharePoint 2007: A Practical Guide for Users, Administrators and Developers Authors: Jeff Webb, Pages: 428, Published: 2007
Pro ASP.NET 2.0 in VB 2005: From Professional to Expert Authors: Laurence Moroney, Matthew MacDonald, Pages: 1253, Published: 2006
Sharepoint 2007: The Definitive Guide Authors: James Pyles, Christopher M. Buechler, Bob Fox, Murray Gordon, Michael Lotter, Jason Medero, Pages: 794, Published: 2007

Web:
ASP.NET Web Parts Controls ASP.NET Web Parts controls are an integrated set of controls for creating Web sites that enable end users to modify the content, appearance, and behavior of ...
A Developer's Introduction to Web Parts Summary: Learn what Web Parts are and how to create them. Developers can build Web Parts as ASP.NET custom controls. Administrators can install Web Parts on ...
Webparts These downloadable Web Parts for use with Microsoft SharePoint™ Products and Technologies, are free of charge and are not supported by Microsoft unless ...
Web part - Wikipedia, the free encyclopedia A web part is an ASP.NET server control which is added to a Web Part Zone on Web Part Pages by users at run time. Web Parts are an integrated set of ...
Hammersley BMW Cycles, Lynchburg, VA, USA 1-800-293-4539 BMW and KTM motorcycles and parts. BMW and Mercedes automobiles and parts.
Creating a Simple WebPart Page and use WebServer controls as WebParts Portal web sites such as MY MSN and MSN Spaces, often organize their data into discrete units that support a degree of personalization.
Java Web Parts Java Web Parts is a project that provides small, reusable and largely independant Java components of interest to all web application developers. ...
ASP.NET Web Parts Quick Start
Sharepointserver.com - Webparts This Web Part is also based on the Document Status Web Part from ... If you have webparts you want to share .. send them to [email protected] ...
Free SharePoint Web Parts (3rd Party) - The Boiler Room - Mark ... Filed under: SharePoint Web Parts WebParts Tools Service Packs SDKs Guides HowTo ... Recopilatorio de Webparts » Innova Desarrollos informáticos said: ...

Videos:
Rules and Semantic Web - Part 1 This is the part 1 of a 3-part series that discuss on how we can use Semantic Web technologies for modeling Domain Model of Rule-based Business Appli...
Rules and Semantic Web - Part 2 This is the part 2 of a 3-part series that discuss on how we can use Semantic Web technologies for modeling Domain Model of Rule-based Business Appli...
Borås Djurpark for web part 2 Borås Djurpark for web part 2
Rules and Semantic Web - Part 3 This is the part 3 of a 3-part series that discuss on how we can use Semantic Web technologies for modeling Domain Model of Rule-based Business Appli...
Lecture -11 World Wide Web Part-I Lecture Series on Internet Technologies by Prof.I.Sengupta, Department of Computer Science & Engineering ,IIT Kharagpur. For more details on NPTEL vi...
A Tangled Web - Part 1 © 2007 Sucker Punch Productions
A Tangled Web - Part 2 © 2007 Sucker Punch Productions
FREE SharePoint Web Part for Google Search Please check out the video demonstration of the installation / deployment these FREE Google Search SharePoint (WSS 3.0 and MOSS 2007) web parts. Thes...
SharePoint: Creating Custom Enterprise Search Web Parts Related code examples: http://msdn2.microsoft.com/en-us/library/bb871647.aspx Learn how to create a custom Enterprise Search Web Part in Microsoft O...
spider's web: part 02 the honey trees [becky filip&co.] spider's web [live] the underground roseville, california, usa may 13th,2006




Search This Site:









 
All Times Are GMT