all groups > asp.net > november 2005 > threads for saturday november 12
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
2 forms on a page?
Posted by Frank Rizzo at 11/12/2005 11:18:49 PM
Basically I want to have a form on the master page that can be
"submitted" and a form on the regular page that's dependent on the
master page. Can this be done in ASP.NET 2.0?
Regards... more >>
GridView Filtering
Posted by Oscar at 11/12/2005 9:48:02 PM
I am using a DropDownList control poplulated from an SQL database to filter
rows in a GridView control. On itnitial page load, I want to find a way to
display all the rows versus only those rows that meet the "default value"
critieria. I tried to set the default value using a wildcard charac... more >>
Adding external data into database data before it is sent to Control (Repeater, Datagrid, etc.)
Posted by Neo Geshel at 11/12/2005 8:33:32 PM
I am looking to add additional data into a "stream" that has been=20
extracted from a database, but before it is sent to a control (Repeater, =
in this case).
I have found ZERO (0) articles about this on the Internet. Anyone care=20
to point me in the right direction? I am not looking for co... more >>
session Problem
Posted by sri at 11/12/2005 6:51:19 PM
Hi, I have Login page (login.aspx") and after entering into inbox by giving valid userid and password the session item is userid and password. In inbox page ("inbox.aspx") i have logoff button and the code in the button is sessions are null and it redirects to login page. Before clicking the logof b... more >>
Gridview Event Procedures
Posted by Sheldon Penner at 11/12/2005 11:14:03 AM
My ASP.Net 2.0 application uses a GridView control containing a template
consisting of a checkbox and a Text property that I use to store a value to
pass to a SQL statement in the OnCheckChanged event, whose code is as follows:
If sender.checked = True Then
insVal = "'" &... more >>
Session Madness
Posted by Mr Newbie at 11/12/2005 10:46:46 AM
I have written a Custom Control Menu. Its fairly simple but it works well
enough. In order to simplify things I decided to store the Menu1 custom
control in Session. In the page load event below, it retreives the Menu
from session and assigns its reference to Menu1.
Within the Page_Load e... more >>
server side controls disabled in javascript
Posted by CsaaGuy at 11/12/2005 8:28:55 AM
I have a requirement to disable some textboxs depending on their
contents. I choose to do this by invoking some javascript. When they
change the contents, i disable the textbox they just put new data into
and focus on another textbox.
My logic works fine, the textboxes get disabled.
However... more >>
Help with DataSet return values
Posted by Rob at 11/12/2005 8:24:12 AM
Hi,
I've been going at this for a few days and can't see the problem. Does
anyone see a problem with this code?
I have a call to a function that returns a dataset and when I assign
values to session variables, the values are the actual column names and
not the database value. I've tried using o... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
User control event problem
Posted by Rob Morgan at 11/12/2005 7:42:18 AM
I have a grid and a user control on the same page. The user control has a
save button that triggers a click event server side. Once the click event
happens the page renders, but I need to update the grid information before
it renders. Once a conrol's event finishes is there a way to run a meth... more >>
PlaceHolder Question
Posted by Oren at 11/12/2005 7:35:03 AM
hi,
How can I retrieve the Control (wucState.ascx) from the Placeholder at the
even: btn_Click:
//declaration at page
protected wucState WucState1; -- my control
....
private void Page_Load(object sender, System.EventArgs e)
{
....
WucState1 = Page.LoadControl("wucState.ascx") as wucState;... more >>
RE: Test if Session is Set on Web Service
Posted by Jeff User at 11/12/2005 7:22:02 AM
John
Thanks for the info. I have read this article, but it still has not
solved the problem, entirely. I added (EnableSession=true) to my
WebMethod attribute as shown:
[WebMethod(EnableSession=true)]
And, as stated in the article, hitting this service url from the
browser, getting the te... more >>
format groups of data in dataset
Posted by Miro at 11/12/2005 6:56:04 AM
Hello!
I would like to show some results from a competition on a website, looking
something like this:
Age Group 35:
Name1, result1...
Name2, result2...
Age Group 40:
Name1, result1...
Name2, result2...
....
Is there a simple way to format a dataset that looks like:
<row>
<... more >>
Imagebutton click event
Posted by akis at 11/12/2005 6:43:04 AM
Hello,
I have a loop e.g.
for(i=0;i<10;i++)
{
ib = new ImageButton();
}
and all i want is to know which imagebutton the user clicked and populate a
textbox
how could i do that?
thanks in advance,
akis
... more >>
Web Config File Editing in ASP.Net 2.0
Posted by Stuart Ferguson at 11/12/2005 3:26:13 AM
I am attempting to put a screen in a web application that allows editing
of AppSettings values in the Web.Config file using the Web Configuration
manager class however on he .Save i get an access denied exception.
What could be causing this exception and what should i be looking at to
fix the... more >>
Precompile using ASP.Net 2.0 and VS 2005 ?
Posted by Mike Owen at 11/12/2005 1:50:07 AM
Hi,
I am trying to pre-compile a project prior using ASP.Net 2.0, VS 2005, to
putting it onto a live server.
The reason for doing this is that other people have access to the server,
and I thereofre want to keep the code secure.
If I use the 'Build/Publish Web Site' option, it asks me t... more >>
ASP.NET threading questions
Posted by hahaha at 11/12/2005 12:45:18 AM
Hi,
I think I am a little bit confused about how the threads from thread
pool handles asp.net request.
If in a Windows 2003 IIS 6 environment, I know the inetinfo.exe is
droped and the http.sys is queuing the request. and then handled by
w3wp.exe. My question is for all the w3wp.exe processes... more >>
Grid headers in a div
Posted by John Wilson at 11/12/2005 12:00:00 AM
My app produces some long datatables to display in a grid. So I put them in
a div so users can scroll. But the grid headers scroll out of view. I would
like to stop them doing this. Can I fix them in place at the top of the div?
--
John Wilson
... more >>
Partial class : where is the other parts?
Posted by Michael at 11/12/2005 12:00:00 AM
Hi,
After creating a new Web site, there is a Default.aspx and
code-behind file Default.aspx.cs.
The class in the code-behind file is declared with partial:
public partial class _Default : System.Web.UI.Page
{
.....
}
It means the code is just a part of the class definition,
but where... more >>
generate thumbnail on the fly
Posted by Øyvind Isaksen at 11/12/2005 12:00:00 AM
Hello!
Does anyone know about an ASP.NET thumbnail script that generate thumbnail
with MAX quality?
Have tested some scripts, but the thumbnail is not getting as good quality
as I need.
This is the best result I have got so far:
Original picture: http://www.kromogkubikk.no/custom/artimgs... more >>
Binding a typed dataset to a GridView [2.0]
Posted by Markus Palme at 11/12/2005 12:00:00 AM
Hi NG!
I've created a typed dataset by dropping a table from the server
explorer to the dataset designer. I bound this DataSet to a GriedView
using a ObjectDataSource. The data is being displayed correctly.
I encounter now a problem with editing the data. Not all columns are
displayed, o... more >>
Html page to master page
Posted by John at 11/12/2005 12:00:00 AM
Hi
I have an existing layout in the form of an html page. I need to turn this
into a master page. Are there any step by step instructions to do this eg
how do I turn specific areas into master page elements etc.?
Thanks
Regards
... more >>
|