Inline Calculations for Databinding
(1 messages)
Date: Mon, 20 Aug 2007 18:23:09 -0400
I have two fields in the Datatable that I am using as my DataSource that I
need to multiply together before displaying them. Here is the databinding
expressions from my ASPX file to display the fields separately:
'<%# ...
|
unbound controls in GridView
(2 messages)
Date: Mon, 20 Aug 2007 14:34:09 -0700
Hi,
I got a grid control, i bind it to a datatable, but it has some extra
fields, with textboxes, checkboxes, dropdowns etc (in a template
field) that are not bound. they are not auto-postback either. user
changes values ...
|
Namespace Declaration
(1 messages)
Date: Mon, 20 Aug 2007 13:26:02 -0700
I have a typed dataset that I'm returning from a webservice which has the
xmlns="SomeURI" attribute defined
My CLASSIC ASP front end developer can't get her xsl to work with that
namespace declaration so I'm trying to ...
|
Treeview - open node in new window
(4 messages)
Date: Mon, 20 Aug 2007 12:28:42 -0700
I have a treeview control that contains a bunch of pdf filenames. It
would like the files to open in a new window. Can anyone assist me in
doing that? The code I currently have is below:
Protected Sub tvDocs_SelectedNodeChanged(ByVal ...
|
Request.querystring problem
(2 messages)
Date: Mon, 20 Aug 2007 12:14:46 -0700
I have a generated email going to another person after they submit a
question. When you click on the email sent to the user it's not
getting the question ID. What am I doing wrong?
Here's the code behind page:
Protected ...
|
exclude obj folder in web install folder
(1 messages)
Date: Mon, 20 Aug 2007 12:14:02 -0700
using VS2005, web application projects, web deployment projects
My web installer builds from the output of the web deployment project. I
end up with the obj folder in my web site. How do I use an exclude filter to
stop ...
|
Generating projects roadmap on the fly in asp.net 2.0?
(3 messages)
Date: Mon, 20 Aug 2007 18:55:53 -0000
Hello,
First, please take a look at the following screen shot:
http://farm2.static.flickr.com/1226/1185331048_5d0b41e7f8_o.png
We are working on a web-based project management system for our
client. They would like ...
|
AssemblyInfo.vb
(2 messages)
Date: Mon, 20 Aug 2007 12:49:54 -0600
In a windows application, you have an assembly info with, for example, the
following information. How would you set these parameters in a web
application?
Imports System.Reflection
Imports System.Runtime.InteropServices
' ...
|
Event not firing
(4 messages)
Date: Mon, 20 Aug 2007 11:31:39 -0700
Hi,
I'm sure it's just something I'm not seeing but for some reason, an
event I have set up to be called when a combo box has been switched to
a new value is not being fired for some reason and I can't figure out
why. Below ...
|
Auto submit when pressing enter
(2 messages)
Date: Mon, 20 Aug 2007 17:49:58 -0000
Hi,
We have a internal site using Master Pages that has a header (web user
control) on top of every page with a search feature. This search is
basically a textbox and a search button beside it which works when you
click ...
|
|
question about conversion
(2 messages)
Date: Mon, 20 Aug 2007 19:41:20 +0200
Hi,
We use an english version windows server.
The regional setings are set to French (France).
Asp.Net renders and interprets the date correctly (dd/mm/yyyy). So does Sql
Server (date is saved in dd/mm/yyy format in datetime ...
|
How to dynamically add control to datagrid item template
(2 messages)
Date: Mon, 20 Aug 2007 10:36:05 -0700
I am trying to dynamically add a control within an itemtemplate container in
a gridview and need some assistance.
For example, my goal is to evaluate a column's value in a datagrid row and
depending on it's value dynamically ...
|
Converting VS 2005 Web Site Project to VS 2005 Web Application Project
(2 messages)
Date: Mon, 20 Aug 2007 17:23:33 -0000
I've recently attempted converting a small VS 2005 ASP.NET Web Site
Project to a Web Application Project using Scott's blog post:
http://webproject.scottgu.com/CSharp/Migration2/Migration2.aspx
This seems to be the best ...
|
ConfigurationPropertyAttribute.IsRequired Property
(4 messages)
Date: Mon, 20 Aug 2007 10:20:02 -0700
I was creating a Custom Configuration section in my web.config.
I noticed that if I set a property like:
[ConfigurationProperty("EmailAuthorizationFailures", IsRequired = true)]
<MySection
EmailAuthorizationFailures="true" ...
|
css & ajax
(2 messages)
Date: Mon, 20 Aug 2007 11:01:56 -0600
I get a lot of errors in my css files when I build a web project that uses
ajax controls. They seem to work fine, but it's a pain when I am debugging
and it always displays these errors. "Lemonchiffon" seems to be a common ...
|
what's wrong with this corde ?
(5 messages)
Date: Mon, 20 Aug 2007 12:01:10 -0500
Microsoft VBScript compilation error '800a0401'
Expected end of statement
/new.asp, line 43
fp_sQry="Select * From tblMatches Where( tblMatches.Date >=
DateAdd("m",-1,Date())) Order by tblMatches.Date DESC"
---------------------------------------------------------------------^
thanks
for ...
|
Windows and Forms Authentication
(2 messages)
Date: Mon, 20 Aug 2007 09:52:35 -0700
I am looking for a tutorial or code samples to create a cross between
Windows and Forms authentication. What we would like to do is utilize the
Windows authentication for loggin into an application, but be able to set
the ...
|
Remembering values between postbacks
(1 messages)
Date: Mon, 20 Aug 2007 12:49:25 -0400
I have 2 private variables in my class that I need to remember the values of
between postbacks (or actually callbacks, since I am using AJAX). I want to
avoid using session variables, if possible. Is there any other way ...
|
Setting Text of a button
(5 messages)
Date: Mon, 20 Aug 2007 09:28:03 -0700
Hello everyone,
i have a problem while setting the button text recently
for my case, i would like to set the text of the button on the aspx
page, i have write the code like below
<asp:button id="btn_submit" text='<%# ...
|
question about variable in session, viewstate ..
(11 messages)
Date: Mon, 20 Aug 2007 18:15:42 +0200
Hi,
when uing session("myvar"), or viewstate("myvar") or cache("myvar), are the
values always strings?
I mean:
dim dt as date
viewstate("test")=dt
.....
dt=vieswtate("test")
Does here occur a conversion first ...
|