all groups > asp.net > september 2006 > threads for sunday september 10
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
Client Script for ASP.NET Websites
Posted by Saurabh at 9/10/2006 11:32:01 PM
Hello,
I'm using Microsoft Visual Web Developer 2005 Express Edition and
I've realized that some events like onmouseover, onmouseout are not directly
supported by ASP.NET websites; and for it, we need to write code in client
script(Jscript). Please suggest where shall I find example c... more >>
Stopping client side event validation
Posted by Paul at 9/10/2006 10:09:43 PM
Hi all,
I've been trying unsuccessfully to stop client side event validation.
I've created a simple page with a text box, a required field validator
and a server button with the following settings:
1. <pages enableEventValidation="false"> in web.config
2. EnableClientScript="false" in the r... more >>
Validating new users by way of email
Posted by JJ at 9/10/2006 6:29:13 PM
When I new user registers on my web site I want to force them to click on a
link in a sent email to confirm that their email is correct.
I have searched high and low for this but I am probably using the wrong
search terms.
Is this built into asp.net 2.0, or is there another way of acheivin... more >>
asp help
Posted by John at 9/10/2006 5:46:34 PM
Hi
In asp I used to use;
rs = New ADODB.Recordset
rs.Open(SQL, conn)
What is the asp.net equivalent?
Regards
... more >>
asp to asp.net conversion issues
Posted by John at 9/10/2006 5:29:53 PM
Hi
I am trying to convert my asp app tp asp.net and I have a few issues;
1. I have the following code for a db connection;
onn = New ADODB.Connection
conn.Open("PROVIDER=SQLOLEDB;DATA
SOURCE=mysqlserver;UID=username;PWD=password;DATABASE=mydb")
I am getting a 'ADODB.Connection' is not... more >>
Best tool for JavaScript debugging
Posted by Tina at 9/10/2006 5:03:30 PM
I'm getting into Atlas classes now and I guess I'm going to have to write
some javascript (ughh)....
So, to get started on the right foot, what is the best tool to use when
using JavaScript with asp.net apps... Microsoft Script Debugger??
Thanks,
T
... more >>
Viewing in Browser
Posted by Uriah Piddle at 9/10/2006 4:17:02 PM
Hi Gang,
How do you center an ASP.NET 2.0 website in the browser window? My website
is 800 px wide and it renders to the left in all the browsers.
Thanks.
Steve
... more >>
asp to asp.net conversion
Posted by John at 9/10/2006 3:23:21 PM
Hi
I have a pure asp app which I need to integrate into an asp.net app in terms
of the asp.net membership/roles/login that asp.net app uses. I understand
there is no way for a pure asp app to share session etc. with asp.net i.e.
it can't work with asp.net membership/login. In which case is ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Login Controls and aspnet_regsql
Posted by Owen Richardson at 9/10/2006 12:43:01 PM
I have been running and testing stuff ok on my dev machine, but have been
forced to consolidate my databases at my hosting company - i created a db
there, and i ran the aspnet_regsql wizard. I filled that out, and sure enough
i created the tables etc on my remote database.
What i dont know ... more >>
"Page.Clientscript" does not compile in assembly,
Posted by Jon Paal at 9/10/2006 11:21:19 AM
"Page.Clientscript" does not compile in assembly, with the error message "Reference to a non-shared member requires an object
reference". ...
what reference is it looking for ??????
class class1
public sub showimg()
Dim Response As HttpResponse = HttpContext.Current.Response
Dim the... more >>
Two Different FormsAuth Logins for Same Application
Posted by Alex Maghen at 9/10/2006 9:41:01 AM
I have what I'd *like* to be a single web application (meaning, shares the
same Session object for a given user, etc.). But I'd like to configure it for
FormsAuthentication so that if the user goes into most of the directories
before he's authenticated, he'll go to one Login.aspx whereas if he... more >>
possible to remove Viewstate hidden field?
Posted by Stimp at 9/10/2006 9:01:28 AM
Is it possible to prevent the <input type="hidden"
name="__VIEWSTATE"> field from being generated in an aspx page?
I'm running off Framework 1.1
The field is messing up a process that I need to run, so simply clearing
out the viewstate by overriding SavePageStateToPersistenceMedium, etc
... more >>
How can I get a bitmap into a WebControl?
Posted by Dave Harvey at 9/10/2006 2:48:01 AM
I have developed a standard .NET control which displays medical images and
works fine in applications, but increasingly, my customers are wishing to use
it in an ASP.NET environment, so I am looking to make a WebControl based
equivalent. [If I'm missing something important, and there is a way... more >>
asp.net 2.0 disabled=true problems
Posted by moshi at 9/10/2006 2:08:01 AM
Hey,
I'm working with asp.net 2.0.
I make objects (like ddl, textbox...) disabled=true in client side. Then,
when I get to the server in post action, these objects lose their value.
For example: ddl comes back after postback with the first values in it's
list - it doesn't keep the new value t... more >>
Using MVP pattern in ASP.NET
Posted by uran1 NO[at]SPAM o2.pl at 9/10/2006 12:29:59 AM
In MVP (Model-View-Presenter) presenter shouldn;t depend on view
layer(so it cannot contain reference to System.Web)- we cannot use
Membershi and Role providers in Preseneter (Controlling layer). Access
to those objects is posible only in view, where should be no logic
(business logic).
How t... more >>
Microsoft Dynamic AX
Posted by Seth Bourne at 9/10/2006 12:00:00 AM
I've seen the microsoft product (microsoft dynamic AX). it really impressed
me cause it looks like windows form, but it is web form (run on IE). it
hidden menubar, toolbar and everything on IE menu, and create the menubar
with own menu design. how to hide the menubar, toolbar and everything on... more >>
Limiting access to fields for web service client
Posted by dev at 9/10/2006 12:00:00 AM
Hello,
I have a web service that returns an entity (C# class). I would like to
disallow access to some of the members in write access to the WebService
clients. Setting them private or protected in the class definition can
not be achieved since in the WebService they must be writeable.
... more >>
Problem adding button to login control
Posted by John at 9/10/2006 12:00:00 AM
Hi
I have added an image button to the login control as below;
<asp:ImageButton ID="LoginButton" runat="server" AlternateText="login"
CommandName="Login"
CssClass="noborder" Height="31px" ImageUrl="~/images/box/bu_login_sm.gif"
SkinID="login"
Width="110px" ImageAlign="Middle" OnClick="Lo... more >>
Limiting access to fields for web service client
Posted by dev at 9/10/2006 12:00:00 AM
Hello,
I have a web service that returns an entity (C# class). I would like to
disallow access to some of the members in write access to the WebService
clients. Setting them private or protected in the class definition can
not be achieved since in the WebService they must be writeable.
... more >>
|