Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

PleaseHelpCP

@PleaseHelpCP
About
Posts
22
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • AutoCompleteExtender inside ModalPopupExtender
    P PleaseHelpCP

    Can we use AutoCompleteExtender inside ModalPopupExtender?

    ASP.NET question

  • Sharepoint DateTimeControl
    P PleaseHelpCP

    Thanks Mark Nischalke for your help :thumbsup:

    SharePoint sharepoint tutorial question

  • Sharepoint DateTimeControl
    P PleaseHelpCP

    Formatting date means formatting the date displayed in DateTimeControl. Will SelectedDate property work for this? if yes then how?

    SharePoint sharepoint tutorial question

  • Sharepoint DateTimeControl
    P PleaseHelpCP

    How to format date in sharepoint DateTimeControl?

    SharePoint sharepoint tutorial question

  • Programmatically Adding Marquee in sharepoint Web Part
    P PleaseHelpCP

    How?

    SharePoint sharepoint question

  • Programmatically Adding Marquee in sharepoint Web Part
    P PleaseHelpCP

    Is it possible to add marquee programmatically in sharepoint webpart? thanks

    SharePoint sharepoint question

  • Consuming WCF Service in Sharepoint Webpart
    P PleaseHelpCP

    I have created WCF Service and trying to consume it in a Sharepoint web part. It is giving following error while deploying web part : "could not find default endpoint element that references contract 'ServiceReference1.IService1' in the ServiceModel client configuration section" thanks

    SharePoint csharp sharepoint wcf help workspace

  • Teechart - change color of bar in bar chart based on values
    P PleaseHelpCP

    Dear All, I have a query in teechart. I have created a horizontal bar chart in C# using tee chart. Now i want to change the color of the bar depending on its value(e.g. green color for positive value & red for negative). any settings in the property? can anyone give solution on this? thnx

    C# csharp database question

  • referencing .js file in a web part
    P PleaseHelpCP

    I need a help on referencing .js file in a web part(Sharepoint 2010 & visual studio 2010). I have created javascript file as mentioned in following link http://msdn.microsoft.com/en-us/library/dd584169(v=office.11).aspx File location is C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\wpresources\FolderNameSameAsProjectName\AssemblyVersion_KeyToken\myHello.js Not getting alert message on click of button. There is a postback on button click & giving javascript error that function name not found. Here is the code : protected override void CreateChildControls() { ClientScriptManager cs = Page.ClientScript; // Include the required javascript file. if (!cs.IsClientScriptIncludeRegistered("jsfile")) cs.RegisterClientScriptInclude(this.GetType(), "jsfile", "../wpresources/FolderNameSameAsProjectName/AssemblyVersion_KeyToken/myHello.js"); Button btnClick = new Button(); btnClick.Text = "Click"; btnClick.OnClientClick = "Hello();"; this.Controls.Add(btnClick); }

    SharePoint javascript help csharp sharepoint visual-studio

  • create Web-Part for Login-Authentication - sandboxed solution [modified]
    P PleaseHelpCP

    i was trying to use standard asp.net login control in web page & reference that page in web part so that it becomes reusable and formatting becomes easy ....unfortunately didnt get any useful links. so used utilities & IdentityModel namespaces to create following control // create a login control var loginControl = new Login(); // hide the control if the User is already logged in loginControl.Visible = !this.Page.User.Identity.IsAuthenticated; // add event handlers loginControl.Authenticate += new AuthenticateEventHandler(loginControl_Authenticate); /Controls.Add(loginControl); } void loginControl_Authenticate(object sender, AuthenticateEventArgs e) { // validate credentials var login = (sender as Login); e.Authenticated = SPClaimsUtility.AuthenticateFormsUser( this.Page.Request.Url, login.UserName, login.Password); }

    SharePoint database question sql-server sysadmin security

  • create Web-Part for Login-Authentication - sandboxed solution [modified]
    P PleaseHelpCP

    May be the way of asking is wrong. I have the same query asked above. Firstly i am using sharepoint 2010 & vs2010. I have to develop sandboxed solution. I have created web part (not visual web part) in it. I am unable to user login control as it is disabled. I have created login control using Microsoft.SharePoint.Utilities & Microsoft.SharePoint.IdentityModel namespaces. I want to know 1. can we use in-built login control in web part? 2. how to use javascript in login control created using above mentioned namespaces? hope i'll get some fruitful replies thnks

    SharePoint database question sql-server sysadmin security

  • create Web-Part for Login-Authentication - sandboxed solution [modified]
    P PleaseHelpCP

    both mark & saanj people new to this development platform write such queries. its not like they do not try.

    SharePoint database question sql-server sysadmin security

  • create Web-Part for Login-Authentication - sandboxed solution [modified]
    P PleaseHelpCP

    Hello Friends, I am new in Web-part development. I want to create web-part. In that I need to authenticate loginname and password.(it will check it from sql server 2008 database).After successful login, it redirects to another page. how can i do this ?

    modified on Thursday, January 20, 2011 5:20 AM

    SharePoint database question sql-server sysadmin security

  • Hyperlink not working in Mozilla
    P PleaseHelpCP

    thnx for your reply. I checked that also, but there is no error.

    ASP.NET

  • Hyperlink not working in Mozilla
    P PleaseHelpCP

    I am checking my site in both IE & Mozilla Firefox. There is a simple hyperlink which is working in IE but not in mozilla I have used ajax to call the page where hyperlink is given.

    ASP.NET

  • Hyperlink does not work in mozilla
    P PleaseHelpCP

    Hyperlink does not work in mozilla butworks in IE can anybody help me on that?

    IT & Infrastructure help question

  • Cannot use a leading .. to exit above the top directory
    P PleaseHelpCP

    Master page is in root directory. .aspx page is in folder "A" which is in root. In .aspx page i am loading control(.ascx) which is in folder "B", which is again in root. I am using stylesheet which is also created in root. To load control, i have written following lines: UC=(UserControl)Pa ge.LoadControl("../Try/TestPage.ascx");

    ASP.NET help question

  • Cannot use a leading .. to exit above the top directory
    P PleaseHelpCP

    thanks for quick reply. i have tried this solution also, but still giving the same error

    ASP.NET help question

  • Cannot use a leading .. to exit above the top directory
    P PleaseHelpCP

    I have a master page. In .aspx page i have set MasterPageFile value to the master page. In .aspx page i am loading a control(.ascx). While doing this i am getting error Cannot use a leading .. to exit above the top directory. I have tried changing paths also(../), but its not working. Can anyone help me?

    ASP.NET help question

  • [Message Deleted]
    P PleaseHelpCP

    thanks for the reply yes, i m using asp.net. will work on the solution

    Visual Basic
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups