all groups > asp.net > june 2006 > threads for friday june 16
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
***Difficult*** asp.net meteorological controls
Posted by Helpneeded at 6/16/2006 10:17:22 PM
Hello group
I am looking for asp.net controls to display meteorological data, like
wind speed, wind direction, air temperature, etc. I looked at many
places but I could not find any. Please help.
Thanx
... more >>
Password protected html files
Posted by nick at 6/16/2006 9:54:02 PM
I need to create a simple asp.net application that use password protect some
html pages. The html page provider doesn't know asp.net. And the host doesn't
allow me to create user accounts.
What's the best way to store users/password except database tables? and to
store html files?... more >>
any good ASP.NET Wiki Software?
Posted by D. Patrick at 6/16/2006 9:18:14 PM
Anyone know of anything, preferably with source code?
... more >>
ASP.NET 2.0 Login Control and Page_Load()
Posted by msnews.microsoft.com at 6/16/2006 9:04:39 PM
Hello I was wondering if someone could help. I have setup Membership login
with a ASP.NET 2.0 login control. All works, but I want to do some extra
formatting before showing the page. I inserted a code behind with a
Page_load routing. But the routing does not execute, its like it is
comp... more >>
how do you get current full aspx page name with querystring?
Posted by VB Programmer at 6/16/2006 8:23:16 PM
If I have a url like this: =
www.somesite.com/mypage.aspx?myvalue1=3Dhello&myvalue2=3Dgoodbye, in =
VB.NET, how do I get the =
"mypage.aspx?myvalue1=3Dhello&myvalue2=3Dgoodbye" portion?
Thanks!... more >>
response.contenttype
Posted by Mike Kansky at 6/16/2006 7:59:30 PM
I have an image.aspx that does the following:
if request("s")=1 then
response.redirect(http://www.domain.com/image1.gif)
else
response.redirect(http://www.domain.com/image2.gif)
end if
And then i use it like that in my pages: <img src="images.aspx?s=1">
Now the question:
I do... more >>
Managed Code / Shell
Posted by Will Asrari at 6/16/2006 7:54:45 PM
am working on a project now for a client that requires all managed code.
I have rewritten about 60% of the code and functionality in C# and have
now come to the complicated part of picking apart the existing stored
procedure and "managing" it. Two tasks that I am outing from the stored
procedur... more >>
how to get the text in JS of a cell created on server?
Posted by Bob at 6/16/2006 5:36:25 PM
Hi,
I have already posted a similar problem but it 's still a problem for me, so
...
I define a table in aspx file and Javascript code.
Purpose: when the user clicks on any cell of the table, the text of it must
be rendered in an Alert.
<asp:Table ID="table1" runat="server">
</asp:Tab... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
questions about Controls.add
Posted by Bob at 6/16/2006 4:48:31 PM
Hi,
In aspx file, i have a table:
<asp:Table ID="table1" runat="server">
</asp:Table>
In the code-behind, i create rows and cells:
For i = 0 To 50
r = New TableRow()
for j = 0 To 20
c(i, j) = New TableCell()
r.Cells.Add(c(i, j))
Next
Table1.Rows.Add(r)
Next
....
With this, the t... more >>
Application Stopped working....after upgrade
Posted by stephen at 6/16/2006 4:02:50 PM
Hi,
I had created a FileSystemwatcher app (using W2k) to monitor a Directory and
write to a log file. My company upgraded my box to Wxp Pro and it stopped
writing to the log file.
I tried to debug it manually and when I drop a file into the directory the
FileSystemWatcher (create, change... more >>
XML Help!!!
Posted by Karthik Natarajan at 6/16/2006 3:38:09 PM
Hello,
How do I create an XML file in asp.net....
Thanks,
... more >>
Dynamic LinkButton, ViewState
Posted by Andrew Robinson at 6/16/2006 3:34:59 PM
I have a <asp:table> control with a large number of dynamically created
LinkButtons. I am using the command event, command name and command argument
values in my LinkButtons to trigger actions after the post back. The table
is dynamically generated based on a key field that is stored in ViewSt... more >>
newbie problem: updating an access db
Posted by Ned Balzer at 6/16/2006 3:03:05 PM
Hi all,
I have encountered a really weird problem -- probably it is obvious to
someone but not to me. I hoep someone can give me a clue.
I am implementing some code straight out of the book "ASP.NET 2.0 for
Dummies". I just copied the code onto an IIS server with the 2.0 .NET
framework and... more >>
Capture Handle using authentication
Posted by sck10 at 6/16/2006 2:52:21 PM
Hello,
I want to allow all users on our company intranet (domain\handle) to enter
our website. However, I would like to capture the handle of the person
entering my website. I was told that if I turn on Enable Anonymous Access
and Integrated Windows Authentication, that all users will pas... more >>
XmlDataSource and embeded HTML within your XML data
Posted by Sleazy at 6/16/2006 2:42:01 PM
Hi,
I am attempting to right a news scroller control that is driven by and XML
file. The way I have it set up is:
<News>
<Item Title="sometitle">
html content goes here
</Item>
</News>
My hope was to be able to put the html for each news post in the middle of
the Item elememts... more >>
News content to XML file
Posted by Karthik Natarajan at 6/16/2006 2:20:36 PM
Hello,
I have been given a task for creating a utility (asp.net/vb.net) exe which
transaltes the news content
into an XML file.
Can some one give me any directions to how we need to do this?
Thanks
... more >>
Access denied error
Posted by tshad at 6/16/2006 2:20:18 PM
I get this error periodically while testing my site and changing dlls.
**********************************************************************
Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the sp... more >>
adding items to a listbox using clientside javascript
Posted by bill at 6/16/2006 1:54:37 PM
I need to be able to dynamically add items to a <asp:listbox> (or HTML
<select runat=server>) using clientside javascript, and retrieve the items
when the page is posted back.
I use this code to add the option to the listbox. It works for <select> or
<asp:listbox> controls.
var opt ... more >>
Drawing a simple line
Posted by Samuel Shulman at 6/16/2006 1:11:39 PM
in a web form (using either VB or generic HTML)
How do I do That?
Thank you,
Samuel
... more >>
ASP.NET V1.1 Headers and footers help
Posted by Dessip at 6/16/2006 12:35:46 PM
Hey,
this is probbly a really simple answer, but im useing ASP.NET V1.1 and
im trying to create a dynamic header, but a static footer. But i dont
want to use place holders. thou its probbly the best way.
What i am doing is useing Response.write, so heres a example
Function.vb
-------------... more >>
Page Reload Scrolling Issues
Posted by Brenden Bixler at 6/16/2006 12:19:02 PM
Hello.
I've got a long web form that has to reload 6-7 times to validate data
(sigh, I know) making for a rocky-enough experience for users. To add insult
to injury, each time the page reloads, it loads and scrolls back to the top
instead of remaining in the section that caused the page to ... more >>
ASP.NET Webparts application + Publish site = loose page content
Posted by ryan.mclean NO[at]SPAM gmail.com at 6/16/2006 12:08:14 PM
Hi all, I have a strange problem and I think it may be something in my
web.config . . . but I'm not sure.
I have an application that uses webpart (not sharepoint), but the nifty
new .net webparts . . . and it works great, we are using sql server for
the personalization provider. Parts can be a... more >>
HttpCookie.Domain property
Posted by ulabala NO[at]SPAM gmail.com at 6/16/2006 11:51:26 AM
I was trying to retrieve the cookie collection and display the domain
to which those cookies were written to, but I always see a NULL value
for the domain property. Can anyone shed some light?
This is in Framework 2.0.
... more >>
Event & Delegate Question
Posted by Demetri at 6/16/2006 11:36:02 AM
I have written a control in ASP.Net that needs to react if a specified method
gets fired.
In other words, I want the control to do some work if a method that acts as
the event handler for a button is executed via the button click event.
The developer will be able to assign any method with ... more >>
Using the HTML constrol to upload a file - progress bar?
Posted by UJ at 6/16/2006 11:25:57 AM
I have a spot where I allow a user to upload a file to the server. The files
are media files so they can be large (25MB). Problem is that while it's
uploading, the screen just sits there (yes there's a progress bar at the
bottom but that's pretty useless.)
Is there a way to do some kind of ... more >>
Task list
Posted by MasterChief at 6/16/2006 11:23:19 AM
Does anybody know of a good free .NET component that is a Task List
like what is in Windows XP on the side of a window?
... more >>
problem when using Confirmation box in ASP.NET program
Posted by bienwell at 6/16/2006 11:00:15 AM
Hi all,
I still have a problem when using Confirmation box in ASP.NET program. I
need to get the value return of YES or NO from confirmation box in Sub
function of VB program to do some tasks. For example, I have 2 text boxes
and one button. The button will call On_Click event .
Sub bt... more >>
Import data from Excel file or text file into database in ASP.NET program
Posted by bienwell at 6/16/2006 10:38:16 AM
Hi all,
Do you have any source code to import data from Excel file or text file into
database in ASP.NET program ? Please give me your reference if you have.
Thanks in advance
... more >>
"codeless" nested gridviews...there has to be a better way
Posted by Roy at 6/16/2006 10:12:49 AM
Hey all. Below is the nested syntax on how to make a "codeless" nested
gridview embedded within another gridviews templatefield column. Only
problem is that it loads slow. REAL SLOW. There has to be a better way.
Suggestions anyone? By the way, I'm not opposed to coding, it just
seems like this ... more >>
Foreign Languages?
Posted by UJ at 6/16/2006 9:41:05 AM
How do folks handle foreign languages? For instance - we would like to be
able to have a screen at the front of our app that will allow somebody to
choose French and then the entire site is in French.
What's the easiest way to do this? Have lookups for each text string on the
site or is the... more >>
ASP.Net Connection To MYSQL
Posted by Frank at 6/16/2006 9:07:02 AM
Hello, I am writing an ASP.Net (Visual Basic) application with a MYSQL backend.
I connect fine with the DataProvider and also ODBC. I Retrieve records with
no problem. I INSERT Records with no problem. The problem is that is is SLOW.
For example, to retrieve 4 records from the database table, it... more >>
DataBinder.Eval and Eval.
Posted by craigkenisston NO[at]SPAM hotmail.com at 6/16/2006 8:51:40 AM
In asp.net 1.x we used something like
DataBinder.Eval(Container.DataItem, "FieldName") for binding data.
Now, in asp.net 2.0 I see a lot of "Eval( fieldname )" and not the
older format.
I guess they are equivalent, but I can't find information about the
difference.
I suspect the new Eval doe... more >>
Could not load type
Posted by Thom Little at 6/16/2006 8:26:13 AM
I create ASP.NET 1.1 websites on localhost and check them out.
After compiling, I FTP the .aspx files to a directory on a remote host and
the .dll to the /bin directory on that same remote host.
For a very trivial application I have (a single label) this works correctly
on one remote server. ... more >>
Forced Column Widths in a DataGrid?
Posted by Alex Maghen at 6/16/2006 7:32:01 AM
Hi. Is there any way to lock down the width of columns in a DataGrid so that
even if the text in one of the rows of that column is very wide, it just gets
cut off or something rather than causing the column to get wider?
The problem is that even if I set the column to wrap text, sometimes a
... more >>
Is this so wrong?
Posted by Ethan V at 6/16/2006 7:23:38 AM
To optimize performance, I plan on putting any useful information for a user
in a session cache/variable. Our web server will have 2GB of memory to start
out with.
Since I will be very liberal in the amount of data I'll put in the session,
I know that will use lots of memory resource. But m... more >>
IEWC TABSTRIP don't' work when no applicationpath present
Posted by iltrex NO[at]SPAM libero.it at 6/16/2006 7:21:17 AM
I have one asp.net application that uses TABSTRIP.
It worked fine on all customers when published on urls like
http://server/application/default.asp
Now, one customer had published it, for its own reasons, on an url like
http://application.server/default.asp
TABSTRIPS no longer works:... more >>
How can I refeer to controls placed in TemplateField
Posted by odd.morten.sveas NO[at]SPAM accenture.com at 6/16/2006 6:55:50 AM
Hi
I'm building a web site where some users can create receivables
(invoices). This website will support several organisations and
different users migth have responibility for more that one
organisation.
My problem is when I'm buliding this receivables page. The receivable
are entered thro... more >>
DELETE MORE THAN ONE ROW OF DATAGRID
Posted by Charleees at 6/16/2006 6:41:20 AM
Hi all,
I have a DataGrid With Template Columns..
In the First Column i have a Check Box...
Also i have a Button Outside the DataGrid..Just Above it..
What i want to do is ....
I have to remove the Rows(Records) that are Checked in the Grid...
There may be more than 1 ChecBox Checked... more >>
How can I prevent Sessions from ending just because the browser window is closed
Posted by Christian Blackburn at 6/16/2006 6:18:50 AM
Hi Gang,
I would like to have my application retain sessions even after the user
closes their browser window, up unil the time the session is supposed
to time out. Right now if the user closes IE their session is
re-created. Is there any way around this?
Thanks,
Christian Blackburn
... more >>
Small business starterkit issues
Posted by Damian at 6/16/2006 4:29:01 AM
Has anyone on the team responsible for the smallbusiness starter kit every
ran this thing on anything other than the Visual Studio Development Server.
After spending time getting used to this kit and adding my pages to it (only
pages no custom code), I tryed deploying it to my hosting provide... more >>
IsCrossPostBack always return false
Posted by Lore at 6/16/2006 3:10:54 AM
I've been trying for a while, but unfortunately I can't get a
solutions, neighter I was able to find it in google.
In the CrossPostBack referred page the property IsCrossPostBack is
always set to false, while it should be set to true if the
CrossPostBack occured: is there anybody who can expla... more >>
.net framework
Posted by sangitaraj at 6/16/2006 1:57:59 AM
hello,
can a site developed in VS2005 run on .net framework 1.x.?
Please let me know.
thankyou,
sangitaraj
... more >>
Sessions Information
Posted by Coder at 6/16/2006 12:44:15 AM
Hello,
I am developing a dating site, What I am trying to do is;
When one of my members logins, should see how many users online, and should
see which users online when searching and listing other users..
I think I should work on "Session" and I must reach all the sessions
informations.... more >>
Database interactions don't fire from Application_Start in Global.asax?
Posted by Christian Blackburn at 6/16/2006 12:26:44 AM
Hi Gang,
Let me start by saying I'm using Visual Web Developer 2005 and ASP.net
2.0. Is there something I have to do to get my Global.asax fire when
my application loads. If I set a breakpoint nothing happens also I can
tell that it's not updating my database. I'm storing the users's
sessi... more >>
published website showing error
Posted by sangitaraj at 6/16/2006 12:12:28 AM
Hello,
I have created a website in ASP.net 2.0 and published it on the
webserver. The following error message is displayed.
Compiler Error Message: CS0246: The type or namespace name 'Utilities'
could not be found (are you missing a using directive or an assembly
reference?)
where utilit... more >>
WebResource.axd Errors
Posted by Graham at 6/16/2006 12:00:00 AM
I have a newly released web site that is throwing a few errors regarding the
WebResource.asxd handler.
I am not using this in any way for my own purposes, it is just getting
included int eh page via ASP.NET form validation scripts.
I have error reporting setup for this web site and have be... more >>
Dropdown list
Posted by Vikas Kumar at 6/16/2006 12:00:00 AM
http://www.persquareyard.com/
in the above site in Select Property dropdownlist we have headings like
Residential or Commercial which we are not able to select but can select
their sub categories only
like all things under Residential but not able to select Residential
how can we do this
i... more >>
Please help : WebParts won't show up in IE
Posted by Jurjen de Groot at 6/16/2006 12:00:00 AM
Hi,
I've been reading a book about webparts and am now trying some of the
examples from the book, but I crash on the first, most simple (following)
example :
I create a new website in VS2005
I add a WebPartManager to the default.aspx by dragging it from the toolbox
I then add a WebPartZone... more >>
|