Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > asp.net > november 2007 > threads for monday november 5

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Hiding a server side control with mouseover
Posted by Ant at 11/5/2007 10:38:00 PM
Hi, Can I use jscript to hid a server side control? Basically, I want a control to be visible only when I roll over it. I tried a div over it & setting the zindex higher than the control but this didn't work. Can this be done? Many thanks for any ideas on this Ant...more >>


JavaScript and ASP.NET web components properties
Posted by Dimitris Milonas at 11/5/2007 10:23:34 PM
Is there a way to get or set a property value of an ASP.NET web component? I know that some properties can be accessed but with different names. For example the "text" property of a button control can be accessed by using the "value" property (i.e. from ASP.NET button1.text = "Sample" and with J...more >>

css question
Posted by Tem at 11/5/2007 10:22:36 PM
Is this possbile with css or do I need to use javascript? If so how? <div class="a1" style="width:100%"><img src="test.jpg" /></div> The width of the div is a variable. Can I scale the img accordingly? img width is 80% of the width of the div Tem...more >>

hitting enter or shift+enter in asp.net designer messes up html code?
Posted by Sunfire at 11/5/2007 7:49:44 PM
I was wondering if there was a way to hit enter to insert blank lines while in the designer? I tried this but all it seems to want to do is insert code that really shouldn't be there. For example, I had a heading 1 centered on a page. Right under that I had some words in smaller print right un...more >>

problem with css
Posted by Felix González at 11/5/2007 6:55:16 PM
Hi I´ve a web application using file system and VS 2005. I´ve a styleseet and works fine, but if I change the css when I run the application on ASP.NET develop web server I can´t see the changes. I must reintal in order to see the changes. thanks ...more >>

validaing security using AD groups... in web.config
Posted by Nalaka at 11/5/2007 5:14:09 PM
Hi, I am testing with an asp.net 2.0 app.... has only one page Default.aspx. I want to deny all users except for a certain AD group. I did the following... but app keeps allowing everyone in. What am I doing wrong? <configuration> <connectionStrings> <add name="ADConnectionStri...more >>

Creating a sliding navigation panel
Posted by Ant at 11/5/2007 5:09:01 PM
Hi, I'd like to include a sliding/ hide navigation panel, the likes of what you see in Visual studio. Is there a short cut tool I can use for this? If not, how would this be best done? With javascript & a div? Any ideas on this? Many thanks for your input Ant...more >>

Link button Text
Posted by Amritha.Datta@gmail.com at 11/5/2007 3:58:56 PM
Hi, I want to break the text in the link button into 2 lines. How would this be possible in ASP.NET 2003? Ex: I have a link button "Maintenance Screen" , I want to show that into 2 lines because its length I want to show as: Maintenance Screen Any help would be appreciated. Th...more >>



setting the Master page of an existing form
Posted by Ant at 11/5/2007 3:51:00 PM
Hi, If I have created a web form, then create the Master Page, how can I set a reference to that Master page from my web form? Many thanks for any answers Ant...more >>

putting code in master page Page_Load event moves everything on the page down 2 lines?
Posted by Sunfire at 11/5/2007 2:14:59 PM
I put some code in the master page load event and find that for some reason, all of the stuff on the page got moved down 2 lines. Is there any way to fix this? ...more >>

ASP.NET message box
Posted by Goran Djuranovic at 11/5/2007 2:06:22 PM
Hi all, I have a web form with an error message box that pops up when there is a SQL error on the back end, after the web form is submitted. Now, the problem is that the error message pops up before the UI is re-rendered to the page, causing the page to be blank (white background) with the er...more >>

Failed sql SP from EnterpriseLibrary
Posted by at 11/5/2007 1:44:09 PM
Hi, I'm attempting to run a SQL SP from ASP.NET 1.1 using the EnterpriseLibrary. I have successfully creted a connection and am attempting to call the ExecuteScalar method. The problem is that my SP is always returning a value of zero when it should (under the right conditions) return a one. ...more >>

I need validation to fail on an apostrophe entered into a textbox for my regularexpression validator
Posted by at 11/5/2007 1:35:05 PM
<asp:RegularExpressionValidator id="valRegEx" runat="server" ControlToValidate="textbox1" ValidationExpression=" " ErrorMessage="* Please only enter alphanumeric values and make sure you are not entering in any apostrophes." display="dynamic">* I need "Chris's...more >>

HTML control Vs Web form control
Posted by Bhuwan Bhaskar at 11/5/2007 1:33:47 PM
Hi, I am new to asp.net. I want to know that, HTML and Web form control can work in same way example, using "runat = Server" attribute, html control can also executed at server, then what is the use of HTML control and is there is any specific condition when we use only HTML control or web ...more >>

explain differences - regarding Visual Studio Team Suite
Posted by Elmo Watson at 11/5/2007 1:32:14 PM
Up until now, we've only used VS.Net and Visual Source Safe 6 So - now I hear about Visual Studio Teams Suite and Visual Studio Team Foundation Server What is all this, and how do they fit in the scenario provided by Visual Source Safe? ...more >>

putting user controls on a page manually
Posted by Sunfire at 11/5/2007 1:32:13 PM
How would you put a user control on a page manually? I know you have <asp:... elements and I thought I read somewhere where all you had to do was do something like <user:controlName... but not exactly for sure how to do something like this... ...more >>

Membership Security - disable one email per user restriction?
Posted by jobs at 11/5/2007 12:58:01 PM
I'm using Membership security to manage a Retailer Site. We have a condition where we would like a set of users to be managed by a single email. Today if you attempt to add a new user and enter the same email for another user you get an error. Is there any way to get around that? ...more >>

Getting error when trying to run my console app
Posted by Bart at 11/5/2007 12:33:03 PM
When I try to run my compiled console application on a Win 2k3 server, I am getting the following error: Unhandled Exception: System.IO.FileNotFoundException: Could not load file or ass embly 'Oracle.DataAccess, Version=10.2.0.100, Culture=neutral, PublicKeyToken=89b483f429c47342' or one o...more >>

Checking to see what page is loaded from inside a master page file?
Posted by Sunfire at 11/5/2007 11:02:34 AM
Is there a way you can test what page is loaded from inside a master page? What I need to do is test to see what page is loaded inside the master page and then gray out the root item linked to that page in the Menu control. I.e. I have a root item called home. When a person is on the home page...more >>

Trap BrowserClose event so can Logout Session
Posted by Ron J at 11/5/2007 10:49:41 AM
How can I trap the user just closing the browser (upper right [x]) so I can shutdown the Asp.net session properly. Don't really want to wait for the default timeout to occur. I'm using a Master page so it should be easy to logout once I know how to catch the event. Thanks. ...more >>

Cached pages?
Posted by Herb at 11/5/2007 10:48:00 AM
Different users seem to have different versions of my aspx page in thier browsers. They do not seem to get the updates I make. Some do and some ddon't. Is there a way to force the page to load anew each time it is accessed?...more >>

Event
Posted by shapper at 11/5/2007 9:48:41 AM
Hello, I have the following: Parent > Child > Button Parent is a custom control. Child is another custom control added to Parent. Button is an ASP.NET button added to Child control. Parent has a custom event named Submit. Is it possible to fire this event when Button is submitted? ...more >>

Users being logged out suddenly.
Posted by WinDev at 11/5/2007 9:43:04 AM
I have a weird one. My users will be on the system and suddenly get logged out. I have forms authentication turned on with a 1200 minute logout (I raised it that high to test this out.) Session timeout is also 1200 minutes. It's almost acting as if its happening when IIS is cycling memory beca...more >>

Change Account from Aspnet
Posted by jwgoerlich@gmail.com at 11/5/2007 9:23:22 AM
Hello group, I want to setup a series of web services to run under a user account, rather than the defacto Aspnet account. These web services all are in .Net 2 and all run under one dedicated app pool. What is the best way to change the user account that the Asp.net code runs under? Thanks ...more >>

dropdownlist FindByText
Posted by rodchar at 11/5/2007 9:06:00 AM
hey all, drp1.SelectedValue = drp1.Items.FindByText(lblEdit.Text) how would i make the above work. it says: Cannot implicitly convert type 'System.Web.UI.WebControls.ListItem' to 'string' thanks, rodchar...more >>

sitemap issue
Posted by Carlos at 11/5/2007 9:04:43 AM
Hi all, Is it possible to use more that one web.sitemap file in an application? For example if I want two support two languages. I would have 2 master pages having as datasource for their menus 2 different sitemaps in those 2 languages.. Then, the content pages would derive from them. Than...more >>

Most Important New Features Coming in 3.5
Posted by Bob Johnson at 11/5/2007 8:38:39 AM
..NET 3.5 will soon be released. Just wondering what you believe to be the most important new features or capabilities ASP.NET will have in 3.5. I would appreciate your *opinions* on this. I'm not looking for a list of all the new features... already have that. Thanks! ...more >>

Looking for open source cms
Posted by lichaoir at 11/5/2007 7:02:00 AM
Hello, Everybody. Can you give me some advise about open source .NET CMS? I've found Rainbow and Cuyahoga, and I want to know more. Thanks for your answer and discussion! ...more >>

dropdownlist and javascript
Posted by rodchar at 11/5/2007 6:57:44 AM
hey all, can someone please show me how to load a dropdownlist thru javascript? thanks, rodchar...more >>

OnClick - Method With Databind
Posted by Jl_G_0 at 11/5/2007 6:41:00 AM
Hey all. hope someone can give me a little advice here. I have a GridView, and on each line of it there's an <asp:imagebutton> like this: <asp:ImageButton ID="hlCancel" runat="server" ImageUrl="/details.png" Width="10px" Height="10px" OnClick=<%# showDetails(HttpUtility.HtmlEncode(Convert.To...more >>

excel to xml
Posted by Kumar.A.P.P at 11/5/2007 5:00:00 AM
In my application my requirement is i have one excel file sheet, i want to convert that excel file to xml file? -- Kumar.A.P.P Software Engineer, Infosys Technologies Limited. http://techaid.wordpress.com/...more >>

An attempt to attach an auto-named database
Posted by archanareddy30@gmail.com at 11/5/2007 4:52:26 AM
Hello, When i try to run my program by using different User it is giving me this exception can you please help me. An attempt to attach an auto-named database for file C:\Documents and Settings\priya.srivastava\My Documents\Visual Studio 2005\WebSites \OrdersSolution\App_Data\NORTHWND.MD...more >>

Frontpage for editing ASP.Net pages?
Posted by Randy Galliano at 11/5/2007 4:31:01 AM
Hello, I am somewhat new to ASP.NET and doing some ASP.NET development. My manager would like me to create the asp.net pages, then send them on to a web designer for finish up making visual changes using Front page. Does front page support asp.net? I am using Master pages to set the ove...more >>

ASP.NET FAQ/Knowledge Base Software
Posted by Spam Catcher at 11/5/2007 3:20:48 AM
Hello, Does anyone have a recommendation for knowledge base software for ASP.NET? Any open source solutions out there? I'm looking for a system which I can integrate into existing pages if possible. Thanks!...more >>

error in opening the webpage
Posted by Claudia Fong at 11/5/2007 12:39:26 AM
HI I got this error after creating a virtual directory in my pc and tried to open the webpage... Server Error in '/webpda' Application. ------------------------------------------------------------------------ -------- Access denied to 'C:\WebApp\'. Failed to start monitoring file changes. ...more >>

ASP.NET 2.0 menu question
Posted by lstuyck73@gmail.com at 11/5/2007 12:37:06 AM
Hi there, I use a menu control that is bound to a sitemap to display menu items, no problems there. I now have one menu item that needs to open an url in a new window, and I have to dynamically add some querystring value to that URL. So I need the menu item to do something like window.op...more >>


DevelopmentNow Blog