all groups > asp.net > december 2003 > threads for sunday december 7
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
asp.net user
Posted by kimmie at 12/7/2003 10:53:58 PM
I have asp.net listed as a user on my computer, but I
didn't put it there and am wondering how it would have
gotten on there. I am the most computer literate in the
family, so I know that no one in this house put it there.... more >>
Set focus on textbox
Posted by Saifee at 12/7/2003 9:16:41 PM
Hello,
How do i set focus on text box or any web control in my
aspx.vb page..pls help... more >>
Newbie: How to start
Posted by John at 12/7/2003 9:01:01 PM
Hi
I have a html page with a form. How can I start turning this into an asp.net
page to including validation and submit processing?
Thanks
Regards
Yahya
... more >>
Crystal reports on web
Posted by Uzi Baruch at 12/7/2003 6:35:43 PM
Hi!
does anyone know of a good newsgroup to ask quetions about crystal reports.
i've got a lot of probelms with it.
thanks,
Uzi
... more >>
Problems using localhost
Posted by Luther Hert at 12/7/2003 4:04:03 PM
While trying to work through textbook lessons for Vb.net
Step by Step,Version 2003, Chapter 22, the first step is
to create a new Web application Project,using the ASP.Net
Application icon in the Visual Basic Projects folder.
When I select the ASP.Net Application icon and type in
http:... more >>
DropDownList question
Posted by Rafi at 12/7/2003 2:55:55 PM
Hi,
During Page_Load I DataBind() my DropDownList which shows alphabetical
list of cities stored in a table tbCities in my data base on Sql Server. On
the same page I can add a new city to the data base. How can I refresh my
DropDownList and show all cities in an alfabethical order?
The ... more >>
sending emails with hebrew characters.
Posted by Mr. x at 12/7/2003 11:33:02 AM
Hello,
I am sending emails with Hebrew contents.
When receiving emails - I cannot see the Hebrew characters (it is not
outlook express configuration, because when receiving emails from friends -
I see hebrew, it is just sending by myself using *.aspx scripts).
In web.config I have the follo... more >>
sql server does not exist
Posted by Hermit Dave at 12/7/2003 11:33:01 AM
Hi,
I am getting this SQLException: Sql Server does not exist or access denied
Here is the situation:
Build machine: VS 2003, Framework 1.1, Windows XP and SQL Server
I have two sets of connection strings, one for local sql server and one for
internet sql server.
Both connect to the database... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Server Unavailable
Posted by walkerdavidscott NO[at]SPAM hotmail.com at 12/7/2003 10:29:25 AM
Hi, I've encountered a problem when installing the .Net framework
version 1.0 on a Windows 2000 Server machine in a clustered
environment. After I install the framework and try to run a simple
ASP.Net web page I receive the following message in my web browser:
"Server Application Unavailable
... more >>
one more question. WebRequest from asp page
Posted by Servé Lau at 12/7/2003 10:18:02 AM
Is it perfectly all right to use WebRequest from within an asp page?
--
Looking for a C(99) compiler for windows?
Download lccwin32.
http://www.cs.virginia.edu/~lcc-win32/
... more >>
string performance
Posted by Servé Lau at 12/7/2003 10:15:55 AM
I have an application which is very string intensive, therefore I'm
wondering about the string performance.
suppose I use this construct
string getString()
{
....processing
return s;
}
Will this create a new string like it would in java or is it reference
counted?
Am I better o... more >>
help needed with popup window
Posted by David Cho at 12/7/2003 9:14:45 AM
I am trying to use the server side code to have a popup window come up only
under a certain condition.
For example, the user presses a button to retrieve a set of records. So
- If there are records to be retrieved, then display the records in a
datagrid
- If there aren't any, then show in ... more >>
timers
Posted by Stephen McCrea at 12/7/2003 7:49:28 AM
I am new to asp. I tried implementing a timer in a System.Web.UI.Page
derived class to perform periodic refreshes of the interface and calls to a
web service but it does not seem to work as I expected. I could not set its
SynchronizingObject field.
When the page first loads I see that the time... more >>
asp.net label creation
Posted by ahmed at 12/7/2003 7:28:30 AM
hi .. i am trying to make a webform where i can create label with out
actually going to the toolbox and dargging the thing over the webform in
design mode.
Is there a way to do that
i tried doing this
Imports System
Imports System.Windows.Forms
dim label1 as new label()
label1.Border... more >>
checkboxlist
Posted by Saifee at 12/7/2003 5:27:32 AM
i have a checkbox list and populate it with database
values.
But the height of checkbox list keeps on increasing as per
the number of values in it...there is no scrollbar shown
in it.please help
... more >>
Problem Uploading 10 meg files using built in.net file upload or aspupload
Posted by hooterbite NO[at]SPAM yahoo.com at 12/7/2003 4:00:16 AM
Somewhere between 9 - 11 megs I am unable to upload, using either
aspupload or the built-in uploading functionality.
here is the code from web.config
<system.web>
<httpRuntime maxRequestLength="35192" executionTimeout="1200" />
afer submitting the form, it takes a few minutes for the page to... more >>
absolutely positioning user control
Posted by Michelle Stone at 12/7/2003 3:55:08 AM
I have a user control that I want to position anywhere I
like on my Web Form. I am able to do so in design time by
adding a style="position:absolute" to the HTML tag of the
user control dragged in from the Solution Explorer
This allowed me to move around the user control in the
Web Form, ... more >>
GC on a Session Variable
Posted by Gonenc Ercan at 12/7/2003 2:38:36 AM
Hi,
I ve ended up debugging a ASP.NET project (with about 380 files on the
project .NET Framework 1.0 on IIS 5.0) which has a memory leak... The memory
rises too fast. With about 25-30 active sessions (average) the memory rises
about 300 MB's in an hour. I've checked the database (SQL Server 2... more >>
Button Click Event Data Not available in time
Posted by Michael Johnson Jr. at 12/7/2003 1:35:43 AM
I am trying to handle a button click event, which updates a web control
table with data. The button is dynamically created in the table itself.
When I call updateTable() in the Page_Load the new data from the button is
not available at this time as to allow the table to properly update.
So ba... more >>
requiredFieldValidator doesn't work on netscape.
Posted by Mr. x at 12/7/2003 1:15:33 AM
Hello,
I am using the dotnet validators
one of them is requiredFieldValidator.
Is there any reason, that requiredFieldValidator won't work for Netscape ?
(I have netscape 7.0, and it seems that requiredFieldValidator doesn't work
for netscape, because I have test this for IE. even this is r... more >>
customValidator doesn't work
Posted by Mr. x at 12/7/2003 12:42:53 AM
Hello,
I have some code as follows.
It seems that customValidator doesn't work - because i don't get any
message.
In the body :
<asp:table>
<asp:TableRow>
<asp:TableCell>
<asp:RequiredFieldValidator
ControlToValidate="a_email"
Text="*"
runat... more >>
|