Enabling / Disabling File Sharing?

Jul 7, 2010

how to disable/enable file sharing as well as the script for the enabling/disabling Printer sharing.

View 1 Replies


Similar Messages:

Disabling One Control And Enabling The Other

Mar 8, 2010

I have a dropdownlist inside a DETAILSVIEW....now when i select one particular option. a textbox should open up and enable me to enter a value in it and when i click insert button of the detailsview..the value i entered in the textbox shud enter the database and not the value i selected in the dropdownlist...how do i go about it....also how do i access the ID of the control inside the detailsview.

View 2 Replies

AJAX :: Enabling Or Disabling Modal Pop-up On Submit?

Sep 8, 2010

I have a page where the user edits information and i want to run a series of checks on the data and then warn the user with options 'Yes' or 'No' and run code accodingly on their choices.

How would i go about doing this?

I am writing if value_changes then modalpop.Show but this does not work if there is other code within the button submit.

View 2 Replies

Ajax Code For Enabling And Disabling Dropdown Box?

Feb 22, 2010

How to write an ajax function to disable a dropdown, until its parent dropdown is selected?

View 1 Replies

Enabling Disabling Validation Controls Using Jquery?

Mar 4, 2010

how I can enable or disable asp.net validation controls using jQuery from client side. It is required to do so that valdiations can be done on button press.

View 2 Replies

AJAX :: Enabling / Disabling CascadingDropDown Using Jquery?

Aug 22, 2010

I have asp.net dropdownlist control with Ajax CascadingDropDown control.

I also I have asp.net checkbox control. I want to enable/disable CascadingDropDown when the checkbox checked/unchecked using jquery.

I tried diffrent ways but they did not work and if I want to set enable property for the dropdownlist to false it will not work so I have to set the CascadingDropDown enable property to false to disable it but I do not know how.

this is one of the code I tried:

[Code]....

View 3 Replies

Dropdown List Value When Enabling And Disabling Through Javascript?

Sep 14, 2010

I am using a asp.net Drop down list control which is disabled using javascipt, when I am trying to retrieving the value server side the default value is being set on postback.

It is a Web Project and Iam using VS2008.

View 4 Replies

WCF / ASMX :: Enabling / Disabling HTTPGet For Web Services?

Jan 20, 2010

I have a web service project setup to allow only AnyHttpSoup requests though in the web.config. I do not want to allow any get or post calls through. Below is my setup in my web.config.

[Code]....

However, I would like to allow HTTPGet for just one method in my asmx file. This method will be used by monitoring software to ensure the web services are working and available properly. (My monitoring software does not suppoer web services, however, if I am able to do at HTTPGet on the web web service, the monitor software should be able to pickup the response.)

Is is possible to disable HTTPGets for all web methods but just allow it for one web method?

View 7 Replies

Web Forms :: Enabling And Disabling Controls Using Master Pages?

Apr 27, 2010

I am having a master page in which i am having two controls

LoginRegister I want these controls not to be visibled in my UserRegistration.aspx page but should be visible in other pages.How can I solve this problem.

View 10 Replies

Web Forms :: Disabling And Enabling Hyperlinks On An Aspx Page?

Sep 5, 2010

I am trying to disable and enable hyperlinks on an aspx page using a button from another aspx page. I have an idea of having two buttons on one page labelled "disable" and "enable". clicking disable should disable a particular link on another page and clicking enable should enable that same link.

View 5 Replies

JQuery :: Enabling/disabling Input Controls In A Form?

Aug 26, 2010

I am writing a ASP.NET UserControl and I am trying to incorporate JQuery into this.

View 2 Replies

Web Forms :: Enabling And Disabling Controls On Button Click

Oct 30, 2012

i have a doubt regarding in my project...actually in my web form i have a submit button,cancel button,edit button...all are work fine but only one is not properly working ...if i click the edit button submit button will be disabled and dropdown box  and update button will be enabled..in that dropdown list i displayed the employee code which is stored in the database..when the user select the dropdownlist employee code,the particular record will be displayed in the same page...but when i click the edit button submit will be disabled and update and dropdownlist will be enabled..when i select the employee code in the dropdownlist the particular record will be displayed and update button and dropdownlist will be disabled.i want both the controls should be enabled

View 1 Replies

