all groups > asp.net > december 2003 > threads for monday december 1
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
Iterate through static items in a dropdownlist
Posted by Do at 12/1/2003 10:18:23 PM
Hi,
How do I read through the items that are statically set in a
dropdownlistbox?
Usually, I have my items in a dataset before I bind to a control, so I can
read the data.
But if they're set with the dropdownlist item tags, how do I read through
them
and their properties?
Do
... more >>
Is ASP.NET the future of web applications
Posted by Elias Politakis at 12/1/2003 9:48:11 PM
What I am failing to understand is how come and the whole world is treating
ASP.NET as the irresistable pie for web development, whereas you have a
server roundtrip for each mouse click on a form.
Sure Internet is not as slow as it used to be, especially with ISDN and ADSL
connections, but sti... more >>
Is ASP.NET the future of web applications
Posted by Elias Politakis at 12/1/2003 9:40:46 PM
What I am failing to understand is how come and the whole world is treating
ASP.NET as the irresistable pie for web development, whereas you have a
server roundtrip for each mouse click on a form.
Sure Internet is not as slow as it used to be, especially with ISDN and ADSL
connections, but sti... more >>
Passing Credentials to WEBDAV
Posted by Steve Drake at 12/1/2003 9:11:00 PM
All,
I am doing a WEBDAV request and I want to pass the users Credentials to the
webdav server, eg some code like :
Request.Credentials = CredentialCache.DefaultCredentials;
This does not work, as I get AUTH FAIL, but if I pass the user name and
password by using :
MyCredentialCach... more >>
Threads.. Session var lost, App var ok
Posted by rooster575 at 12/1/2003 8:56:42 PM
I have a simple thread the sets Session("Complete") = 1 when it is finished.
Within that thread, I can see the session variable as updated fine, but when
the page refreshes and I look at the Session("Complete"), I find that it is
the original value before the thread touched it. [As if they were... more >>
ASP.Net intermittent slow response
Posted by Aaron McAlpine at 12/1/2003 8:55:40 PM
Our production system developed a problem over the Thanksgiving weekend.
Wednesday evening... everything is fine. First thing Monday morning, we
started receiving complaints about the system being "slow".
I found that the web application will clip along without a problem and then,
for no appa... more >>
case
Posted by Ernest Ng at 12/1/2003 8:39:48 PM
asp.net can use case?
just like asp?... more >>
Best approach to bind data from XML to an asp:Table
Posted by Greg Linwood at 12/1/2003 8:20:49 PM
I am wondering what the best approach to binding XML data to an asp:Table
from the Page_Load event in a code behind module?
I'm using VB.Net and initially approached this by adding a table to the web
page from the VS2003 ASP page designer, extracting an XML document from SQL
Server during Page... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
unable to create asp.net web app
Posted by TM at 12/1/2003 7:55:09 PM
I am trying to create an asp.net web application in Visual Studio.Net 2003
and when I try to create it on my windows 2003 server, I get this error "The
web server reported the following error when attempting to create or open
the web project at the following url: ......... HTTP/1.1 403 Forbidde... more >>
Permissions to create asp.net site
Posted by rbscheer NO[at]SPAM my-deja.com at 12/1/2003 6:03:36 PM
Hi.
I am creating an asp.net application using Windows 2000 Server and
VS.NET 2002. My account is part of the administrators group. I need to
share this machine with another developer. What permissions should I
give to his account in order he can successfuly create asp.net
applications, witho... more >>
Accessing DCOM components from the code behind pages and using sessions to store DCOM object handles
Posted by Alex at 12/1/2003 5:28:47 PM
I'm having a problem porting an ASP solution to ASPX.
In the ASP solution I'm accessing a DCOM server, create sub DCOM objects and
call functions from VB script on the ASP pages.
The DCOM object handles are stored in session variables.
This works fine without a problem.
Ported it to ASPX, acc... more >>
Web Custom Controls? Can they do this?
Posted by Rob Meade at 12/1/2003 3:24:07 PM
Lo all,
I posted a few days ago about wanting to create a template that my
colleagues could also grab easily as a starting point for our applications.
Initially I was looking at the Web User Controls (.ascx files) but after
some confusion realised that these had to be copied into each applic... more >>
GET Vs POST in ASP.Net
Posted by Vaughn at 12/1/2003 3:16:10 PM
Hi
I have created a Form using HTML Elements (Client Side as opposed to
HTMLServer Controls). My code looks similar to the following:
<form id="Section1" action="Section2.aspx" method="post">
Then at the bottom of my form I have a submit button. When I submit the
form I get an HTTP 405 ... more >>
How to capture Clients IP?
Posted by Petrucci2000 at 12/1/2003 3:11:42 PM
Hi All, How can you capture a clients IP Address when they are using DHCP
Protocol? Request.UserHostAddress doesn't works!!!
TIA
... more >>
Open page in a panel?
Posted by Jeremy at 12/1/2003 3:03:42 PM
I want to open a new page within a panel (or similar container) on the
current page (rather than replacing the entire content of the current
window). Can this be done, and if so how ?
... more >>
How to convert a DataView with RowFilter to a new DataTable?
Posted by Andreas Klemt at 12/1/2003 3:01:32 PM
Hello,
I have this:
Dim dv As New DataView(GetUsersAsDataTable())
dv.RowFilter = "brithday >= 1970"
Dim dt As New DataTable
dt = **how to bring my rowfiltered DataView to a new DataTable** ?
When I do
dt = dv.Table
I get my original DataTable so that is unfortunatly not the solution.
... more >>
Why no 403 error for Forms Auth?
Posted by Brad at 12/1/2003 2:40:04 PM
Stupid question time: Why does Forms Auth just keep going to the login page
when access is denied? A 403 error is never raised..at least in my testing
it doesn't.
If I have a particular web or just a page secured then anyone accessing the
page, who is already authenticated but not a permitt... more >>
Problems with file upload on a network drive mapped on the web server
Posted by Hrvoje Vrbanc at 12/1/2003 1:50:35 PM
Hello all,
I have a web server in a domain and would like to upload files using an
ASP.NET application that resides on the aforementioned server but the
destination folder for upload is a shared folder that is located on a
different server within a trusted domain.
I have tried everything I co... more >>
Form postback ..
Posted by .Net Developer at 12/1/2003 1:29:48 PM
Hope some one can help me here..
I have a simple .aspx page with few user input fields. It has a =
parent-child dropdown lists. For some reason when the Autopostback on =
the parent ddl gets fired, it results a JS error as "Object doesn't =
support this property or methd." All the attributes of ... more >>
webservice based on large XML file as datasource
Posted by tjain NO[at]SPAM hotmail.com at 12/1/2003 1:05:16 PM
Hi,
I am trying to create a WebService which uses data stored in a large
xml file (200-400 MB). Obviously parsing the xml for every webservice
request is not feasible since that would make the response very slow.
What should I do to make sure that I can load the xml file once and
keep it in m... more >>
Properties In "Html" view
Posted by Jim Heavey at 12/1/2003 12:23:26 PM
Why does intellisense not show me all of the available properties for a
control, such as a text box when I am adding that control in the HTML view.
For example, "ToolTip" does not show up as a "available" property for a
textbox that I am adding to an EditItemTemplate. Does not seem to mind
... more >>
DataGrid HyperLink Columns
Posted by Jeremy at 12/1/2003 12:18:20 PM
In a datagrid which contains a hyperlink column, can I programatically
change a specific row's hyperlink ?
The hyperlink build in by the designer applies to all rows - I'd like to
change each row's hyperlink based on the contents of that row itself.
... more >>
ASP.NET ActiveX
Posted by IntraRELY at 12/1/2003 12:14:18 PM
I need to verify something. I have an ASP.NET Web Applications that needs to
call a local VB.NET application. From my understanding I need to use Active
X to do so. Is there any other way considering purely .NET. Also any
articles using these technologies would be appreciated.
Steve
... more >>
Global.asax file
Posted by Prince at 12/1/2003 12:12:06 PM
I have a question about the global.asax.cs file. I'm
reading info from a database to populate a DataGrid. I
read somewhere that the opening of the database should
occur in the global.asax.cs file that way every request
doesn't open the database again.
How is this done? It doesn't seem... more >>
Validation Control In DataGrid
Posted by Jim Heavey at 12/1/2003 11:52:54 AM
Suppose I am using a series of controls in the footer of a datagrid which
allows a user to enter "a new row of information to be added to the
datagrid datasource". Some of these controls have a "RequiredValidator"
control. I am able to enter data and all is well.
On this same datagrid I h... more >>
Detect a NULL string
Posted by John Smith at 12/1/2003 11:50:38 AM
How can I detect a NULL string using C# ?
Thanks.
... more >>
Open a desktop application from asp.net form button control?
Posted by Kathy Burke at 12/1/2003 11:41:07 AM
Hi,
I need (if possible) to open a desktop application (vb windows app) from
a button on an aspx form. How can this be done so that the app opens on
desktop not within the browser?
TIA for any help.
Kathy
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participa... more >>
excel
Posted by James Brett at 12/1/2003 11:36:04 AM
What's the best way to parse an excel document through .Net?
Cheers
James
... more >>
Using Thread.Join()
Posted by Elizabeth Harmon at 12/1/2003 11:26:08 AM
Hi All
I am just double checking myself here.
I have two threads that i am running in an application, One Thread Updates a
client side Table in a local DB, another Updates a Server Side Table on a
Server DB (I know i dont like it either but for some reason they want two
seperate DB's, go fi... more >>
Clean solution - passing username + password between separate APPs
Posted by Filippo Pandiani at 12/1/2003 11:22:48 AM
Hi there,
I am looking for a clean solution that will allow me to share critical info
(like username and password) values between separate DLL application.
Here is my scenario:
[Site.dll] contains the main page with the logon fields "txtUserName" and
"txtPassword".
[Engine.dll] contains the ... more >>
multiple cookies with same name, why?
Posted by evolve at 12/1/2003 11:15:37 AM
in the trace information
i am getting the following:
userID 81
username nick.......
projID 1
ProjName Jupiter
inDus 4F2EA4.........
ASP.NET_SessionId 0vg5mca.....
ProjID 2
ProjName Vis
ProjID 6
as you can see there are multiple... more >>
SSI Equivalent
Posted by Bernardo Heynemann at 12/1/2003 11:09:22 AM
First of All, let me introduce myself.
I have been programming for 5 years now in VB/ASP platform (i´ve been
programming other stuff since i was 7 years - old hehehe).
Now i´m moving to ASP.NET and i´m loving the whole thing. Man it is
beautiful.
But since i´m still a rookie, gotta learn some... more >>
Tracing
Posted by Jim Heavey at 12/1/2003 11:03:27 AM
I am trying to understand the use of Tracing/
In the @page you can add Trace="true" which provides a page of tracing
information. Where can I find some material to help me make sense of the
information which is presented. I hear it is very useful, so I would like
to undertand how to use i... more >>
ASP & ASP.Net
Posted by kellydotnetnewbie at 12/1/2003 11:01:58 AM
Does anyone know if it's safe to have an ASP application
and an ASP.Net application running on the same server?
They both use SQL databases and I don't want to cause any
conflict when it is deployed.... more >>
errorPage error message
Posted by Daniel at 12/1/2003 10:39:44 AM
How can I get in my custom ErrorPage the error message from the page that
produced the error ?? This is just for displaying the error.
... more >>
File or assembly name ADODB, was not found.
Posted by KLomax at 12/1/2003 10:36:27 AM
I have a VB6 com object that uses ADO 2.1 for data access.
I have referenced this object in a aspx application.
It works fine on my local development machine.
On our staging server, it errors when trying to
instantiate the com object.
This object runs fine in another asp application on the
s... more >>
ASP.NET and shared assemblies
Posted by Invalidlastname at 12/1/2003 9:59:18 AM
Hi,
We developed some assemblies which use EnterpriseServices queued components.
In order to use EnterpriseServices, these assemblies need to be installed
into GAC. I used the pre-build and post-build events to automate GAC
installation processes and the asp.net application has "copy to local" s... more >>
Insert text at cursor position...still
Posted by Matt Tapia at 12/1/2003 9:53:19 AM
Is there a way to insert text into a multi-row textbox where the cursor
position is at in the multi-row textbox?
Just wondering..I was told I could use the SelectedText property however I
get this error:
'SelectedText' is not a member of 'System.Web.UI.WebControls.TextBox'.
Thanks!
... more >>
shelling from .aspx
Posted by sam at 12/1/2003 9:43:02 AM
Im trying to shell a simple console application from an ASP.NET web form.
I use the vb command:
Shell(sShellPath, AppWinStyle.NormalFocus, True)
It executes the line of code without any errors but nothing happens. The
console application is not executed. I had a review of my security settings
... more >>
Is this an IE 6 bug - frames tablndex problems and the address bar
Posted by john_20_28_2000 NO[at]SPAM yahoo.com at 12/1/2003 9:20:29 AM
I have searched everywhere and was only able to find many that have
had the same problem.
I have a frameset.
In the top frame, I have a tabindex. When the framset loads, I have
some Javascript that sets focus() and select() to the first element in
the top frame.
Based upon the tabindex ... more >>
Addin Controls to Footer
Posted by Jim Heavey at 12/1/2003 8:44:53 AM
Hello, I am trying to add a control to a footer in code, but I get the
following error" "Exception Details: System.Web.HttpException: Control
'txtAddMovieTitle' of type 'TextBox' must be placed inside a form tag with
runat=server."
The code that I am using is as follows:
'* add the M... more >>
Strong Naming an ASP.Net Project
Posted by mcpollo NO[at]SPAM terra.es at 12/1/2003 8:30:00 AM
Hello,
I have a Web Project (UserControls.dll) with some user controls that
is shared by many asp.net web applicattions.
What we do is copy UserControls.dll to all the applications bin
folders an this works correctly.
We want to have this shared code in the GAC.
Wit other non-web proje... more >>
Trouble getting jpg to display in image control
Posted by bdhanson NO[at]SPAM mcdermott.com at 12/1/2003 8:28:57 AM
Hi,
My company is changing its logo and I am having trouble getting my
existing image controls in asp.net apps to read the new jpg. I do not
need to programmatically change them, as they are static, but when
using the new jpegs I only get the little red x. I have added the new
jpg to the pr... more >>
Property in the Properties window?
Posted by George Ter-Saakov at 12/1/2003 7:48:41 AM
I created UserControl with property Title.
It works when i specify it in the HTML (like <RS:MyControl runat="server"
Title="MYTitle">
But i do not see the property in the Property Window of VS.
How do i do that?
Thanks
George.
... more >>
Differant pages, same code behind?
Posted by Beat at 12/1/2003 7:31:23 AM
Is it possible to reference the same codebehind from 2
different pages?
It would be an elegant solution, where we do need
different settings at the PAGE-Level for 2 user-Groups but
the rest of the page is the same.
Page A:
....Codebehind="pagea.aspx.vb" validateRequest="True" ...
Page ... more >>
RDS in asp.net
Posted by Modeller at 12/1/2003 6:43:31 AM
Is there an equivalent technology to ASP's RDS in ASP.NET
to access methods on the server without postback?
Thanks in advance
Modeller... more >>
Getting and sending data from third party software
Posted by Beryl Small at 12/1/2003 6:09:27 AM
Hi, I have a third party software that needs to send
information to an .aspx page for processing to communicate
with an SQL database. The software sends the information
something like this:
Mypage.aspx?Password=Mypassword
When this request hits the page, I need to pull that
variable M... more >>
Access to my development system
Posted by Don at 12/1/2003 5:28:09 AM
Hi
I found out that everybody in my intranet can access my
development projects in the wwwroot folder of my machine.
How can this access be prevented without disabling the
Visual Studio development?
Cheers
Don... more >>
Current date into Access
Posted by Ray Valenti at 12/1/2003 5:09:52 AM
Saving the current date to an Access Database returns an error.
this.dsMain1.Tables["Links"].Rows[0]["LastEdit"]= DateTime.Today.ToString();
this.oleDbDataAdapter1.Update(this.dsMain1,"Links");
Tried several formats, Convert function. Should have been simple.
Waz up with this?
---------... more >>
How to make the page expire when user press the back button?
Posted by Loke Kit Kai at 12/1/2003 5:03:45 AM
Hi,
I would like to do the above, but have no idea how to... Any assistance
is greatly appreciated.
Kit Kai
... more >>
Constructor on type System......WebControl not found
Posted by Mike Owen at 12/1/2003 4:57:20 AM
I have just tried to open a the
file "Controls/CreateEditPost.cs" from within Visual
Studio .Net, and the error message:
'An error occurred while loading the document. Fix the
error, and then try loading the document again. The
error message follows: An exception occurred while trying
t... more >>
Cookieless sessions
Posted by Leigh at 12/1/2003 4:35:36 AM
Hi
Using cookieless sessions, if a user copies a URL that
includes the embedded session ID and sends that to someone
else, i.e. via email, if that link is used within the
timeout period, they end up with the same session.
Is there a way to tell if the client using the URL and
embedded ... more >>
How to tell the application to run on particular version
Posted by sumit at 12/1/2003 3:39:34 AM
Hi,
I have an application compiled in dotnet version 1.1 and
now i am hostingt the application on a server having
dotnet version 1.0 and 1.1 both,,when i run the
application it takes version 1.0 and hence not working,,
Please suggest me how to point that application to
understand the v... more >>
Asp from Asp.Net
Posted by acko bogicevic at 12/1/2003 3:20:41 AM
Hi
How can i run asp application from asp.net?
I have this situation.
Two row frames on the page. Toolbar and center.
On the first frame(Frame1) i have a few links.
Every link's target property is center(Frame2).
Page is created in asp.net, but two links must open pages
in frame2 that are cre... more >>
Help Installing SQL Server 2000 Desktop Engine
Posted by jason at 12/1/2003 2:05:27 AM
Alrighty, I am an web developer with most of my experience
bein in the Unix environment, php, perl etc..
I am trying to broaden my skills and have recently
installed windows 2000, IIS, .NET Framework, .Net SDK and
also installed SQL Server 2000 Desktop Engine which from
what I have read f... more >>
|