Can we use AutoCompleteExtender inside ModalPopupExtender?
PleaseHelpCP
Posts
-
AutoCompleteExtender inside ModalPopupExtender -
Sharepoint DateTimeControlThanks Mark Nischalke for your help :thumbsup:
-
Sharepoint DateTimeControlFormatting date means formatting the date displayed in DateTimeControl. Will SelectedDate property work for this? if yes then how?
-
Sharepoint DateTimeControlHow to format date in sharepoint DateTimeControl?
-
Programmatically Adding Marquee in sharepoint Web PartHow?
-
Programmatically Adding Marquee in sharepoint Web PartIs it possible to add marquee programmatically in sharepoint webpart? thanks
-
Consuming WCF Service in Sharepoint WebpartI 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
-
Teechart - change color of bar in bar chart based on valuesDear 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
-
referencing .js file in a web partI 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); }
-
create Web-Part for Login-Authentication - sandboxed solution [modified]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); }
-
create Web-Part for Login-Authentication - sandboxed solution [modified]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
-
create Web-Part for Login-Authentication - sandboxed solution [modified]both mark & saanj people new to this development platform write such queries. its not like they do not try.
-
create Web-Part for Login-Authentication - sandboxed solution [modified]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
-
Hyperlink not working in Mozillathnx for your reply. I checked that also, but there is no error.
-
Hyperlink not working in MozillaI 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.
-
Hyperlink does not work in mozillaHyperlink does not work in mozilla butworks in IE can anybody help me on that?
-
Cannot use a leading .. to exit above the top directoryMaster 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");
-
Cannot use a leading .. to exit above the top directorythanks for quick reply. i have tried this solution also, but still giving the same error
-
Cannot use a leading .. to exit above the top directoryI 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?
-
[Message Deleted]thanks for the reply yes, i m using asp.net. will work on the solution