Search Results

0
votes
1answer
936 views

Hide an ASP.NET Menu Item

I have an ASP.NET webforms application with a Menu control. How does one hide a particular menu item via code? I've seen a few articles pointing out how to do it with ASP.Net membership/roles-based …
-1
votes

What’s the best method in ASP.NET to obtain the current domain?

How about: String domain = "http://" + Request.Url.Host …
1
vote

How to import mdb to sql server.

You can also use SQL Server directly to import an Access MDB file into a SQL Server database. In SQL Server 2000, this was done using DTS. In SQL Server 2005/2008, this is done with SSIS. H …
1
vote

LinkButtons not working in ASP.net/C# app production deployment

Any chance javascript is disabled in the browser? I've also had trouble like this with certain AV security apps that muck with javascript in the browser. …
3
votes

ASP.NET Resource Reference Best Practices

Hmmm...I disagree with @StevenMcD completely. The tilde always references the root of the web application that you're developing, whereas the relative path notation is based upon your current locat …
1
vote

FormsAuthentication.SignOut() does not log the user out.

Sounds to me like you don't have your web.config authorization section set up properly within . See below for an example. <authentication mode="Forms"> <forms name="MyCoo …
1
vote

Hide an ASP.NET Menu Item

Doh! Ok, I figured it out. The correct syntax is (VB.Net): mnuMyMenu.Items.Remove(mnuMyMenu.Items(1)) …