Forms Data Controls :: Enabling And Disabling Gridview Rows?

Dec 18, 2010

I have a gridview with Templatefields checkbox, equipname,rate1,rate2 ,rate3,rate4.The equipname name field is a dropdownlist templaefield and I am populating it with data from datatable.

The equipname are A,B,C,D.

When I check the checkbox the corresponding equipname field of the checked row will be active and I select a equipname from the dropdownlist.

Rate1 is for Equipname 'A'
Rate2 is for Equipname 'B'
Rate3 is for equipname 'C'
Rate4 is for equipname 'D'

Now what I need is when I check the first row and select equipname 'A' only the
rate1 column of the first row should be active.

When I check the secondrow and selected equipname only the rate1 column of the second row should be active
and that of row1 should be inactive and so on.

I was able to do everything except that when I check a particular row and selected equipname 'A' allother fields (ie,rate2,rate3,rate4 ) becomes inactive but all otherrows of rate1 irrespective of the checked row becomes also active.how can I do this

I s there any way for getting that particular checked rowindex so as to compare it with

View 8 Replies

How To Use Facebook Sharing And Tweet Sharing Tools

Dec 1, 2010

I see on the bottom of blog pages a sharing buttons (Twitter and Facebook), where if clicked the link behind (which is normally the blog page url) the fshare button takes the clicker to the blog site facebook page respectively.

How does one do this in asp.net 2 , does one one use the <%# %> in the url part of these share buttons, are there any examples of how this is done?

View 8 Replies

C# - After Disabling A Submit Button With JS, Re-enable After File Download?

Nov 11, 2010

I'm working on an ASP.NET application. Currently when the user clicks "Save" on an item, we disable the Save button, change its text to "Saving..." and so on. This works fine, because the button causes a postback which results in a new page being loaded, on which the Save button is no longer disabled.

We now want to apply this to other actions: Publish (not much different from Save), Import (again, much like Save, but based on data the user has uploaded in a previous step), Export (downloads an XML file to the user) etc.

Export is causing me problems - the button stays disabled. I think this is because the server sends back an XML file rather than a new web page, and so the browser just displays the same page.

The server-side code is along the lines of

Response.Clear();
Response.BufferOutput = true;
Response.ContentType = "text/xml";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + whatever);
[push file contents into Response.OutputStream]
Response.End();

a way of making the server send a fresh page back in the response as well as the XML, thus re-enablnig the button in the same manner that the other pages do, ora way of getting the browser/JS to re-enable the button once the file has been sent.

View 2 Replies

Security :: Disabling Integrated Authentication On Single File?

Apr 13, 2010

I'm not entirely sure if this is the right place to ask, but here goes.

I have a website that uses windows integrated authentication. This is great and the way i want it, BUT, i now have a single .aspx file in that site, that i would like anonymous access to.

I am running this on IIS 6 on a windows server 2003.

How do i go about doing this, if i even can do it? web.config, IIS console or do i need to make a new site for this one file alone?

View 4 Replies

Visual Studio :: Sharing A Solution File - Projects Settings/Configurations Maintenance?

Sep 1, 2010

I am using VS2005 and I have a solution file (.SLN) which has 8 projects. I moved the solution file to a different path on a shared folder to have better organization of my projects and to allow access to the solution/projects from any computer on the network. After that, I edited the .SLN file so that the path of the projects in the solution file are correct (all on shared folders).

After that, I opened the .SLN and everything seemd to be working fine. However, I notcied that the "Start Options" of the website part of the solution file is missing the "Start Options", ie, the Start Options are reset to default values. I think also, but not sure, some other settings of the Solution/Projects have been reset.

Questions:

1. Where the Web Site "Start Options" are stored ?

2. How I can maintain the Start Options and similar settings if the .SLN file is moved or opened from different computers on the network ?

3. I am not using an team development tools, only plain (vanilla) VS 2005 Prof. Edition. Is it possible to have 2 or more developers work on the same solution/projects (shared on the network), if both developers will coordinate manually simultanous access to the porject files/resources/source code ?

View 6 Replies

Enabling Windows Authentication In .NET 4 MVC 2?

Jul 7, 2010

I have an Intranet site reading the windows user name and using it for authentication in the website.

