all groups > asp.net > may 2006 > threads for sunday may 21
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 free application for medical care
Posted by Lonifasiko at 5/21/2006 11:17:12 PM
Hi group,
I've developed an application for PDAs based on Compact Framework 2.0.
That's the client part of the application. Now I must build the
server-side. I was thinking of using ASP.NET, but I do not want this to
take me much time.
I was wondering if you knew a kind of scheleton of ASP.... more >>
Sending HTML Mail with ASP.NET 1.1
Posted by Ray Booysen at 5/21/2006 10:43:26 PM
Hi all
I'm sending email via ASP.NET in HTML mode. Each email has exactly one
attachment and I do have full access to the SMTP server. However, if I
send the email in HTML format, the framework reports the following
exception:
"System.Web.HttpException: Could not access 'CDO.Message'... more >>
determine the pixel resolution of an image file
Posted by Bruce at 5/21/2006 10:22:23 PM
I have an asp.net page that is dynamically building a table and populating
cells with images (typically jpeg) and with associated metadata.
How can the asp.net code efficiently determine the pixel resolution from the
image file (without loading the entire image into memory on the server) to... more >>
Resetting the value of a System.Web.UI.HtmlControls.HtmlInputFile
Posted by Nathan Sokalski at 5/21/2006 7:01:52 PM
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
submit files. After the file is successfully submitted, I want the field to
be reset so that the user knows the file was submitted. However, ASP.NET
does not let you change the Value property of an HtmlInputFile control. H... more >>
ASP.Net [2.0] - Converting a date to a new format...
Posted by Rob Meade at 5/21/2006 7:00:46 PM
Hi all,
Ok - I've come from a 1.1 background - and previously I've never had any
problem with doing this:
Response.Write (Session("MyDate").ToString("dd/MM/yyyy"))
So, I might get this for example:
21/05/2006
Ok - just tried exactly the same thing in .net 2.0 and I'm having no end o... more >>
Redirect with return
Posted by Toty Santana at 5/21/2006 6:28:01 PM
I've a classic ASP page and i need to Redirect from that page to an ASP.NET
page then get back to the classic ASP page (all without user intervention).
I can't use Server.Excute because it won't work with ASP and ASP.NET together.
Is there a way that I can return to the previous page in the code... more >>
Browsers for ASP.NET
Posted by Samuel Shulman at 5/21/2006 5:58:27 PM
Hi
Does ASP.NET run on Netscape and other non IE browsers (and how?)?
Thank you,
Samuel Shulman
... more >>
Best Practices Question
Posted by JimO at 5/21/2006 5:58:20 PM
As a general rule, is it better to place database calls as part of the
object the operate on or just put all the calls in thier own namespace?
Ex
Dim userObject = New UserClass()
userObject.InsertUser()
Or
Dim DBCalls = New SystemDBCalls()
DBCalls.InsertUser(userObject)
I realize t... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Which list control to use
Posted by Samuel Shulman at 5/21/2006 5:52:50 PM
In VB.NET I made an extensive use of the ListView Control
I am new to ASP.NET and I wonder what is the best control to use, I noticed
that the GridControl is not as flexible as (AFAIK) it is impossible to add
columns and more importantly rows at runtime
I also need list control for editing... more >>
Order of events, databinding, and UserControls
Posted by Nathan Sokalski at 5/21/2006 3:34:44 PM
I have a very simple UserControl which contains an Image and a Label, which
I use to display an image with a caption. I am using this control inside a
DataList, setting the two Public variables using attributes in the *.aspx
page. Everything displays great for the initial load, but whenever I ... more >>
Couple ASP.NET 2.0 Questions - Roles + ApplicationID
Posted by Spam Catcher at 5/21/2006 2:26:30 PM
Hi all,
Just started using ASP.NET 2.0 and found it to be a big change from 1.1.
Couple of questions (probably more to come)!
1. Is there a way to hard code roles into the web.config? I like to be able
to deploy me app without manual configuration.
2. Is there a way to hardcode the a... more >>
ASP.NET 2.0 Treeview Control - sizing
Posted by K B at 5/21/2006 12:57:10 PM
Hi,
I'm trying to use a new 2.0 treeview control. Got everything working
(finally) but I can't figure out how to fix the size (length) and have
the contents scroll. The control just keeps growing with the content.
Any help appreciated.
TIA,
Kit
*** Sent via Developersdex http://ww... more >>
Ayuda contra unos programadores de Linux y PHP que me quieren dañar un negocio
Posted by Ciudad Tecnópolis at 5/21/2006 11:13:39 AM
Hola, primero que todo mil disculpas por postear una pregunta no relacionada
al tema pero se que será muy útil para todos!
Actualmente estoy presentando un desarrollo en .NET para una compañía y unos
tipejos me están echando el negocio al suelo pues hablan pestes de .NET y le
dicen al direc... more >>
Hosting Server Problems...
Posted by saywhat at 5/21/2006 10:28:19 AM
Hi all, simple question - anyone have any idea why my sites run great
locally, but cause a server error when 'live'? I've contacted the hosting
co. but they say there's no prblem on their end. My site's looking greatt
and I want to deploy it...
They are running ASP.NET 2.0 and I'm using th... more >>
INPUT TYPE=FILE JavaScript Error
Posted by TJM at 5/21/2006 9:47:58 AM
Hi,
A Javascript error is generated when the user types a few character in an
INPUT TYPE=FILE and hits a submit button. The form does not post. Is there a
solution to this problem?
Thanks
TJM
... more >>
What is the life expectancy of static hashtable
Posted by xzzy at 5/21/2006 7:55:15 AM
Using ASP.net, C# and a static class, does the following from MSDN mean:
1. a static hashtable would only live during the session and end when the
session ends
2. there would be a different static hashtable for each session
++ from MSDN ++
Static Variables - Lifetime
Extension... more >>
How to create a baisc CMS in ASP.NET
Posted by shaleen.chugh NO[at]SPAM gmail.com at 5/21/2006 7:29:23 AM
Hi,
I would like to have this functionality to create a basic CMS in
ASP.NET. What I would like is is all the page names (urls) and content
be stored in the database. When a user clicks on a link in the website,
(As there will be no page present physically in file system) all page
not founds (... more >>
Download the html and then images
Posted by Nay at 5/21/2006 5:06:01 AM
Hi
I want the page(with a lot of images) to be seen in as fast as possible.
Well, that's everybody wants... but I don't mind to compromise...
The images/flash can be downloded in a "second phase".
The important thing is that the users would be able to read the html in less
then a second(the pi... more >>
Possible to arrange the fields for each record of a GridView?
Posted by Jack at 5/21/2006 12:00:00 AM
Hello,
I've got the Gridview control working displaying two fields from my
database, but the fields are displayed horizontally next to each other. How
can I display my 'Text' underneath my image?
I've looked at the propertires of the columns (via the 'Edit Columns'
smart-tag feature) but... more >>
checkbox list and radion button list
Posted by puja at 5/21/2006 12:00:00 AM
hi all,
I have a form which has checkbox list which has items as below
1) Input 1
2) Input 2
3) Input 3
4) Input 4
5) Input 5
Now if user selects Input2 and Input5 and goes to next page and then comes
back to this page, I want to retain the selected Item that he selected
before. i.e C... more >>
|