all groups > asp.net > march 2006 > threads for saturday march 25
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 31
DESPARATE - ASP.NET 2.0 can't connect to my sql server databases
Posted by K B at 3/25/2006 10:54:51 PM
Hi,
I've just started using Visual Studio 2005 but I do NOT want to use
SqlExpress but my existing sql server database. I've searched and did
the following: ran the aspnet_regsql.exe to update my database for 2.0,
that appeared to add tables, etc. I've changed the connection string to
point ... more >>
Master pages and Forms Authorization
Posted by gilly3 at 3/25/2006 10:15:54 PM
I'd like to use a master page for (nearly) every page in my ASP.NET 2.0
website.
I also have some webpages that I'd like to protect by using forms
authorization.
I have a page that requires authenticated users, so I've dropped it in a
virtual application with a web.config that denies acc... more >>
How to save changes to a web.config section?
Posted by keithb at 3/25/2006 8:16:40 PM
How can an application change settings in the web.config file? I need to
allow users to configure SMTP email settings with functionality similar to
that provided developers by the ASP.NET Web Site Administration Tool. I
believe that I can get the settings using ConfigurationManager.GetSection,... more >>
Domain Names
Posted by Terry Burns at 3/25/2006 7:57:47 PM
Hi Guys,
I know this is a bit off topic, but im not having any luck googling it.
I want to know where I can go programatically to get a list of all
registered domains on the internet.
Cheers
--
Terry Burns
... more >>
Referencing a resx from an aspx?
Posted by theintrepidfox NO[at]SPAM hotmail.com at 3/25/2006 4:53:00 PM
Dear Group
Just wonder if someone can point me in the right direction please?
I have a label control and want to assign a string in a resource. I'm
sure I'm on the right track but it doesn't work. The resource and
string is in place.
<asp:Label ID="LaSysNavFooter" runat="server" Text='<%#... more >>
Validation
Posted by Mark A. Sam at 3/25/2006 10:26:30 AM
Hello,
I placed a RegularExpressionvalidator on a webform to test a textbox for a
proper email format. I am trying to test for a failure but can't seem to
get a value. Here is what I tried:
EmailValidator.Validate()
If Not Page.IsValid Then
Beep()
txtEmail.Focus()
End If
ALSO
... more >>
How to make web user control?
Posted by VB Programmer at 3/25/2006 9:54:53 AM
I have a SIMPL HTML form that displays a javascript clock.
I want to take this component and put it in a web user control so that I can
reuse it easily.
The problem is I don't know what to do with some of the elements, like...
- <BODY ONLOAD="jsClock()"> **** no BODY in web user contr... more >>
ASP.NET Blog http://dkuldeep.blogspot.com
Posted by deokule2003 at 3/25/2006 9:52:46 AM
To get information related to ASP.NET and VB.NET.
Vist the following Link:
http://dkuldeep.blogspot.com
Regards
Kuldeep Deokule
---
Posted via www.DotNetSlackers.com... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
ASP.NET Blog http://dkuldeep.blogspot.com
Posted by deokule2003 at 3/25/2006 9:52:44 AM
To get information related to ASP.NET and VB.NET.
Vist the following Link:
http://dkuldeep.blogspot.com
Regards
Kuldeep Deokule
---
Posted via www.DotNetSlackers.com... more >>
ASP.NET Blog http://dkuldeep.blogspot.com
Posted by Kuldeep at 3/25/2006 9:52:31 AM
To get information related to ASP.NET and VB.NET.
Vist the following Link:
http://dkuldeep.blogspot.com
Regards
Kuldeep Deokule
---
Posted via www.DotNetSlackers.com... more >>
Event that fires up on load and should not
Posted by Progman at 3/25/2006 8:53:46 AM
I have a button with an onclick event.
strangely, the event will fire on page_load.
i have another form with same scenarion but different appearance and it does
not do that.
i checked everyhting but could not find anything.
if yiu have a clue...
... more >>
Redirect/Transfer to a new _blank page
Posted by mz at 3/25/2006 8:36:38 AM
Using the GridView control and a Command button in the GridViewRow I'm
trying to "redirect" to a popup page. I currently have to do it using
Javascript and I'm wondering if there is a more elegent way do do it using
the Redirect or Transfer comman.
Thanks
... more >>
migration from asp: better client or server-side code?
Posted by Ben at 3/25/2006 12:00:00 AM
Hi,
I made an application in classic asp (reservation of books and video stuffs
for students) and want to migrate to asp.net.
The user has to chose a date, then pushung on a submit button. The whole day
is then displayed in cels of a table. The user has then to click in a cel
representing ... more >>
Application_BeginRequest and Request.Params[] under Asp.net 2.0
Posted by tao lin at 3/25/2006 12:00:00 AM
Hi, all
I am using VS 2005 under windows 2000.
I just upgrade my asp.net app from 1.1 to 2.0. And I found a very strange
proglem in my Global.asax.cs's Application_BeginRequest function, here is my
code:
protected void Application_BeginRequest(Object sender, EventArgs e) {
if (Request.... more >>
ASP.NET 2.0 Raising a custom event from a usercontrol to parent page: How?
Posted by Jimi at 3/25/2006 12:00:00 AM
Hi all, I have a user control which I want to raise a custom event from so
the parent page can reload a datagrid with some new information.
In the 1.1 framework days I would have just done something like the
following in my user control:
public delegate void _departmentClick (object sender... more >>
|