My code works locally but does not read the login name when hosted using IIS 6 on Windows Server 2003 with anonymous access checked. If I un-check anonymous access then in Firefox I keep getting a pop up for username and password which never ends. In IIS 6 it is set to framework 4 and has its own application pool.

User.Identity.Name -returns blank on the server but works fine locally

web.config:
<authentication mode="Windows"/>
<identity impersonate="true"/>

I have an older 3.5 webforms site that works fine on the same server..

View 1 Replies

Options For Enabling Parallel Processing

Mar 11, 2011

It seems that by default, ASP.NET 3.5 running on IIS 6.0 does not do any parallel processing whatsoever. With a quad-core system and a test webforms application that runs an infinite while loop on the server, CPU usage never goes higher than 30% regardless of how many clients are connected and independently running the while loop.What are my options for enabling parallel processing?

View 2 Replies

Enabling CLR On SQL SERVER 2005 Is Safe?

Mar 30, 2011

I am toying with the idea of enabling CLR on my SQL server, using EXEC sp_configure 'clr enabled', 1

However, I am sharing my database server with several other developers and their projects. I've heard vaguely that their might be security issues with enabling this.

Does anyone know what these issues might be? Is CLR safe to use on SQL Server?

View 1 Replies

JQuery :: Enabling Button If Div Is Visible?

Jan 26, 2011

The general idea is that a LinkButton called InsertButton is disabled by default when the page renders and a div called divMainForm is styled with display: none. If a different button is clicked, a jQuer function is called that toggles the visibility of divMainForm. At that time, the InsertButton should also be enabled. I've tried several variations of this function:

[Code]....

The divMainForm toggles with no problem. I can't seem to find the right combination to a) determine if divMainForm is visible or not and b) enable the InsertButton. I've tried the above and also

.css("display") == "block"
.is(':visible')

No errors but none of them seem to detect the status of the div correctly or enable the button.

View 2 Replies

Web Forms :: Enabling A Button Via TextChanged?

May 12, 2010

once again (as a novice to Visual Studio/C#/ASP, coming from a Delphi background) I am struggling to find an answer to what I imagine must be a simple problem?

I have a webpage with only 2 controls, Textbox1 and Button1. On the Page_Load , I have a line of code which says:

[Code]....

All I want to do is to be able to enable/disable the button depending upon whether or not Textbox1 contains anything. As a newcomer, I thought the answer was simple:

[Code]....

but I should really have known by now that there is NO such things as "simple" when it comes to Visual Studio / C# / ASP for someone transferring from Delphi after 8 years!!

From googling, I can see that if I set the value of AutoPostBack for TextBox1 to true then the button will be en/disabled when control leaves the TextBox. But surely there must be a way to do this while control remains with the TextBox?

View 13 Replies

Security :: Enabling DoD CAC Authentication In IIS On Dev Laptop?

Jun 11, 2010

I was wondering if any of you had the steps that would enable DoD CAC authentication in IIS 5.1 (XP Pro). I have never done this and am looking to set up a dev environment on my laptop for a CAC enabled website. What is the mechanism that would actually prompt me for a cert if I accessed a website on my laptop? I have read that selecting accept or require client certificates should do this but it doesn't. I just get a 403.7 error saying client certificate required.

View 1 Replies

MVC :: Enabling .NET MVC2 Unit Tests In VWD?

Mar 16, 2010

As stated in http://forums.asp.net/t/1535916.aspx the unit tests are missing from the ASP.NET MVC 2 RTM source code, but are available on CodePlex at

http://aspnet.codeplex.com/releases/view/41742).

After installing ASP.NET MVC2 RTM on Visual Web Developer 2008 Express, apparently unit tests are not enabled for VWD - when I create a new MVC2 project I don't get the "Create Unit Test Project" dialog box where I can say"Yes, create a unit test project".(I thought I was presented with that dialog box in earlier versions of either MVC2 RC or MVC1, but maybe not...)

Given the source code on codeplex, is it possible to use that to enable unit tests for MVC2 for VWD Express? If so, are the steps one have to take detailed somewhere?

View 5 Replies

Installation :: Enabling 4.0 Framework Using REGIIS?

Jul 26, 2010

I found instructions on here last week that listed the specific directory from which to run REGIIS via a command prompt, but can't find the thread.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved