all groups > asp.net > august 2007 > threads for wednesday august 8
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
Object DataSource parameters
Posted by thomson at 8/8/2007 10:50:47 PM
Hi ,
i have a function which takes object as a parameter
eg: getCustomers(Customer objCustomer)
i have a gridview which inturn calls a objectDataSource which calls
getCustomers(Customer objCustomer)
How ever i have to send some parameters like objCustomer.Custid=
Somev... more >>
date rendered differently on two computers with same regional settings
Posted by Mark at 8/8/2007 9:28:06 PM
Hi,
the same application runs independantely on two computers:
the first is an Windows XP prof. sp2 IIS 5.1, dutch version with regional
settings = French (Belgium). So the short date notation is e.g. 13/08/2007.
The date (datetime) in sql server installed on this computer is also
rendere... more >>
Datagrid blank on postback.
Posted by SatishPasala at 8/8/2007 8:44:46 PM
Hi
I tried all the things I know am out of ideas now. Can you guys help
me out with this?
I have 4 grids on a page with I load on the Page_Load event. One of
the grids has paging. When I move to different page on one of the
grids, all the other Grids loose data on on postback.
I am bindi... more >>
C# Code stops after Save as dialog is closed
Posted by GD at 8/8/2007 5:24:49 PM
Hi,
I have the following C# code in a page:
Response.ContentType = "APPLICATION/OCTET-STREAM";
Response.AppendHeader("Content-Disposition", "Attachment;
Filename=\"C:\\Download.txt\""
FileInfo fileToDownload = new FileInfo("C:\\Test.txt");
Response.Flush();
Response.WriteFile(fileToDownloa... more >>
Page not displayed with ie7
Posted by Ide at 8/8/2007 4:48:06 PM
Hi
I have a bug with some links on my website reposting the same aspx page with
some filters:
The filtered page is
--> correctly displayed using localhost with ie7
--> correctly displayed using a dev server with firefox
--> but not displayed using the same server with ie7 : in this case I h... more >>
Evaluate a software
Posted by Anonymous Last at 8/8/2007 4:45:57 PM
I need your help in evaluating a file upload software
called Dextupload Pro. Could any of you take a look
at it at www.dextsolution.com/us? Thanks and I appreciate
your comments.
*** Sent via Developersdex http://www.developersdex.com ***... more >>
Accessing Properties in masterpage from content file
Posted by Rick at 8/8/2007 4:34:30 PM
I am trying to access the properties defined int a masterpage from =
within a content page. the properties are not showing up when I try to =
access them from the content page.
Anyone have any suggestions?=20
MasterPage:
<%@ Master Language=3D"VB" AutoEventWireup=3D"false" =
CodeBehind=3... more >>
Validation Groups - Server side
Posted by Bill at 8/8/2007 4:26:03 PM
Ok, so I'm working through examples in the apress book "Pro ASP.NET 2.0 in C#
2005". The Validation groups example doesn't work the way I thought it
should. It consists of 2 textboxes and 2 buttons and 2 required field
validators. One set of controls is set to validation group "G1" and the
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Web Form and ADO.NeT Transaction
Posted by Lit at 8/8/2007 4:01:46 PM
Hi,
using ADO.NET 2.0, VS.NET 2005, SQL2005
I need to execute several Stored Procedures under one transaction. Can I
use just one command/transaction or have to use multiple ( then commit or
rollback all )
How does it work with ADO.NET
Ado.Tran
SP1 Called
loop
SP2 Call... more >>
[Newbie Problem] BC30311: Value of "TableCell' cannot be converted to 'Integer'.
Posted by DC at 8/8/2007 2:37:01 PM
Compiler Error Message: BC30311: Value of type
'System.Web.UI.WebControls.TableCell' cannot be converted to 'Integer'.
on line 63. while trying to write updates using a DataGrids Update method.
Source Error:
Line 61:
Line 62: 'Read in the values of the updated row
Line 63: Dim ID a... more >>
A question of design and architecture - a good group anyone ?
Posted by Bazza Formez at 8/8/2007 2:33:17 PM
Hi,
This is an off topic question... so sorry about that but I'm
desperate.
I am looking into designing a new system for a business. The nature of
the system will be different to others I have designed and built, and
I want to open up a discussion on possbile design solutions /
appraoches ... more >>
Problem sorting a Datagrid with Checkbox columns (checkboxes not following sort)
Posted by Scott at 8/8/2007 1:34:04 PM
I am trying to sort a datagrid which contains 5 checkbox columns. All
other columns sort properly except these 5 checkbox columns which dont
sort at all.
I am using ASP.NET 1.1 and this code is located in a user control.
The code snippet for binding the checkbox control is as follows and is... more >>
Going back to the same location on page after postback or reload.
Posted by mavrick_101 at 8/8/2007 12:48:13 PM
Hi,
I have a page and if a user posts back data the page would open at the top.
This is not a problem if the user was looking at the content on the top of
the page , but if the page is long and the user was at the bottom of the page
then it looks ugly.
Is there a way IE can go back to th... more >>
Sessions
Posted by JJ297 at 8/8/2007 11:58:21 AM
Can some one help me, I'm trying to carry
Session("GetPin") from my very first page (validate.aspx) to couple
of pages away called AddQuestions.aspx.vb.
I need to check the credentials then add the Pin of that person into
the database when someone clicks the submit button.
I have it plac... more >>
ASP.Net web admin error?
Posted by Derrick at 8/8/2007 10:54:43 AM
I have the asp.net web admin site setup on a box as a virtual directory, on
a box that does not have vs2005.
I can get to the home page of the admin site, can edit and save app settings
on the app tab, but when I go to the security tab I get:
The following message may help in diagnosing th... more >>
Code in Page_Load executes twice
Posted by David C at 8/8/2007 10:54:10 AM
I spent the last four hours trying to figure out why Page_Load would
execute twice. Even stranger was that everything within if (!
IsPostBack){....} executed twice as well. There is no rhyme or reason
for that.
Here is what I found out.
When you have an ImageButton with no ImageURL set, ... more >>
get data that fills a gridviewocontrol inside it (i'm extendig the gridview)
Posted by Sergio E. at 8/8/2007 9:56:24 AM
Hi, I'm extending the gridview control and I need the data that fills it
because I need get a subset of the results to do an operation.
Thanks!
--
Greetings,
Sergio E.
DCE2005 - 2*
--
Saludos,
Sergio E.
DCE2005 - 2*
... more >>
TreeView - re-ordering nodes client-side
Posted by Homer J. Simpson at 8/8/2007 9:53:11 AM
Hi all,
I'm relatively new to C#/ASP.NET 2.0 (or any .NET for that matter). I've
spent a few weeks working with server-side controls, but I've yet to do
anything client-side. I've now reached the point where I need to start
doing just this.
For one, I have tree control (programmaticall... more >>
web.config to hold control specific variables
Posted by mattgarvin NO[at]SPAM hotmail.com at 8/8/2007 9:22:46 AM
Hello,
my company hosts many websites, and we want to add a Feedback Form
(like "Contact Us") that can be re-used on all of them just by
"dropping in" a new directory containing the code. My boss told me to
make it as modular as possible, and to make it a control we can just
drag on to a page.... more >>
problem with .aspx.vb code
Posted by slinky at 8/8/2007 2:45:44 AM
I'm working on a problem with a form with 6 textboxes and a submit
button for adding data to an Access database.I changed a few things
and got it down to 1 error!. I have a Sub
Page_Load and a Sub btnAdd:
(It still doesn't like the 'SourceVersion' in the Sub Page_Load).
Also
I viewed the .aspx... more >>
how to get text of a control in itemtemplate of gridview
Posted by Dinu at 8/8/2007 2:27:01 AM
Hi
how to get text of a control in itemtemplate of gridview and
how can we access and set it properties dynamycally??
Thanks
... more >>
Gridview, paging and googlebot (and other spiders)
Posted by ewolfman at 8/8/2007 12:00:00 AM
Hi,
Recently we've hired professional SEO services to help up promote our
website. They claim that pages which contain ASP.NET's Gridview with
paging will not be scanned by the different spiders beyond the first
page, as the url of the page doesn't change (and should be something
like http://... more >>
GridView Question
Posted by Rob Meade at 8/8/2007 12:00:00 AM
Hi all,
In the past I've typically steered away from DataGrids and have just created
my own tables by programmatically adding rows/cells however yesterday I used
a DataView for the first time. Initially I was quite pleased with the
quickness in getting it to populate with my own collection... more >>
DropDownList Control problem
Posted by Mike at 8/8/2007 12:00:00 AM
Hi
I am using predefined membership and roles managemant approach
characteristic for framework 2.0
Basic idea is that we select some value from DropDownList which
represents a role and we get all users for selected role.
This works and that is not a problem.
Problem is in DropDownList co... more >>
|