all groups > asp.net > june 2004 > threads for tuesday june 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
Error: visual studio .NET cannot run/preview the offline web project ...
Posted by Nightdrive at 6/8/2004 11:48:01 PM
I have VS.NET 2003
It was working fine, but I had to uninstall/reinstall IIS due to some
wierdness (which it turns out was due to a zone alarm update, but I digress)
I've reinstalled the .NET 1.1 SDK, and still get the above error message
when I first try to View in Browser.
This project only u... more >>
BeginGetResponse - Different Behavior on Windows 2000 and Windows XP
Posted by Jim Davis at 6/8/2004 11:28:09 PM
I have an app that makes an async web request using
WebRequest.BeginGetResponse.
On windows 2000 and Windows 2003 it works without needing a
NetworkCredential object.
On Windows XP (dev box for several folks) it fails unless a
NetworkCredential object is supplied. The directory of the app be... more >>
model dialog box keeps refreshing its parent window.
Posted by Pikolo Mondo at 6/8/2004 11:11:02 PM
hello, i've got a child window which will refresh the parent window after it closes
heres the catch, if i use window.open() it works fine, but when i use window.showModelessDialog, the child window keeps poping up..
any idea?... more >>
When/Why to use Page.Bind
Posted by Anand Sagar at 6/8/2004 9:19:42 PM
The DataBind I understand is useful for binding data from datasources to
WebControls like dropdownlist, datagrid etc. usually during the Page_Load or
Page_Init
In what cases will anyone use a Page.DataBind ?
Thanks,
Anand Sagar
... more >>
<%=%> in asp.net
Posted by Guoqi zheng at 6/8/2004 9:03:36 PM
Dear sir,
In .asp, we can do the following.
<%
strWhatever = "here is some strings"
%>
<html><body>
<%=strWhatever%>
</body></html>
We can use <%=%> to write some html code, how can I do the same in ASP.NET?
Thanks in advanced.
Guoqi Zheng
http://www.meetholland.com
... more >>
RewritePath and Postbacks
Posted by Brad at 6/8/2004 8:48:28 PM
In a portal like application I'm using rewritepath to change from fake
friendly urls back to a central "default" page that actually serves all of
the urls. It works quite well, except... if the page has controls which
cause postback the "default" url is displayed. This makes sense looking at
... more >>
problems with " Page.GetPostBackClientHyperlink() "
Posted by Goethals Frederik at 6/8/2004 8:11:07 PM
hi,
I have a little problem with the function =
"Page.GetPostBackClientHyperlink".
First some description of my page:
It is a simple testpage for testing "selecting a row af the datagrid by =
clicking on the whole row". After some googling I thought I found a =
solution (see code below)
... more >>
DataReader + SQL + sortorder
Posted by Brent at 6/8/2004 7:37:34 PM
Curious little problem...
Suppose I have these fields in my table ("NameTable"):
FirstName LastName SearchTerms
Kathleen Smith Smith Kathleen
Gladys Lee Lee Gladys
Lee Burton ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Sharing variables between pages...
Posted by Asha Gill at 6/8/2004 7:11:02 PM
hello all
how can i share variables between asp.net pages without using the session or anything that has got to do with the global file. can i use properties for this? 1 page calling the other to accept the value
Asha Gill... more >>
Cookie doesn't work
Posted by zmj at 6/8/2004 6:34:13 PM
I have written the following code in 2 web pages using C#
code for page 1:
//...
HttpCookie mycookie = new HttpCookie("Member");
mycookie.Values.Add("MemberID","0001");
Response.Cookies.Add(mycookie);
Response.Redirect("page2.aspx");
//...
code for page2:
//...
HttpCookie mycookie = Re... more >>
textchanged event not firing
Posted by bill yeager at 6/8/2004 6:24:55 PM
I have two fields on my webform that I want calculated in
my code-behind, but as I type in the controls, the events
are not firing (as evidenced in debug mode).
<code>
Private Sub txtMileageBeginning_TextChanged(ByVal sender
As Object, ByVal e As System.EventArgs) Handles
txtMileageBegi... more >>
cannot fire up dropdownlist's SelectedIndexChanged
Posted by Daniel at 6/8/2004 6:05:40 PM
Is there any other way can override this event, like javascript onchange
added to the attribute of this dropdownlist?
Thanks
... more >>
datagrid header formatting
Posted by Amadelle at 6/8/2004 5:54:27 PM
I am using datagrid with templatecolumns.
for the life of me I can't figure out how to make the header row a =
different color than the rest of the tbl. in the datagrid. Ok let me =
rephrase that. I know how to set the header style background to a =
different color no problem, but the cellspac... more >>
asp
Posted by msnews.microsoft.com at 6/8/2004 5:40:09 PM
Hello,
I have two asp pages (A and B) to be run on the same server and from the
same client.
1. In the page A, a checkbox value (checked or not checked) can be
recognised in the following code :
If Request.form("CheckBoxName") then ....
However, in the page B, the same code rais... more >>
Changing an event from another page.
Posted by Parkos Totito at 6/8/2004 4:56:02 PM
Greetings
I've got this parent window which opens a child window, once the child window closes it refreshes the parent window. there is a panel control in the parent window which i'm using to hide some controls in there. what i'm trying to archive here is once the close button in the child window ... more >>
Saving a bitmap form a asp.net page
Posted by Mats Boberg at 6/8/2004 4:52:23 PM
Hi,
I have problems with saving a bitmap to hdd from my asp.net page
I get the following error: "A generic error occurred in GDI+."
Code:
Bitmap bmp = new Bitmap(240,120);
bmp.Save([path]);
/Mats.
... more >>
Encoding.Default and Encoding.UTF8
Posted by Hardy Wang at 6/8/2004 4:27:18 PM
Hi,
I have following code:
Encoding mode; // Encoding.Default or Encoding.UTF8
FileStream sb = new FileStream(fullPathAndFileName, FileMode.Create);
StreamWriter sw = new StreamWriter(sb, mode);
sw.Write(textContent);
sw.Close();
My question is under what situation, the saved files are diff... more >>
LinkButton click event in table
Posted by Grant at 6/8/2004 4:09:23 PM
Below is the code I am using to build the table using
system.web.ui.webcontrols.table. I am building a collection of link buttons
inside each cell. How do I know when the user clicks on the link button
because I do not have the click event? Thanks
Dim rowItem As TableRow
Dim cellItem ... more >>
Application location
Posted by freewonga NO[at]SPAM surf.to at 6/8/2004 3:48:19 PM
I am writing an .net assembly that can be called from a windows
application or from a web application and need to know the location of
the application that it is running under to be able to load an
initialisation file that may be above the application folder.
It should be the folder the applic... more >>
page formatting problem with tables and datagrids - especially printing
Posted by mark at 6/8/2004 3:47:14 PM
I have one page with a series of reports to be printed like :-
(bear with me ill try to explain the best i can!)
report one - checkbox1
report two - checkbox2
report three - checkbox3
and so on
finally a button to process the reports is pressed
which sends true for each report needed t... more >>
AppPool Recycle Failure
Posted by Pigglet187 at 6/8/2004 3:31:05 PM
I'm running a Server Farm of 5 presentation layer machines
There are 55 different apppools, each is dedicated to a single .net applicatio
Only approximately 10 are running at any time and 8 of those get enough traffic to never shut down
1 in an unknown number of app pool restarts, from both timed... more >>
DropDownList
Posted by Steve Caliendo at 6/8/2004 3:23:32 PM
Hi,
I'm having trouble with multiple dynamically generated dropdownlists. On my
web page I have several text boxes / labels / checkboxes and dropdownlists
I have no problem setting the other controls to display what I would like
them to, but the dropdownlist boxes are simply not working. ... more >>
using sqlserver to manage state
Posted by wardy1975 NO[at]SPAM yahoo.com at 6/8/2004 3:05:07 PM
I've got a .NET web application that currently uses session to
maintain state. I am just looking down the road and thinking of
scaleability and if I need to go to a web farm, then using "inproc"
for managing my session will no longer work. I've done some research
and read about how SQL Server ... more >>
PAGE_LOAD fired twice
Posted by RAJ at 6/8/2004 2:55:41 PM
Posting this thread again, can somebody please help me with this. Thanks.
This event appears to be invoked twice for absolutely no reason on only one
of my ASP.Net web user controls. Although I've now overcome the problem by
overriding the base classes OnLoad routine, I could never figure out w... more >>
Cannot use VS.NET
Posted by Grey at 6/8/2004 2:43:09 PM
I have installed VS.NET 2003 in PC and the application runs fine in the IE.
However, when I try to open the project in VS.NET, i got an error message
"Visual studio .NET has detected that the specified Web server is not
running ASP.NET version 1.1. You will be unable to run ASP.NET Web
applicati... more >>
Invalid cast from SQL to other server
Posted by John Howard at 6/8/2004 2:42:09 PM
Making the following call to a local MSAccess database works fine:
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
Dim intRows As Integer
Dim strSQL As String
Dim ds As New DataSet
' Create connection
Dim cn As New OleDbConnection
... more >>
request.servervariables collection
Posted by TS at 6/8/2004 2:16:46 PM
I seem to remember reading somewhere that accessing this collection is
expensive and you should avoid it if possible. Are there any alternatives to
the following:
Request.ServerVariables["SCRIPT_NAME"];
Request.ServerVariables["HTTP_HOST"];
Request.ServerVariables["HTTP_USER_AGENT"];
Req... more >>
Re field validation
Posted by News at 6/8/2004 2:15:08 PM
Hi,
I am new to asp.net and unfortunately, have to learn as I go.
Here is a "problem".
I have got two radio buttons No and Yes and text box that has to be fiiled
in only if Yes is clicked. How can I validate this?
Here is a code:
<asp:radiobuttonlist RepeatDirection=Horizontal RepeatLayo... more >>
OWC11 and asp.net
Posted by Ben at 6/8/2004 2:06:09 PM
Is is possible to have axes items that are hyperlinks?
... more >>
RegisterClientScriptBlock options?
Posted by Boban Dragojlovic at 6/8/2004 1:49:41 PM
Using Me.RegisterClientScriptBlock places the <script> up in the header of
the HTML
I heard there is another method you can call that will cause the <script> to
be placed at the end of the HTML document.
What is that command/option to do that?
... more >>
Using a db to share ASP session state var w/ ASP.NET page
Posted by VB Programmer at 6/8/2004 1:47:35 PM
I've read that you can save a session state variable created by an ASP page
into a db so that the value of the session state variable can be read/used
by an ASP.NET webform.
Question: Let's say the session variable is called "UserIsAdmin" and the
ASP page is the login page. When the person l... more >>
Thread was being aborted in Response.Redirect
Posted by GSK at 6/8/2004 1:46:15 PM
I am logging the following error when re-directing via Response.Redirect:
"Thread was being aborted
at System.Threading.Thread.AbortInternal() at
System.Threading.Thread.Abort(Object stateInfo) at
System.Web.HttpResponse.End() at System.Web.HttpResponse.Redirect(String
url, Boolean endRespo... more >>
Royalty Free Images
Posted by VB Programmer at 6/8/2004 1:36:44 PM
Where is a good place to get royalty free images for web pages?
I know Google/Images. Any others?
... more >>
Memory leak in ASP.NET web site
Posted by Jon Davis at 6/8/2004 1:31:23 PM
I'm reposting this because I really need some advice.
I have a web app that makes many queries to the database on every page. In
order to save development effort, I've consolidated all database querying to
methods in a single static class, so whenever I need data, I pass a SQL
string to a meth... more >>
Asynch processing in ASP.NET
Posted by Tim Marsden at 6/8/2004 1:18:58 PM
HI
Firstly, I am new to ASP.NET and struggling with the following concepts.
I have a win form which gathers information, eg date range , product code
etc. when I press a button, a request is sent to the server (using sockets)
after the request is complete, the server calls back the win form ... more >>
BUG: Response.Redirect causes premature session expiration when using cookieless sessions (.NET 1.1.4322)
Posted by Anthony Williams at 6/8/2004 12:56:23 PM
Hi gang,
This one looks like a bug :o(
As you may or may not know, setting session management in web.config to use
cookieless sessions causes the ASP.NET runtime to munge a session ID into
the URL, in the format http://yourapplicationpath/(Session.SessionID)/...
which saves numerous head... more >>
Another problem but WinForm in WebForm (ASP.Net) Problem Solved
Posted by Scott Meddows at 6/8/2004 12:56:05 PM
I found out that I had to add a code group for the URL to the server that contained the DLL.
Now, I want to set some properties on the control that is embedded in the web page. How do I set them? With VB Script? Any
examples?
Thanks
Scott
... more >>
Assigning value to null
Posted by Steve Caliendo at 6/8/2004 12:31:40 PM
Hi,
How do I set a variable to be null? I want to update a set in a database,
and in some cases I would like a particular field to remain unchanged, or
null. I'm building a query string based on an array, and so I would like to
set a(i,5) to be null.
Thanks,
Steve
... more >>
date format check
Posted by Ricardo Silveira at 6/8/2004 12:13:01 PM
I'm validating a text box using a Compare Validator Component with the
folowing properties:
Operator = DataTypeCheck
Type= Date
But the web application is validating an english format date (mm/dd/yyyy)
and I need to validate in a portuguese format (dd/mm/yyyy).
Any sugestion how to change ... more >>
Detect connection speed
Posted by DaveF at 6/8/2004 11:36:14 AM
Is there a way to do this, without browser Hawk? Does anyone have some code?
--
David
... more >>
Web.config Forms Authentication
Posted by David at 6/8/2004 11:31:13 AM
When using forms authentication on my asp web app, I get the following error
Parser Error Message: Unrecognized attribute 'loginURL'
Source Error:
Line 58: --
Line 59: <authentication mode="Forms" >
Line 60: <forms name="TBG_PDC_Auth" loginURL="Login.aspx" path="/" timeout="30" pr... more >>
How to address control within templated custom control from code behind
Posted by Earl Teigrob at 6/8/2004 11:30:08 AM
I have created a simple custom control that uses a table to create space
around its contents. The code in the aspx page is show below. My problem is
that the controls within the template can not be directly accessed from the
code behind. In the code listing below, trying to use "Literal1" contro... more >>
Why Page_Error can't catch an HttpRequestValidationException?
Posted by bondzhou at 6/8/2004 11:24:29 AM
I have the following code in Page_Error handler subroutine:
Exception ex =Server.GetLastError();
Response.Write(ex.Message);
Response.Write(ex.StackTrace);
Server.ClearError();
But it doesn't work when an HttpRequestValidationException occurs(I input a
html tag into the TextBox... more >>
question reagrding dropdown list option values
Posted by Sean at 6/8/2004 11:20:21 AM
HI There,
I would like to find out the syntax for having option values different from
the ones displayed on the page? In regular HTML the forms are like
<option value=1>New South Wales</option>, how can I acheive this in asp
..net?
Sean
!---
<ASP:DropDownList id=lstRegion name=lstRegi... more >>
System.Drawing.Printing for web form?
Posted by angus at 6/8/2004 11:12:08 AM
Dear All,
I knew that if i want to make some printout in window form, i can use
"System.Drawing.Printing" namespace.
Is it possible to use this namespace in web form in asp.net?
Thank you
Regards,
Angus
... more >>
How to create Arrays of textboxes?
Posted by Sean at 6/8/2004 10:41:28 AM
Hi There,
I am making the transition from asp to asp .net, I would like to create a
page with an array of textboxes and collect the values. Could someone help
me out with a little code?
1. I need to create an array of textboxes, what the best method to do this ?
2. How can I collect informa... more >>
SSI Hierarchy and Implementation
Posted by WebGuyBob at 6/8/2004 10:41:09 AM
Hi, folks.
It seems like everything I've been reading indicates that I cannot "Include" a *.aspx file located in a higher level directory from that of the calling page's directory...even if I use an absolute path (from docroot):
Page location:
/products/documents/Default.aspx
Include file loc... more >>
Upgrading Asp 1.0 to Asp 1.1
Posted by Earl Teigrob at 6/8/2004 10:40:55 AM
I develope at my work using IIS 5.0, Visual Studio.net 2003 and the .NET
Framwork v1.1
On my home computer (with no internet access at the moment) I have the same
configuraiton but when I tryed to compile my code from work on the home
computer, it gave me a message that the existing code had b... more >>
Localization toolkit
Posted by gjcrooks NO[at]SPAM accesswave.ca at 6/8/2004 10:38:08 AM
I'm having the sam problem as described below with the Localization
toolkit. Does anyone know if there is a solution to this problem.
--->When attempting to generate resource dlls with
--->LocalizationManagement.exe, I get an exception:
--->Unable to generate loose file resources
Gord... more >>
multiple forms on one page
Posted by TJS at 6/8/2004 10:36:35 AM
what are folks doing to get around limitation of one server form per page ?
... more >>
Set Focus in EditItemTemplate text box...
Posted by Colin Basterfield at 6/8/2004 10:24:53 AM
Hi,
Is there a way to set the focus onto a text box that I have set up in my
EditItemTemplate, so that the User can just start typing once they they have
selected to Edit?
Many thanks in advance
Colin B
... more >>
Forcs download file to Temporary Internet Files
Posted by Norton at 6/8/2004 10:06:38 AM
Hi all,
I would like to know if there is any method in asp or asp.net to direct the
browser to download a file into the Temporary Internet Files directory so
that i can make use of vb script to do the further process
ie. tells IE to download my desired Word File into the Temporary Internet
... more >>
still puzzled
Posted by Daniel at 6/8/2004 10:05:06 AM
I double click on the dropdownlist box and see the code goes into that
selected_index event of the dropdownlist. And it still not fire up.
Thanks
... more >>
Email from ASPX project failing ...
Posted by Chris Marsh at 6/8/2004 9:56:13 AM
Help...
I am receiving this error "550 5.7.1 Unable to relay for
synergytestacct@yahoo.com" when I try to send outside email directly from
the website project. Keep in mind this works fine for local addresses
within our domain but it is failing for outside address such as the example
above. ... more >>
cannot fire up selectedindexchanged of the dropdownlist
Posted by Daniel at 6/8/2004 9:50:47 AM
I have a user control, a dropdownlist in it. I set autopostback="True" and
OnSelectedIndexChanged="onSelect".
In the code i have onSelect event, but just cannot fire it up?
Need help,
I appreciate in advance!
... more >>
Problem with HTML help file generation
Posted by Paul at 6/8/2004 9:46:01 AM
Not sure if this is the correct place to post the problem, but trying to use the HTML help workshop and trying to create the index file automatically. Anyhow I get the error below
HHC5003: Error: Compilation failed while compiling index.hhk
Thanks Paul
... more >>
Reference a Label in a Repeater?
Posted by Tom Kaminski [MVP] at 6/8/2004 9:35:09 AM
On my code behind page, how can I reference a Label control that's included
in a Repeater?
In other words, given:
<asp:Repeater id="Repeater1" runat="server">
<HeaderTemplate>
<table>
<tr>
<td><asp:Label ID="Label1"
runat="server"></asp:L... more >>
Server control frame location
Posted by rkmoray NO[at]SPAM aol-dot-com.no-spam.invalid at 6/8/2004 9:26:16 AM
I have 4 server frames, that depending on what is selected in a
radiobuttonlist, I want displayed. They are all to be in the same
position.
I want to keep a consitant look to the form, no matter which radio
button is selected. How do I set the xy axis on the control?
I tried using a server tabl... more >>
Recommendations on menu controls
Posted by VB Programmer at 6/8/2004 9:18:36 AM
Any good, free, menu controls for ASP.NET you can recommend? Flyout menus
would be nice.
Thanks.
... more >>
DataGrid template column help!!!
Posted by X-Men at 6/8/2004 9:07:19 AM
I am adding a CheckBox / CommandButton into the header row of a DataGrid
Template Column and want to make the CheckBox / CommandButton respond to
click event as they usually do. But soon I find once these controls are
binded to a template column, Visual Studio no longer supports the event
handli... more >>
Using tables to structure webpage
Posted by VB Programmer at 6/8/2004 9:01:44 AM
Any good links, tips or advice on how to use tables to structure the layout
of a webpage?
... more >>
Trouble getting the ASP.NET error page to appear remotely
Posted by John Lundrigan at 6/8/2004 8:39:42 AM
I have been developing a web application on a local host and then
using 'Copy Project' to copy all the files up to the ISP location.
When I run the application locally then all is OK. When I run the
application from the ISP site I get an runtime error.
Because the default page does not givem ... more >>
Execution order of Validation Controls
Posted by Bijoy Naick at 6/8/2004 8:26:31 AM
I have 3 labels called eventDate, eventStartTime and eventEndTime.
I have 3 validators as well. One checks to make sure that a date is
specified (RequiredFieldValidator), the other makes sure that the date
is valid (CompareFieldValidator) and the third (a custom validator)
makes sure that the ... more >>
Need to get my site listed with search engines, where do I start?
Posted by Charlie NO[at]SPAM CBFC at 6/8/2004 8:00:15 AM
Thanks!
Charlie
... more >>
dell axim and IsMobileDevice
Posted by johnlcox at 6/8/2004 7:11:05 AM
I am developing an intranet site and I would like to make it available to mobile devices without the full feature set, so that it is easier to navigate on the mobile device. Most of our employees that have mobile devices have dell axims. I have a dell axim 3i to use for testing. The code: if(Requ... more >>
how to let web user control inherits the webpage ?
Posted by Tee at 6/8/2004 6:26:20 AM
Hi,
how to let web user control inherits the webpage that holding the user
control ?
as 1 class only can have 1 inherits, anyway to do this ?
I am using VB.NET.
Thanks,
Tee
... more >>
How secure is forms authentication?
Posted by Ali Hadid at 6/8/2004 6:21:03 AM
Hi
I was wondering if with forms authentication, it is possible to deny access to the files that are not of the .aspx type.
Thank you for your help
Ali... more >>
Can trusted_connection, use a different user than ASPNET?
Posted by Flavio at 6/8/2004 5:21:06 AM
I can't use ASPNET user, is there any way to maipulate the system to connect with a different user on a trusted connection
Falvi
... more >>
How do you connect to SQL server using SQL users with Windows Auth? help
Posted by Reza at 6/8/2004 5:16:05 AM
Hello
I am trying to resolve this for a week and pretty much tried everything, Windows authenticatio, Forms authentication, none of .net, but still get a message of. Login failed for user, 'username'.
I am able to connect with the same user but with SQL Authentication access, but this is not an o... more >>
can we make a long statement become short by pre-declare it ?
Posted by Tee at 6/8/2004 5:01:54 AM
Hi,
my question is as the topic, can we make a long statement become short by
pre-declare it.
sorry if you can't understand what I asked, as I am not too sure how to ask
it, but below is the example of what I want.
I want just type "Connection", and it will same as "Oledb.OledbConnection",
... more >>
Crystal Report -Web Application
Posted by Baren at 6/8/2004 4:36:02 AM
Hi! All.
I have developed a .NET web application setup and it has reporting using Crystal Report. Do i need to have a Crystal Report Licensed version on web server where i am going to deploy the same applicatio
Thanks
Baren... more >>
Do we need to have a database class for a website that always access to db ?
Posted by Tee at 6/8/2004 4:26:50 AM
Hi,
I am currently creating a website that will access to db a lot, currently I
am using MS Access as the database.
will there be any benefits to use a database class ? if yes, where can I
find a database class sample that suit to use with MS Access ?
thanks,
Tee
... more >>
aspnet user missing
Posted by Pooky at 6/8/2004 4:21:04 AM
I want to be able to add the standard aspnet user as a database user, but it doesn't exist.
The box is windows 2000 advanced server running SQL Server 2000 with vs.net 2003 installed.
Surely vs.net 2003 would have installed this user wouldn't it
I can connect using sql server authentication, but... more >>
Formatting Dropdownlist Items
Posted by BlueFrog at 6/8/2004 4:11:30 AM
Hey,
I have dates in a databound dropdownlist that I want to format. I suspect I
need to use the ondatabind event but I've no idea as to how to pull this off
having searched high and low for related code examples - anyone got any
clues?
BlueFrog
... more >>
Running server-side code from a javascript click event
Posted by ~J~ at 6/8/2004 3:56:03 AM
Hi everyone
I'm positive this is possible, just never needed it until now and I don't have a clue where to start
I have an XML document that is attached to an XSL style sheet, within this XSL there is some javascript commands that are attached to certain HTML controls
What I want to do is when... more >>
dynamic color schemas with ASP.NET
Posted by Oleg Ogurok at 6/8/2004 3:32:21 AM
Hi all,
In my web application, I'm trying to allow users to customize colors by
choosing schemas. I would also like to allow them to modify schema values.
I've decided to store the color schemas in DB. Now I'm trying to find a good
way to apply the schema values from DB onto the page controls ... more >>
interacting windows application
Posted by laxmi at 6/8/2004 2:36:05 AM
i have files having extensions .txt,.doc,.jpg,.cst etc. in datagrid with full qualified path.i want to open the file for view and edit in their respective application from a button in aspx page.plase help me to solve the problem
thanks... more >>
Web UserControl and Visual Inheritance
Posted by Ben Fidge at 6/8/2004 2:00:04 AM
Hi
I have a situation where it would be very advantageous to
be able to derive a new web UserControl from an existing
one, making the bases server controls available to the
derived class (and therefore, visible to the user).
I know how to derive from a base class so that common
code is... more >>
Cannot package webcontent
Posted by Tom at 6/8/2004 1:26:03 AM
Hi
I built a C# web application and need to package it to an exe file.
I selected dll and content files. It shows an error when I build the deployment project
Error: Cannot build project output group 'content from webapp (Release .NET)
How should I package it
In fact, it can package all dl... more >>
how to hide auto generate columns in datagrid?
Posted by Hanson at 6/8/2004 1:03:57 AM
I have a datagrid control in an aspx page. The datagrid columns will be
dynamically generated according to the pre-page's search condition, I want
to hide some columns in the datagrid. is that anyway to do that?
... more >>
Building Menu from DB
Posted by Tim::.. at 6/8/2004 12:16:05 AM
Hi can someone please tell me how I dynamically create a menu like the one shown below from a database. I want to create a loop that loops through all the records in a table and builds a table similar to the menu shown below
I would be grateful if you could give me a ny assistance with this
Than... more >>
Starting a process within an ASP.NET web from
Posted by Thomas Wenzl [MVP] at 6/8/2004 12:13:02 AM
Hello,
Initial situation:
- ASP.NET application.
- Users upload a file
- that file has to be converted into another file format using
a unmanged application that uses a lot of COM components
What has already worked?
- Upload works
- starting a process, generating a file, download, etc. ... more >>
|