all groups > asp.net > october 2003 > threads for saturday october 18
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
Cannot create ASP.NET application...
Posted by John Sedlak at 10/18/2003 10:42:13 PM
Hello,
I have installed VS.NET Enterprise, ASP.NET, IIS w/
Windows XP, all Updates from Microsoft's Windows Update
and still I get this error when I try to create an
ASP.NET Application on my local webserver
(http://localhost:8000/ - Port 8000 for specific reasons,
port 80 does not work... more >>
Get the UserControl on which a Control resides?
Posted by Steve - DND at 10/18/2003 10:39:35 PM
I have a custom validation control I have created. One of the actions it
performs is similar to the CustomValidator in that I specify a function to
run, and it goes and runs the function. Previously I had been doing this
with the line:
this.VerifyValidate +=
(VerifyValidateDelegate)Delegate.C... more >>
line graphs via ASP.NET
Posted by Bruce Schechter at 10/18/2003 10:38:58 PM
I need to generate a series of line charts dynamically from ADO.NET data in
an ASP.NET application. I've read several articles about using GDI+ to
render graphs into a bitmap image and then to place those images within an
..aspx page. If necessary, I'll do all the hand-coding in that way. Bu... more >>
Operation must use an updateable query error.
Posted by abdul haleem at 10/18/2003 9:07:24 PM
hiye guys, can anyone tell me whats wrong with this piece
of code? to my knowledge, its looks and seems fine. i'm
very puzzle by this error.
i get this error msg
"Operation must use an updateable query."
anyone knows what it means?
below is the code
Line 31: objCommand = New... more >>
Whitespace using Regular Expressions
Posted by cwbp12 NO[at]SPAM yahoo.com at 10/18/2003 8:53:36 PM
Hi,
I have a Regular Expression that will match the format a
user provides in a textbox.
Ex. Brown,Joe in the textbox
I would like the expression to have both whitespace and
non-whitespace options after the comma.
Any suggestions or maybe a different Regular Expression
that allow... more >>
ASPX --allowing HTML Designers to modify... ???
Posted by SStory at 10/18/2003 7:34:31 PM
Doing pages for contract.....
If I make an ASPX file that does certain things, how simple would it be for
a person who know nothing about it to modify the user interface without
bothering the ASPX interaction? How would I best build such pages. Many
people of course don't want a page that th... more >>
Visual Studio problem...can't load projects...hoping for help!
Posted by KatB at 10/18/2003 7:01:50 PM
Hi, not strictly asp.net but don't know where else to go.
I created 2 asp.net projects in visual studio 2002, then copied them to
another development pc. I've tried to open them in vs but get an error
message that it is a local project and must be opened via the file path,
which is what I was ... more >>
Custom Control Referencing Global.asax --- Possible?
Posted by Ron at 10/18/2003 6:00:24 PM
I need to write a custom textbox control that references an object located
in the Global.asax class, but I can't compile the control into a DLL without
including the reference to the project DLL that includes the Global.asax
assembly.
I've tried reflection, but I can't seem to make it work cor... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
how to deploy a asp.net website on the webserver
Posted by jayesh fojdar at 10/18/2003 5:02:54 PM
hi
how do i deploy my website having asp.net pages on the website .
will my site work by just uploading the pages or i will have to follow some
other procedure.
my web server has asp.net support.
... more >>
Rss News Feeds ???
Posted by Ken at 10/18/2003 3:28:11 PM
I'm trying to make an ASP page with VS .NET 03 using VB as the language and
I want the page to display an Rss News Feed as page content form another
RSS News Feed on a web page served by another one of my IIS srevers,
I don't know how to do this it sounds simple enuf but were do I start is it
a... more >>
Cache dependency on database select statement
Posted by martin at 10/18/2003 2:35:02 PM
Hi,
I have a page that contain a dropdown list of values.
This drop down list rarely changes so I wish to cache the page. However the
values in the dropdown box are taken from a database, so if the values in
the database change I wish to expire the cache and go to the database again
and get a... more >>
aspnet_wp.exe
Posted by David Pineda at 10/18/2003 2:16:26 PM
Hi,
I made a webservices DotNet application that when I got 10 users the
aspnet_wp.exe consume whole cpu time, any idea what can review??
Thanks,
David
... more >>
Copying Projects
Posted by John Lundrigan at 10/18/2003 12:57:53 PM
The Copy Prject option is a nice capability to transfer an entire
project from one web server to another. But I would like to do the
same but by transferring it on CD.
I have seen this done as part of a Microsoft Course setup (2310). Is
there any general documentaion for this sort of thing.
... more >>
neewbie : include virtual
Posted by Mark at 10/18/2003 12:55:16 PM
Hi,
Here's what's up:
I have a subroutine getAds () that I possibly will need to call more than
once in a page (and on more than one page). When I have the sub code on the
same page, it works fine.
When I try and move it to a separate page (to consolidate all of the
commonly called ones) and u... more >>
Equivalent to JAVA Applets
Posted by shreesh at 10/18/2003 11:54:36 AM
What is equivalent to JAVA Applets in ASP.NET?
Like in JAVA Applet it is first downloaded to the clients
computer and then user can use it interactively,how it
can be done in ASP.NET WebApplication?
... more >>
Debugging has become really slow ... Why and how can I fix this?
Posted by Dean R. Henderson at 10/18/2003 9:29:45 AM
I have a project built for ASP.NET that recently started running really slow
in debug mode (it takes about 10 seconds or more to step from one line of
code to the next).
This just started recently and only impacts one ASP.NET project. I have
some other ASP.NET projects that I can step thru wi... more >>
Web Form Target
Posted by Dan at 10/18/2003 6:55:56 AM
Is there a way to get a web form (Runat=server) to post
data to a target frame? I'm stumped here and haven't
found any good documentation on using frames with
asp.net. If anyone could point me in the direction of a
good article, or has some insight they could share on
this topic, it would ... more >>
Can I use format on sqlDateTime object?
Posted by mhf at 10/18/2003 4:12:33 AM
I have a SqlDateTime object, but when I use DataBinder.Eval on it, the
formatting is ignored:
DataBinder.Eval(Container.DataItem, "mySqlDateTimeObj", "{0:d}")
produces output like this: "10/17/2003 12:00:00 am"
Why can't I use format specifiers on SqlDateTime objects??
Thanks to anyon... more >>
How to change color of a hyperlink column in a datagrid ???
Posted by Robbo at 10/18/2003 3:37:41 AM
Hello, I created a datagrid with a few hyperlink columns.. How do i change
the color of the hyperlink itself? BLUE is a bit bad on my datagrid
color scheme.
Thanks,
Rob... more >>
HTML Frames
Posted by A.M at 10/18/2003 12:56:53 AM
Hi,
I have been told that I should avoid using html frames as much as possible
in ASP applications. Why is that so?
Thanks,
Ali
... more >>
Side Menu
Posted by A.M at 10/18/2003 12:27:09 AM
Hi,
Developing a site with 25 pages. I can use one of following technique for a
complex side menu:
1) ASP.NET user controls
2) Frames
3) Server side includes
Which way is the best in ASP.NET ?
Thanks,
Ali
... more >>
Datalist Formatting Strangeness
Posted by Joe at 10/18/2003 12:19:03 AM
Hey,
Can anyone out there see why when this code renders there's a 1px space
between the headertemplate and the itemtemplate.
<asp:datalist id="asplistDL" BorderStyle="None" RepeatLayout="table"
cellspacing="0" cellpadding="0" runat="server" horizontalalign="center"
width="100%" borderwid... more >>
|