all groups > asp.net > april 2007 > threads for sunday april 29
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
Standard for error trapping in Classes?
Posted by Elmo Watson at 4/29/2007 11:56:48 PM
Up until now, I've done all the work (gui/front end programming, classes,
etc)
I've done all my error trapping (try/catch) in the methods in the code
behind.
Now I've got an opportunity to do programming that is all class type
programming.
I've never created events of any type
What i... more >>
<newbie> Using Google maps on ASP.NET 2.0 pages, how??
Posted by Jeff at 4/29/2007 10:52:26 PM
Hey
I'm wondering how to use Google Maps on a ASP.NET 2.0 page?
I've read a few tutorials on this subject and I'm a bit confused. Some so it
is straight forward. Just put the google map code into the .aspx page and
run it - I have never been able to run it if I put some google map code
(... more >>
Continuously Transaction Number
Posted by Menaka at 4/29/2007 10:18:02 PM
im developing a web application for intranet solution. it have a transaction
named is "Receipt", two locations are use this. but receipt number should be
continue. who can i do this, please help me... more >>
Configuring IIS SMTP for System.Net.Mail
Posted by daokfella at 4/29/2007 8:55:47 PM
I'm having trouble using localhost to test the e-mail functions in my
application. I keep getting the following error when sending mail:
"Unable to read data from the transport connection: An existing
connection was forcibly closed by the remote host."
This is what I have in my config:
... more >>
MailSettings code generates VS2005 error in web.config
Posted by John Kotuby at 4/29/2007 8:14:34 PM
Hi all,
Here's a good one. I'm just trying to set up simple email configuration in
web.config so that I can move my site from my development machine to the
production server. I didn't need to pass an ID and Password to the smtp
server at my office, but the Web server I'm using requires it. So... more >>
ASP.NET 2.0 maximum URL length?
Posted by Vlad Hrybok at 4/29/2007 7:52:03 PM
Using IIS7, Vista x64, ASP.NET 2.0.
I am getting HTTP 400 "Bad Request" for the following URL:
/HTTPVPNWebPortal/62ccc22e-069b-441e-b9f0-83b45e7f4f1e/UdVpnSGFuZGxlcnMvQ292ZXJBcnQuYXNoeD9DJTNhJTVjRG9jdW1lbnRzK2FuZCtTZXR0aW5ncyU1Y011c2hyb29tJTVjTXkrRG9jdW1lbnRzJTVjTXkrTXVzaWMlNWNGcmVuY2glNWNBbWVpb... more >>
null for int value
Posted by Barry400 at 4/29/2007 5:52:27 PM
Hi
i want to set the following
int xxx = null; // this is not allowed
i want to pass a null value to a method like this
setvalue("Hello world ", null); // to the following, it does not work,
private void setvalue(string s1, int iVal)
{
}
Barry
... more >>
Page_Load gets called twice
Posted by fiefie.niles NO[at]SPAM gmail.com at 4/29/2007 4:25:50 PM
I am using ASP.NET 2005 and I have a simple form. Page_Load calls a
sub mySub that does not do anything (for testing purposes). But,
Page_Load gets called twice.
On every single ASPX page in my site, Page_Load gets called twice. Why
is that and how can I fix this problem ?
Thank you very much.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Loading an unfinished questionnaire from a database
Posted by Vili at 4/29/2007 3:34:23 PM
Hi all
I am having problems with creating an functional questionnaire with
asp.net 2.0 and MSSQL 2005 database.
I have a table with field id (key & auto int), clientId (int),
QuestionId (int), And answer (nvarchar(255)) and a set of questions on
an another table.
Questions can have 0 ... more >>
connecting to mysql using asp.net - c#
Posted by Paradox Synthesist at 4/29/2007 1:26:28 PM
hi,
i am a newbie to asp.net and have started learning mainly from
websites. i have a question which IS very silly and trivial.
http://msdn2.microsoft.com/en-us/library/system.data.odbc.odbcconnectionstringbuilder.dsn(VS.80).aspx
i looked through this url to see how could i connect to a mysq... more >>
How to configure a virtual directory as an application with an installer
Posted by david.torgerson NO[at]SPAM gmail.com at 4/29/2007 1:03:14 PM
I am able to configure my virtual directory as an application from the
admin tool by selecting properties. But I want to set this up in an
installer. Is there a way to set the virtual directory as an
application from the command line?
Thanks
dtorg
... more >>
Server-side, then client.
Posted by gsauns at 4/29/2007 11:49:01 AM
Is it possible to, on a click of a button, run server-side code, and
then, upon page refresh, run a client-side Javascript function?
The client-side code would run only when the page was refreshed by
that particular button.
... more >>
Server.Transfer doesn't trigger PreInit event?
Posted by Morgan Cheng at 4/29/2007 6:06:07 AM
"Server.Transfer(Request.FilePath);" make server re-evaluate current
page. In debugger, I found that though the page's OnPreInit is called,
delegates attached in HttpModule is not executed. Why ASP.NET is
designed in such a way?
To make the page executed from scratch, I have to use
Resposne.R... more >>
Flash Menu on the apsx page
Posted by icegray at 4/29/2007 3:07:57 AM
Hi,
I have been designing a web page with asp.net. I want to use flash
menu and I add it to aspx page. but page can't load if i use the flash
menu when i trying the page on my computer.
I try flash menu on the html page it is ok. but i can't use it on aspx
page.
What is my mistake?
Thanks
... more >>
FileUpload control doesn't work (fail in client side early stages) when path is relative i.e "\\path.."
Posted by Oren at 4/29/2007 2:27:46 AM
Hi,
Im working with asp.net visual web developer 2005.
Im writing an asp .net application on windows XP enviroment.
Im using .net FileUpload control to get the path from the user.
If the path is a network relative path (not mapped to any drive) i.e
in the format "\\servr_name\..."
than i get i... more >>
How can I pass parameters to a user control that is loaded at into a Placeholder at runtime?
Posted by keith at 4/29/2007 12:33:56 AM
I use this code to load a user control at runtime:
Control c = Page.LoadControl(Request.ApplicationPath +
"/User_Controls/website_design.ascx");
UserControlPlaceHolder.Controls.Add(c);
Immediately after loading the control, I need to set a property of the user
control.
I have tried vario... more >>
|