all groups > asp.net > november 2007 > threads for thursday november 15
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
How to repeat header of HTML/Gridview across pages
Posted by Girish at 11/15/2007 11:59:00 PM
Hello All,
I am displaying a report in a gridview and also in a separte html table.
When the user clicks a print button, I print the report (from gridview or
from html table). But I want to repeat the gridview's header and the html
table header row in all printed pages.
The print for grid ... more >>
Freelance ASP.NET developer needed in Israel
Posted by Polaris431 at 11/15/2007 11:48:44 PM
Company: Mobilgistix Ltd.
Required: Freelance ASP.NET developer in Israel
Description:
Help required to complete the development of a new web/PDA
applicaton used in healthcare. Initial contract for 4-6 weeks.
Possible full time employment in near future.
Requirements:
3+ years experience ... more >>
Please help explain what an "application instance" really is in terms of static data
Posted by Dave at 11/15/2007 8:02:00 PM
I have a global.asax file with Application_Start defined and create some
static data there and in another module used in the asp.net application and
I realize that static data is shared amongst child apps of an IIS
application and can be used by multiple users during the application life
cyc... more >>
vista starter edition
Posted by Nick Chan at 11/15/2007 7:09:57 PM
hello, does anyone know if vb.net 2005 + sql 2005 express can be
installed on vista starter edition?... more >>
Define Control ID (TBody)
Posted by shapper at 11/15/2007 4:21:41 PM
Hello,
I am creating a table at runtime. How can define the table's TBody ID?
I need to get something as follows:
<tbody id="itemContainer" runat="server"></tbody>
Thanks,
Miguel... more >>
Table
Posted by shapper at 11/15/2007 4:19:21 PM
Hello,
What is the difference between creating a table using:
System.Web.UI.HtmlControls.HtmlTable
or
System.Web.UI.WebControls.Table
Which one should I use?
Thanks,
Miguel... more >>
ImageButton does not trigger Repeater.ItemCommand event
Posted by Nathan Sokalski at 11/15/2007 3:47:21 PM
I have an ImageButton inside a Repeater control. However, the ImageButton
does not trigger the Repeater's ItemCommand event. For the moment, I am
nesting an Image control inside a LinkButton, which works, but requires more
work and 2 controls. I believe the reason for this is that the ImageBut... more >>
Lingering Idle Oracle Connections? Persistent connections?
Posted by jobs at 11/15/2007 3:19:34 PM
I've got an asp.net 2.0 site with class methods that pop in and out of
Oracle as follows.
Function GetNewOrderId() As Integer
If p_cnn.State = ConnectionState.Closed Then
p_cnn.Open()
End If
Dim cmd As New OracleCommand
Wi... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Detect When a Control Gains Focus
Posted by StinkyDuck at 11/15/2007 3:12:50 PM
Is there a way to detect when a control gains focus on a webform? Say I
have two text boxes. After the user types in information on the first text
box and hits the tab key or clicks on the second text box, I want to
automatically fill in the second text box with the information from the
fi... more >>
Datagrid Headers
Posted by Chris Newald at 11/15/2007 2:50:26 PM
Hello,
I have a simple gridview with one column on a web page. I need to be able to
set the column titles ("Header Title" below) programatically. How would I
do this easily in C#? I tried inserting an ASP Label but I cannot get the
FindControl to work for the Header Template.
<asp:Data... more >>
mobile devices
Posted by Roger at 11/15/2007 2:46:40 PM
Hi All
Anyone have any ideas how I could display table like lay out on a mobile
device, as mobile devices do not support tables
Thanks
Sorry if this is in the wrong group but this seems to be the best palce to
get any kind of answer
Roger
... more >>
Gridview: waiting after click
Posted by gianfranco dalfiume at 11/15/2007 2:31:26 PM
Hi all, i'm new to this newsgroup.
This is my problem: i have a form with a GridView. The first column of the
grid is a ButtoFields (image type) column, with some code to manage the
request for the click (it computes a long, time consuming query). I need to
put something to tell the user that... more >>
.Net Framework 2.0 exception kill application pool
Posted by Emmanuel Verlynde at 11/15/2007 2:15:02 PM
Hi all,
I have some troubles with my website build with combination of asp.net and
asp pages.
Sometimes, application pool restart and kill all my asp (classic) session
variables.
I see into the computer events manager this message:
Application : Error :
EventType clr20r3, P1 w3... more >>
Serializing an object from a DLL
Posted by Harry at 11/15/2007 2:14:03 PM
I am using SQL to hold session state. My problem is that I have an object
that I want to store in Session State. I can not mark the class it comes from
as Serializable because it is from a DLL that I do not have the code for.
There must be an easy way to do this I just can't figure it out.
... more >>
Response.Redirect causes an exeception
Posted by Waldy at 11/15/2007 2:11:21 PM
Hi there,
I have a very simple three page web application that I am
having trouble with. If there are any problems with any of the parameters
that are passed to the first page, I want to redirect to an error page and
display a message. However, when I call Response.Redirect, I ... more >>
if Dropdownlist Contains entry
Posted by jobs at 11/15/2007 1:45:47 PM
How can I condition if a dropdownlist contains a value?
this clearly don't work.
If ddl.items.FindByValue("RT-RECHARGE") Then
Do i have to loop through it?... more >>
TFoot
Posted by shapper at 11/15/2007 1:45:19 PM
Hello,
Can't the table control render with THead and Tfoot?
Thanks,
Miguel... more >>
Distribute ASP.NET Ajax Extensions with a site?
Posted by parsifal at 11/15/2007 1:42:34 PM
Hi everyone,
I recently signed up for an ASP.NET host. I can publish my site to
it, but the server doesn't have the ASP.NET Ajax Extensions
installed. Is there some way I can distribute the Ajax Extensions
with my site?
Thanks,
Sean... more >>
Converting Web Site to Web Application (AJAX web service goes missing)
Posted by Lloyd Sheen at 11/15/2007 12:41:50 PM
I have just completed (almost) an exercise to convert a web site to a web
app (acedemic reasons - just to see the differences).
A few bumps on the road such as copying class files to the new solution and
wondering for a while why the classes did not show up. It was because the
properties f... more >>
Refresh button
Posted by SimonZ at 11/15/2007 12:13:06 PM
When user insert some data on page and click save button this data is
inserted to database.
If he clicks refresh button, the data is saved again each time when he
clicks this button.
I would like to prevent refresh from that page, so I inserted the following
lines in code behind on page_... more >>
How to retrieve raw HTTP Post Data
Posted by manheim@gmail.com at 11/15/2007 12:11:25 PM
I have a page posting a raw jpg to me via HTTP POST. All reference
I've found is centered around retrieving POST data as name/value pairs
which will not work in this situation.
What I need to do is retrieve the raw POST data and save it as a
jpg.
Here is some php code that does the same thin... more >>
DropDownList BackgroundColor not set
Posted by Cliff Cotterill at 11/15/2007 11:17:29 AM
I've tried multiple ways of setting the background-color of a DropDownList,
but none seem to work.
How can the color be set?
I've tried setting the BackGroundColor of the DrowDownList component, and
also setting it for each of the List Items.
The resulting .html code looks correct. Why doe... more >>
ASP.net newbie - Insert records
Posted by M. Ali Qureshi at 11/15/2007 10:47:40 AM
Hi,
I am very new to .net and sorry if my following question is a bit stupid...
I've been watching alot of video tutorials on asp.net, which are very good
to get started.
Most of these videos are build around the standard controls of .net (grid
view with editing, or form view etc etc..).... more >>
Problem with optimistic concurency - What's going on here?
Posted by B. Chernick at 11/15/2007 10:11:00 AM
Ok, I'm out of practice in web work, I've never done any webwork in 2.0, and
I have to come up with a VB/Dot Net 2.0 web site in a week or two. Business
as usual.
First, I know I can't trust Visual Studio to create the correct Update
statement so every update string has to manually updated.... more >>
Vista & Visual Studio
Posted by at 11/15/2007 9:45:55 AM
Does anyone know which edition of Vista you have to buy if you use Visual
Studio and probably will upgrade to Visual Studio 2008? Is the Ultimate
edition necessary, or will the home or business edition work just fine?
... more >>
Exception when opening file from web service
Posted by Tenacious at 11/15/2007 9:28:53 AM
I have a simple asp.net web service that is trying to create or open
an existing file in the same directory as the web service. There is no
password authentication required for this web service. In the
web.config file I have set authorization to <allow users="*" />. I
have also tried <allow user... more >>
Create Code
Posted by shapper at 11/15/2007 9:12:15 AM
Hello,
I need to create a code at runtime:
<table>
<thead>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Title</th>
<th>Address</th>
<th>City</th>
<th>Postal Code</th>
... more >>
New to asp.net need help with state
Posted by plurt@hotmail.com at 11/15/2007 8:15:38 AM
I am new to asp.net and need to learn it for a small intranet
application for work.
I have an application that needs to keep track of the users that are
online and was going to use the application state for storage (I only
expect about 10 users at a time)
My question is for the Application ... more >>
Messy TreeView Results
Posted by pbd22 at 11/15/2007 8:10:11 AM
Hi.
I am getting odd treeview results and hope you can help.
I am parsing a string, "x/y/z", turning it into an array (that
always seems to start with an empty string) and then
using the elements of that array to populate a single tree.
The first non-empty element is the root, the last is a... more >>
PasswordRecovery issue
Posted by paul.haines@wcbs.co.uk at 11/15/2007 8:04:48 AM
Does anyone know how to change the current mode in the
PasswordRecovery control?
I have an instance on the "login.aspx" page and, after the user has
successfully had their password emailed to them I was hoping I could
re-set it back to the "enter username", (or "enter password answer" as
the ... more >>
global.asax Application_Error not firing on forced exception??
Posted by jobs at 11/15/2007 5:02:27 AM
I'm forcing an error/exception in one page as follows
Protected Overrides Sub OnLoad(ByVal e As EventArgs)
Dim badthing As New Exception("XXX")
Throw badthing
End Sub
And attempting to set a session variable to that error in the
global.asax file as follows:
S... more >>
|