all groups > asp.net > may 2006 > threads for monday may 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
Good news to all those who are seeking for job in dotnet(Only those who are leaving in Hyderabad -India)
Posted by BinnuChowdary at 5/1/2006 10:24:28 PM
Very Good news for all freshers and especially those who want to shift
to Dotnet Technologies
We have established an Training and Development Center Named Z-Axis
Technologies in Our City at KPHB, Hyderabad.
Early Birds get exclusive benefits like training Material, Project
guidance etc
Batch S... more >>
Need some advice on what tools to use for web development.
Posted by johannblake NO[at]SPAM yahoo.com at 5/1/2006 10:22:16 PM
First off, I am NOT a beginner. I have lots of experience developing
professional web sites and am a professional software developer.
Unfortunately I've been out of web site development for the past 2
years but would like to get back into it. What I need is some advice to
get me up-to-date on wh... more >>
TextChanged vs. [Button] Click Event
Posted by Robert W. at 5/1/2006 7:03:01 PM
I'm new to ASP.net programming so excuse my ignorance if the following
question seems overly simplistic.
I've created a simple Login form with 3 primary WebControls:
- A TextBox for the Username
- A TextBox for the Password
- A Button labelled "Submit"
If the user enters a correct user... more >>
<a name="xyz"/> 'obsolete'?
Posted by Alex Maghen at 5/1/2006 6:33:01 PM
The editor says that when using <a name="xyz" />, the "name" element is
"obsolete" but it doesn't suggest a replacement. What's wrong with <a
name="xyz" /> to set a page anchor?... more >>
Response.Redirect as "END"
Posted by Alex Maghen at 5/1/2006 6:31:01 PM
Does a call to Response.Redirect result in an immediate exit from the current
page function (i.e. a "return()")? I want to make sure that the statements
after the Response.Redirect() do not get called.
Alex... more >>
Client Side Confirmation on DataGrid "Delete" LinkButton
Posted by Alex Maghen at 5/1/2006 6:30:01 PM
I have a DataGrid control with a LinkButton command column that deletes the
row. What I want to do is set it up so that there's a client-side Confirm
alert BEFORE the actual Delete command gets called on the server-side. That's
easy to do with normal buttons, etc. as follows...
<asp:Button ... more >>
Getting to the ClientScript object from another C# Class
Posted by Alex Maghen at 5/1/2006 6:28:02 PM
I want to create a C# class where I'll have a bunch of static functions which
will use the ClientScript object to dump out some JavaScript dynamically.
But I can't figure out how to get a hold of the "ClientScript" object in
those other classes. I guess it's that I have to get the current Pag... more >>
Temporary ASP.Net files Access Denied
Posted by Chris Newby at 5/1/2006 6:15:03 PM
After googling this I got lots of information and tried a few different
things. However pages for a particular site are still consistantly failing
with "Access Denied to C:\ ... \Temporary Asp.Net ... bla bla bla".
Specifically, I created an Asp.Net application on a new 2003 server. It
work... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
HtmlInputFile change caption
Posted by PawelR at 5/1/2006 5:53:01 PM
Hello,
I have question about HtmlInputFile.
How change caption in HtmlInputFile from "Browse ..." to other?
THX
PawelR
... more >>
Dynamic SQL handling, and edit-grids?
Posted by topmind at 5/1/2006 4:44:58 PM
I am generally new to dot.net, coming from "scriptish" web languages
such as ColdFusion and Php.
I have a few questions if you don't mind.
First, how does one go about inserting dynamic SQL during run-time
without lots of quotes? For example, adding "AND" clauses that may or
may not be pres... more >>
dotnetnuke experience
Posted by dmm at 5/1/2006 4:15:37 PM
hi all,
I am completly new to the world of ASP and am after some advice.
I have been given a requirements document that reads suspiciously like a
portal solution with added bells and whistles. I have heard good things of
dotnetnuke and I wanted your thoughts on it such as:
-Cost/benefit... more >>
Dynamically add a asp:checkbox in a table.
Posted by UJ at 5/1/2006 2:56:33 PM
I have a table that I need to manually generate based on stuff in the
database. I build the actual table string and stuff it into an asp:panel. So
far it works fine. I'm now trying to add a checkbox to each cell so that
whether it's selected or not.
Problem is, I set the code in the cell du... more >>
Closing a web page
Posted by WhiskyRomeo at 5/1/2006 2:46:02 PM
I am using the following code to open another .aspx page
function viewCart() {
window.open('ShoppingCart.aspx')
}
The above function is attacked to the onClick event of a button.
However, when I use following code attached to a button on the newly opened
page, it just reposts. Basical... more >>
getting rid of html table
Posted by rodchar at 5/1/2006 2:20:02 PM
hey all,
imagine this 1 row 2 col html table1. in that table1 col 2 has another html
table2 with 3 rows and 1 col. for table1 col1 i have a picture bound to it
and the 3 rows just has text stuff. i have this inside an item template of a
datalist? is this effiecient as it can get for gettin... more >>
Any good ASP.NET 2.0 blogs available?
Posted by VB Programmer at 5/1/2006 2:11:25 PM
Any good ASP.NET blogs available for ASP.NET 2.0? (Configurable or sample
code.)
... more >>
Storing/passing variables
Posted by Carly at 5/1/2006 2:00:56 PM
Hi,
I work in Visual Basic .NET 2002 using ASP.NET.
I am wondering what would be the best way to store/pass variables
between pages.
(Sessions are sooo simple to use but I hear they are not the best....).
Having a class with static parameters????
Having a class that all the pages inherit???
... more >>
bind TreeView to ObjectDataSource and dynamically load data without postback
Posted by codefragment NO[at]SPAM googlemail.com at 5/1/2006 1:24:18 PM
Hi
Tried to get a fairly long but exact subject there?
I've got working code that uses PopulateNodesFromClient=true and adds
nodes using
the server without refreshing the rest of the screen, but can I do the
same thing but using an
ObjectDataSource. I don't know how to attach the 2 in terms ... more >>
Running Stored Procedure in a Loop
Posted by Jerry at 5/1/2006 1:15:04 PM
I'm trying to execute a stored procedure in a loop while paging through
database table records but the stored procedure isn't running. I get
the folowing error: The component 'adodb.connection' cannot be created.
Apartment threaded components can only be created on pages with an <%@
Page aspcom... more >>
Viewing Who is online
Posted by yossimotro NO[at]SPAM gmail.com at 5/1/2006 1:05:31 PM
Hi guys,
I'd like to add a feature of viewing who is online to my website.
Right now whenever a user logs on to my website I create a Session
variable for him containing his ID.
I'd to have some ideas on how to do it.
Thanks,
Yossi.
... more >>
How to retain dynamically created web server control - help !!
Posted by sydney.luu NO[at]SPAM gmail.com at 5/1/2006 12:57:54 PM
Hello All,
I am programmatically building a table on my web page with one row and
two columns. The first column contains a web server checkbox
dynamically created and the second column simply contains text of
whatever I put in. This is running fine. If I check the checkbox, how
would I che... more >>
Generating Page_xxx events
Posted by fix at 5/1/2006 12:51:09 PM
Hi all,
I am just wondering if there is a way to generate Page_xxx events
automatically instead of typing it in the code-behind file manually. For
the controls on a webform, I can select them, then click the event
button in the property window, then all the events are for me to select
and... more >>
NGENed assembly in shared hosting
Posted by Peter Zolja at 5/1/2006 12:27:38 PM
I use a third party for hosting; and the only way I can update my site is
with FTP. To make the site faster I was wondering if I could somehow NGEN
the generated assemblies (2.0 BTW) and use those to run the site via shared
hosting. Right now I believe the NGENed version is placed in the GAC. ... more >>
server controls in app_code.
Posted by motorhead_maniac at 5/1/2006 12:00:17 PM
anyone,
how to reference server controls (without .ascx) that are in the
app_code folder.
The msdn documentation talks about dropping them in and using Page
section of web.config to add and specify Namespace , but iam not able to
figure out their Namespace
Many thanks
... more >>
ASP.NET Application Deployment to web site other than the default
Posted by tshah at 5/1/2006 11:02:02 AM
We have an ASP.NET application for which we created a set up program using
DOT NET Setup Wizard. However, the set up programs installs the application
on the Default web site only.
Does any one know, how to deploy the application other than the default web
site?
Thanks for your time.
... more >>
Access Virtual Directory.
Posted by j_stus NO[at]SPAM hotmail.com at 5/1/2006 9:24:26 AM
Hi there,
I created virtual directory on IIS.
Alias Name = "ABC"
Then I created simple web site which has just one button.
When clicking on that button following code is executed:
Dim myFile As StreamReader = File.OpenText("/abc/MyFile.txt")
Dim line As String = myFile.ReadLine
... more >>
Javascript Question
Posted by Joey at 5/1/2006 9:21:55 AM
I have a third party menu server control. I want to be able to plant
"__doPostBack('MyControlName',' ')" into the NavigateURL property of it
to force a postback when it is clicked. On the server side I have made
a code block named "protected void MyControlName_Click()" But when I
run the page an... more >>
User Control and Variable Question
Posted by David Hearn at 5/1/2006 8:54:13 AM
I am creating a user control for use on several of my pages. I have some
variables that are set on my pages where the user control will be used. I
need my user control to automatically be able to pick up on these variables
and read the values out of them when it is placed on one of these pages... more >>
VS.NET 2005 Beta 2 expiration.
Posted by Alex D. at 5/1/2006 8:52:50 AM
Today my beta version expired whitout warning. My question is: after today
will be possible to install the beta 2 versions or it was intented to work
JUST until today??
Thanks,
Alex.
... more >>
2 questions
Posted by CSharpguy at 5/1/2006 8:19:01 AM
I need to create a text file from my web page, BUT the data in the text file
will be inputed on my web form, so how can I create a text file to look like
the web form?
example:
FileName Date(20060401) 100
20060101 BMW 45,202 5000USD
01END (number... more >>
Deleting "Read Only" files
Posted by James at 5/1/2006 8:14:43 AM
Hello,
Whenever I try to delete a Read Only file using FileInfoObject.Delete I get
"Access to the path "File name and path" is Denied" error. This does not
happen with other files. Any ideas? Thank you.
... more >>
Namespaces not found
Posted by tshad at 5/1/2006 7:36:06 AM
I am trying to create a class for my Authentication and want to add it to
the HTTP pipeline. But when I create my project and build it I get the
following errors:
The type or namespace name 'Web' does not exist in the class or namespace
'System' (are you missing an assembly reference?)
The t... more >>
checkbox
Posted by reg at 5/1/2006 7:34:50 AM
hi , i=B4m new in the world of vb.net. I=B4m using sql server, vb.net
language: my problem is : i have a table "Test" with "Text and Sure"
as row. "Sure" is a bit value. how do i insert "Sure" in the database
with the insert command in vb.net?
Thanks
... more >>
blasted tables by html
Posted by rodchar at 5/1/2006 7:01:02 AM
hey all,
for an html table what property do i need to changed so i can get my columns
the width i specify. everytime i change one column another colum resizes
itself. anyone know of any basic articles i can reference?
thanks,
rodchar... more >>
Dataset or datasource control?
Posted by Jason James at 5/1/2006 6:21:36 AM
Hi all,
Having moved from dotnet V1.1 to V2 I am having some difficulty
understanding the new data access methods that seem to be preferred.
In V1.1 the dataset did everything that I needed, and now it seems that
the preferrence is the datasource control! aaarrrrgggg!
I have followed sever... more >>
Good news to all those who are seeking for job in dotnet(Only those who are leaving in Hyderabad -India)
Posted by BinnuChowdary at 5/1/2006 5:10:24 AM
Very Good news for all freshers and especially those who want to shift
to Dotnet Technologies
We have established an Training and Development Center Named Z-Axis
Technologies in Our City at KPHB, Hyderabad.
Early Birds get exclusive benefits like training Material, Project
guidance etc
Batch S... more >>
WebPartManager set SelectedWebPart in EditMode
Posted by milmus tender at 5/1/2006 4:26:02 AM
Hi,
I use the WebPartManager technology of ASP.NET 2.0 without sharepoint.
I want to set per server side code a webpart as editable.
I´m able to set the webpartmanager in edit mode. Than each webpart gets a
new verb called 'Edit'. When the user clicks to the verb in the browser of a
webpar... more >>
ASP .NET Admin Tool Timed out
Posted by sebnunes NO[at]SPAM hotmail.com at 5/1/2006 3:29:06 AM
Hi all,
I have a strange behavior with the ASP .NET 2.0 Admin tool.
When I click on ASP.NET Configuration in VS 2005 the Administration
intro page displays correctly but when I click on any link "Security",
"Application" or "Provider" the message "Tool as timed out" appears.
I can't find ... more >>
Weird problem with HTML Tables in ASP.NET 2.0
Posted by steve_barker333 NO[at]SPAM hotmail.com at 5/1/2006 2:46:49 AM
Hi guys,
I'm just in the process of converting a site I'm writing from ASP.NET
1.1 to ASP.NET 2.0. Of course, there are lots of new features that are
going to save me a lot of time, but at the moment I'm wasting a lot of
time trying to work out why a simple html table that worked fine in 1.1
... more >>
Posting files
Posted by dana lees at 5/1/2006 12:00:00 AM
Hi,
I am writing a C# asp.net application.
How can i post files to a web page? Can you please show an example?
I have 3 input files:
for example - <input type="file" size="40" id="file1" runat="server">
and a "load" button:
<asp:imagebutton id="btnLoad" Runat="server"
ImageUrl="..... more >>
|