all groups > asp.net > october 2003 > threads for tuesday october 14
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
removeing html from a text string
Posted by Brian Henry at 10/14/2003 11:20:57 PM
I want a way to remove all the html tags from a string... i have a ton of
html saved in an sql server and its indexed so i can do searches, but when i
return the text i get all the tags back (did server.encode when saveing to
the sql server) how can i remove the tags so i go from "<b>text</b>" to... more >>
Access Page Properties from Within Custom Control?
Posted by Mark Olbert at 10/14/2003 10:21:53 PM
I've written a custom control that relies heavily on LinkButton
controls.
LinkButton controls don't behave properly under Netscape, but there's
a simple patch/fix that involves registering some javascript code onto
any page that uses LinkButtons.
I'd like to design the custom control itself... more >>
launching window in frame with a button control
Posted by Dave at 10/14/2003 10:21:42 PM
Hi,
I am using the following code to try to open a window in a target
frame using a button control that is in the original frame. It does
not work unless I click the button twice. If anyone can help I'd
appreciate it. This is on a standard webform.
......................................... more >>
change ASPNet user name
Posted by Coco at 10/14/2003 6:03:29 PM
Hi!
I am developing an asp.net which make use of my c# object
to put message in the message queue which is in the as/400
machine. there's security issue here where the queue
manager only allow the user that it regconise to access
the queue
i have a user called "Intranet" can access to the ... more >>
ASP.NET debugging error
Posted by Matthew Louden at 10/14/2003 5:11:26 PM
When I build my ASP.NET project in Visual Studio.NET, it gave me the
following error:
"Error while trying to run project: unable to start debugging on the
web server. The project is not configured to be debugged."
any workarounds to the problem? Now I couldn't debug the ASP pages.
... more >>
Response.Write simple doubt
Posted by Rafael Veronezi at 10/14/2003 5:01:33 PM
I have a simple doubt about the Response.Write method...
Follows... I have a page that do some processing before show up, it could
take something like 10 or 15 seconds... But it's not the network reply time,
but the page processing time...
So, as everybody knows, Response.Write outputs to the pa... more >>
Solving DataGrid's PushButton Problem
Posted by Curtis Hatter at 10/14/2003 4:18:15 PM
I apologize if this has been answered, but on the .NET 247 site I saw a
thread titled "Datagrid's ItemCommand Event", and had similar troubles with
the Datagrid not properly firing the delete event if using a push button.
I could not find the thread here, so I'm posting my finding's here in hop... more >>
Dropdownlist problem
Posted by RA at 10/14/2003 4:04:02 PM
Hi
How do I enable a user input in the dropdownlist?
Thanks,
Ron
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
XmlDocument
Posted by itsme at 10/14/2003 3:51:58 PM
Hello,
How can one copy an XmlDocument "A" into another
XmlDocument "B"
When I say "copy", I mean to replace the XmlDocument "A"
completely by the XmlDocument "B". I am trying to use
cloneNode method of the XmlDocument but somehow I am
getting multiple copies of the same node.
Does ... more >>
Null Dates
Posted by Craig Buchanan at 10/14/2003 3:23:36 PM
I have a custom class that has a property defined as a Date. If the
property is not set in the UI, the property's value is "12:00:00AM".
This cause problems when I try to insert or update this data in SQL Server
2000, via a stored procedure. SQL indicates that it isn't a valid date
(rightly ... more >>
remove a control from a datagrid footer
Posted by Darren Spooner at 10/14/2003 2:53:11 PM
can anyone tell me how to remove a control for the footer of the datagrid
thanks
darren
... more >>
Image cache problem
Posted by Bei at 10/14/2003 2:24:17 PM
I have a page which has to change 1 image inside periodically. However, I
don't have to modify the page to change. I just replace the old image file
with a new one with the same name.
Then there is a problem of that (images with same name). Everytime there is
a new image, the page still show t... more >>
HttpBrowserCapabilities not returning correct netscape version
Posted by earlt777 NO[at]SPAM hotmail.com at 10/14/2003 2:11:19 PM
When I try to get the netscape version for version 7, I get the
HttpBrowserCapabilities class returning the version as 5 and not 7.
(see code and output below)
CODE
HttpBrowserCapabilities bc;
string s;
bc = Request.Browser;
....
s += "Type = " + bc.Type + "<br>" + "\n";
s += "Name = ... more >>
trusted sql server connection problem!?
Posted by Brian Henry at 10/14/2003 1:59:21 PM
I an trying to connect to a sql server in asp.net with the sql connection
object, and every time i try to open the connection i get this
Server Error in '/' Application.
Login failed for user '(null)'. Reason: Not associated with a trusted SQL
Server connection.
why am i getting this? and... more >>
Information from a user control
Posted by Christopher Young at 10/14/2003 12:57:58 PM
I have several user controls on a page and I am trying to
get information out of them. The postback is being caused
on the aspx page and not in the user control. I have
tried using a property but I keep getting a message that
the object is not referenced.
What I am trying to do is be inf... more >>
two levels in a single grid
Posted by Gary at 10/14/2003 11:33:41 AM
Is there any way to display Parent/child data in a datagrid?
Thanks,
G
... more >>
error ASP.NET version 1.1
Posted by Pengyu at 10/14/2003 11:29:06 AM
Here are the configurations of my computer:
Windows XP Professional
IIS 5.1
I tried to new a Web Service project using Visual Studio
2003 Professional at http://localhost/WebService1. It
said: "Visual Studio .Net has detected that the specified
Web server is not running ASP.NET version 1.... more >>
ref dropdownlist in itemdatabound event?
Posted by Tina at 10/14/2003 11:00:27 AM
In the ItemDataBound event I know how to reference the text in a text box in
a template column:
e.item.cells(0).text
but I can't figure out how to reference a dropdownlist in a template column:
e.item.cells(1).????????
how can I reference the control in the template column so that I can fil... more >>
|