all groups > asp.net > january 2004 > threads for sunday january 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
Addition - Help!
Posted by Eirik Røthe at 1/25/2004 11:42:03 PM
What's wrong? I am trying to add 2 radiobuttonvalues.
Any idea?
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script language="vb" runat="server">
Sub rbl1b_OnSel... more >>
Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged. windows 2003 server
Posted by Claude seraphin at 1/25/2004 11:10:45 PM
I'am having this message while trying to rune my asp.net app on win3k
server. I have set debug="true" in <compilation section
in my web.config .
Can anyone help me?
Thanks in advance
... more >>
how to test if an object supports a given interface at runtime
Posted by MrB at 1/25/2004 10:57:12 PM
Hi,
I'm writing an asp.net app in vb.net and many of my ascx classes support an
interface IAutoSave, but some do not.
I want to test in my code if the class behind a given ascx control supports
this interface. Currently I'm trapping for an error on converting the class
to this interface but am... more >>
http authentication problem
Posted by b3njo at 1/25/2004 10:36:05 PM
hi, i've followed some threads in this newsgroup on getting user logon by using asp / asp.net, i've set IIS to not enable anonymous user access. However, whenever i'm trying to access the site, a user login form will pop up eventhough i'm already logged in to the domain. Is there a way i can disable... more >>
Tough Problem
Posted by Prince at 1/25/2004 10:30:44 PM
I have a major problem. I have an entire HTML page
stored within a string variable.
ex.
<html><head><title>text</title></head>
<body>
some data
</body>
</html>
the variable, str, equals that entire string.
string str = "<html><head><title>text</title></head>" +
"<bod... more >>
beginner ?
Posted by AussieRules at 1/25/2004 10:18:54 PM
Hi,
In VB you can add an object to a combo such as
dim ob as object
ob.id = 1
ob.name = 'sample'
cbobox.items.add(ob)
These does not seem to work in asp.net.
How can I do this, I want to add object items into a dropdown, and when the
user selects an option I can get the id value. The... more >>
File Uploading in ASP .NET
Posted by eff_kay at 1/25/2004 9:16:05 PM
H
I was wondering... how can I get the status of a file upload? I mean how much has been uploaded and how much is left
I am using ASP .NET
Any idea will be highly appreciated coz I am desperately looking for light... as they say :
Have a Good Day
eff_kay... more >>
Can Roles be used with Forms Authentication?
Posted by Showjumper at 1/25/2004 8:43:01 PM
Can i use roles with forms authentication. Once source (book) seems to
indicate that it works for Windows auth. while another indicates it can also
work with Forms Auth.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Strange error with Response.WriteFile and SSL
Posted by Martin Knopp at 1/25/2004 8:29:26 PM
I have a site running under SSL. Works well so far but there is one ASPX
page which returns a dynamically created PDF file using Response.WriteFile.
When the browser requests this ASPX page via https (SSL) it displays a
message that secure and non secure items are to be displayed (free
transla... more >>
dynamic streaming quicktime qtl
Posted by Brian at 1/25/2004 8:27:07 PM
In the aspx page (following the page declaration) I have:
<%Response.ContentType = "application/x-quicktime-media-link" %>
<%Response.Expires = 0%>
<?xml version="1.0"?>
<?quicktime type="application/x-quicktime-media-link"?>
<embed src="<%Response.Write(strQTTrackLocation)%>" />
the str... more >>
Populating array with color values
Posted by Roger at 1/25/2004 8:21:04 PM
Hi,
I'm trying to populate an array with color names. I keep getting an error.
Here is the line that fails:
Dim Colors As String() = Enum.GetValues(enumColor.GetType())
... more >>
What happens to a response if the browser is shut down?
Posted by Bruce W.1 at 1/25/2004 7:58:15 PM
A user posts a request that takes a long time to process, say two
minutes, before a response is returned.
What happens if in this two minutes the user closes their browser. Does
the server have any way of knowing this? Is anything sent to the server
to tell it that the browser is closing, so... more >>
Any Suggestion ?
Posted by Daniel at 1/25/2004 7:46:06 PM
Does anyone have any ideas in coding a new system.
Because this year is my final year for my studies, so i've to create a system.
Can u suggest a title and wat is the purpose..
Your suggestion will be appreciated and thax u in advance..
Daniel... more >>
Page.Controls to identify server controls
Posted by KK at 1/25/2004 7:41:48 PM
Hi
I have a webform. To enter data, there are couple of text boxes,
check boxes, select boxes etc.. Data will get collected and saved.
When user want to see the data(not edit) I thouht of showing the
same form. at that point, all the edit boxes, check boxes, list boxes
etc.. will get hidden a... more >>
Suggestion for HTML Editor to get past the crappy IDE one
Posted by Lloyd Sheen at 1/25/2004 7:35:47 PM
I am out of my mind fighting with the IDE HTML editor. Beyond the fact that
reformatting the text is brain dead (and I am not just talking about the
switching from design to HTML). I am putting in a filter to provide a
gradient background.
Insert the code into the HTML and switch to design. ... more >>
Upload with .net
Posted by SOS at 1/25/2004 6:39:02 PM
Hi guys ,
i use of this code to upload files using ASP.Net :
aspx code :
<INPUT id="File1" type="File" runat="server">
code behind :
File1.PostedFile.SaveAs(Server.MapPath("File.ext"))
but i get this error :
object refrence not set to instance of an object.
what can i do ?
Thanx
... more >>
DataGrid Allow Paging next and previous
Posted by Maziar Aflatoun at 1/25/2004 6:34:13 PM
Hi,
I have a Datagrid with AllowPaing property set so that the two arrows for
the next and previous set of rows are showing. This is working fine. Now
is there a way to instead of the 2 default previous/next arrows to use
images to represent this previous and next property of the DataGrid?
... more >>
How do I get framework version?
Posted by Jon Davis at 1/25/2004 5:52:52 PM
I'm using a shared web host and I want to get the remote server's framework
version using ASP.NET. How do I get this so I know the server uses v1.1?
Jon
... more >>
question with registering domain name
Posted by VM at 1/25/2004 5:52:01 PM
Hi,
I'm interested in registering my domain name but I'm not sure which company
I'll choose to host my site.
Is it possible to just register my name at one company (I was thinking of
www.whois.com) and then search for another company that'll host my site?
My main concern is reserving the name s... more >>
Auto-generate data forms
Posted by popsovy at 1/25/2004 5:36:04 PM
I am new to the discussion groups and to the .NET world, so this is probably a very basic question..
Is there any quick way in .NET to auto-generate data forms from typed datasets or SQL queries?
I know that it's possible to generate the DataGrid based on a typed data set, but I am more interest... more >>
Can the microsoft data access app. block be used as a DAL?
Posted by Showjumper at 1/25/2004 5:09:07 PM
I downloaded the MS Data Access Application block and have been playing with
it. Can it be used by itself as a DAL for SQL server (or access on another
project)? Thanks...
... more >>
Get True Type Fonts
Posted by Roger at 1/25/2004 4:35:12 PM
Hi,
I'm trying to populate a dropdownlist with all the available True-Type Fonts
on the webserver. Anyone know how to do this?
... more >>
Access or SQL Server ?
Posted by Denis at 1/25/2004 4:16:10 PM
Hi
I am planning to design a database (destined for the web) that will have
between 20000 and 45000 records in it and will receive a lot of reads but
very very few writes (just from me).
Now the question is should I use:
1) The combination of Access 2000 (accessible through ASP or ASP.NET... more >>
Sessions when using Framed web site?
Posted by Christopher at 1/25/2004 2:36:06 PM
Hello, I currently use session variables to store some basic values on an intranet site internally. However, sometimes those session values do not come through and other time sthey do yet the application keeps running seemingly eventhough pages catch for session-ending. Our intranet site has 4 fra... more >>
DefaultRedirect wont work for aspx pages
Posted by Gary at 1/25/2004 1:42:11 PM
I have the following in my web.config....
<customErrors mode="RemoteOnly" defaultRedirect="Applicationerror.aspx"/>
but, my error page does not display. Instead a 'Runtime Error' page
displays showing how to setup CustomErrors.
However, if I make my error page a .htm page it shows fine.
... more >>
Is it possible to process Request vars stored in the db?
Posted by Rick at 1/25/2004 1:30:40 PM
Hi,
1) HelloWorld.aspx?productID=abc123
2) HelloWorld.cs calls the database and gets a block of HTML code:
string dbReturned = "<body>Hello World, <a
href=http://localhost/?productID={NEED TO GET FROM THE CURRENT REQUEST QUERY
STRING}>click me</body>"
displayDBHTML = dbReturned;
3)... more >>
Using User Control from class library
Posted by Marcel Gelijk at 1/25/2004 1:08:21 PM
Hi,
I am trying to create a User Control that is located in a seperate class
library. The User Control contains a textbox and a button.
The page generates an exception when it tries to access the code variable
that are supposed to be linked to the contained controls.
It runs fines when ever... more >>
**Bug**: Handling Streams from within ashx handlers
Posted by Detlef Hüttenbach at 1/25/2004 12:25:54 PM
There is a bug within the Handler factory that messes up the streams loaded
from memory.
Workaround: Don't use the HandlerFactory, i.e.: ashx-handlers when you need
to print images from streams into web forms.
Define your own handlers instead.
I'd appeciate a short hint on that bug or 'featur... more >>
defaultRedirect wont work
Posted by Gary at 1/25/2004 11:57:17 AM
I have the following in my web.config....
<customErrors mode="RemoteOnly" defaultRedirect="Applicationerror.aspx"/>
but, my error page does not display. Instead a 'Runtime Error' page
displays showing how to setup CustomErrors.
I can't see anything wrong with the entry.
Thanks,
... more >>
returning text data from SQL Server to ASP.NET page
Posted by Rod Snyder at 1/25/2004 10:49:46 AM
I'm trying to set up an asp.net (vb.net) that will allow a user to
insert/update a bio/profile. I wanted to create a SQL Server 2000 table that
includes their contact info and bio info. However, I'm not getting SQL
Server to accept more than about two paragraphs of info. I've tried the
datatypes... more >>
Dynamic HTMLTable row problems
Posted by Srinivas at 1/25/2004 10:03:46 AM
Hi
There is a html table which has 10 rows of 2 cells each and one last row
containing the submit button. Upon loading the page I need to display only
the first 5 rows and on clicking the submit button all the rows need to be
dispalyed. Submit button is in the 11th row. I tried doing this by e... more >>
New ASP project
Posted by Mark Goldin at 1/25/2004 9:06:13 AM
How do I create a new project in any location on my hard drive?
I dont like to have all my projects on C drive.
Thanks
... more >>
Difference Between XML and ASP.Net???
Posted by scootermonkey at 1/25/2004 7:59:45 AM
I am a novice, currently learning C# and Visual Studio.Net. Can someone
boil down for me please what the difference is between XML and ASP.Net in a
short paragraph?
Thanks,
Scott
... more >>
Virtual Directory Browsing question
Posted by Big Tony at 1/25/2004 7:09:43 AM
Is it possible to specify a global default page for a virtual directory? My Virtual directory has 111 subfolders and I do not want
to copy a default.aspx to each one. It is set to allow directory browsing and I have a custom page that I would like to use in
every folder without copying it over and... more >>
Using Visual Studio.NET in a shared environment
Posted by Michelle Stone at 1/25/2004 6:06:04 AM
I am exploring the technical possibilities and the legal issues in using Visual Studio.NET in a shared environment. I would like to know if it is possible/legal to have Visual Studio.NET on a server machine, and allow our developers to access it using CITRIX/WINDOWS TERMINAL SERVICE
Note that we h... more >>
How to pass a parameter between pages?
Posted by eekcat NO[at]SPAM list.ru at 1/25/2004 1:11:55 AM
Hello, I have a question about how to pass information between pages in
ASP.NET. There are 2 pages : page1.aspx, page2.aspx.
On page1 user clicks the record. Then, I need to show the detailed info
about that record in page2. How to pass the ID of record? Should I use
querystring or cook... more >>
Hover button
Posted by Brad at 1/25/2004 12:51:30 AM
How can I declare a routine to occur when the mouse is "hovered" over a
certain button? I usually use Windows forms and I know how to there
(btn1_mouseover), but I do not see this in ASP. As you can tell, I am a new
one to ASP .NET.
Thanks for any information.
Brad
... more >>
Hosting apps that use Crystal Reports
Posted by Nauzad Kapadia at 1/25/2004 12:03:17 AM
hi everyone,
i have developed an asp.net application that needs some reports to be =
generated using Crystal Reports. My current hosting company does not =
have crystal reports assemblies installed on the server and neither did =
i find any company that provides that service.
Does anyone ou... more >>
|