|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ASP.NET Developmentmicrosoft.public.dotnet.framework.aspnet
What is the Equivalent of the CurrentRowIndex Property for a DataGrid Web Control?
.NETn00b -
26 Nov 2005 8:02 PM - 2 messages
I am trying to convert the following windows app method, to use in an ASP.NET application: private void DataGrid1_CurrentCellChanged(object sender, EventArgs e) { int c = DataGrid1.CurrentRowIndex; DataGrid1.Select(c); DataGrid1_Click( sender, e); ...
Regular Expression Help (URL Rewriting)
Will Chamberlain -
26 Nov 2005 6:25 PM - 3 messages
I'm working on a URL rewriting engine at the moment and would like to make it more dynamic. I am doing this via Global.asax and as of now I have to manually write the URL's one-by-one. I am wanting to use a RegEx ...
control events
simon -
26 Nov 2005 6:00 PM - 2 messages
In code behind file in Visual Studio 2003, you could select object in left combo box and see all methods and events on right combo box. For example if you had selected dataGrid on the left ,you see the events on ...
Don't Understand error
Wayne Wengert -
26 Nov 2005 5:06 PM - 3 messages
I am using a Gridview in an ASP.NET 2.0 (VB) application. In a hyperlink template column I want to build a url wich includes passing a couple of query strings that I need to populate dynamically. When that code is as shown here - it works fine: ...
Web Development articles - where can I find some?
Emu -
26 Nov 2005 3:16 PM - 5 messages
I'm looking for articles on web development. Can anyone please point me in the right direction? Thanks. ...
Multilanguage calendar...
Stu -
26 Nov 2005 1:46 PM - 4 messages
Hi, I am nearing the end of a multilanguage conversion and have just come across a page which has a calendar control on it that needs translating. The current language of the site is stored in a session variable as we need to ...
DataGrid Pagin Problem
alexmaster_2004 -
26 Nov 2005 12:39 PM - 2 messages
Hi there my problem is with datagrid pagin.when i try to add the pagin feature to my datagrid i get a strange behavior. i will explain in details: i wanted to allow pagin in the datagrid so i have put AllowPagin property = ...
Application and HashTable
RicercatoreSbadato -
26 Nov 2005 6:45 AM - 2 messages
Can I put in the context Application an HashTable? I always see only strings..but I'd like to put in an HashTable, how can I do it? ...
Strange Behavior ASPnet_Wp.exe
thomson -
26 Nov 2005 5:09 AM - 2 messages
Hi all, i have opened my application and did some work, i could see i the task manager the Mem usage is 76,476K, I closed my application and made sure that no instance of .net is running, but when i saw that ...
How and when should I use CacheItemPriority.NotRemovable?
Michael -
26 Nov 2005 4:29 AM - 3 messages
Hi, I wrote the code to test how CacheItemPriority.NotRemovable works: Cache.Insert("Time", DateTime.Now, new System.Web.Caching.CacheDependency(Server.MapPath("Test.txt")), System.Web.Caching.Cache.NoAbsoluteExpiration, ...
Rols/rights in asp 2.0
John -
26 Nov 2005 1:24 AM - 2 messages
Hi I would like to use the aps.net 2.0 built-in user roles/ rights and personalisation/profile mechanisms but concerned that some web hosts may not allow Form authentication mode as opposed to Windows authentication mode. Is this concern justified? ...
Where to store User Controls in ASP.NET 2.0?
Michael -
26 Nov 2005 1:11 AM - 2 messages
Hi, Should User Controls be stored in App_Data folder in ASP.NET 2.0? Is that like a best practice? Thanks. ...
Deploying ASP.NET 2.0
Kevin -
26 Nov 2005 12:40 AM - 3 messages
Hi, Hope someone can help us with this problem. This is our first endeavour into .NET 2.0 :-) BACKGROUD INFO: ---------------------- We've built a website using .NET 2.0 and deployed onto our webserver. This webpage simply calls some web services (built with .NET 1.1) running on the ...
## in ASP.NET 2.0
Michael -
25 Nov 2005 11:48 PM - 5 messages
Can you point me to some info about this apparently new feature of ASP.NET 2.0? In an ASPX file, for example, you can have ## I haven't been able to find any info on that in the help file or online. ...
Open and read/write ASPX file
David Lozzi -
25 Nov 2005 11:28 PM - 3 messages
Howdy, Trying to open and read/write another aspx file from my aspx page. Basically I want to be able to update my aspx files from the website. Here's my code so far: Dim path As String = Server.MapPath("tester.aspx") ...
Tabel cells
Jim McGivney -
25 Nov 2005 11:05 PM - 2 messages
On an aspx page with C# code behind, I need to place information with extensive formatting (positioning). I believe that a table will serve my needs the best. I am not sure how to specify the row and column numbers ...
how to parse deeper nested tags in custom control
SEB -
25 Nov 2005 10:43 PM - 3 messages
can any one please redirect me to how to use control builder class to parse the following case (or any other method) <mycustomcontroltag> <item attribute1="x" attribute2="y" ......> <subitems> ...
TreeView problem
christof -
25 Nov 2005 9:45 PM - 5 messages
It'll be really easy...Sorry for that question: I've got a MasterPage <%@ Master Language="C#" ClassName="MasterP" %> and some slave.aspx.<%@ Page Language="C#" MasterPageFile="~/Master1.master" AutoEventWireup="true" CodeFile="ShowDatabases.aspx.cs" Inherits="ShowDatabases" ...
Sorry for asking, Outlook Express related question only
Edwin Knoppert -
25 Nov 2005 9:31 PM - 3 messages
Please forgive me, i can't solve it. How will the newsreader put the topics in a tree again. Somehow i demolished a setting and all messages are now in date/time order but not in a branch. Thanks! OE v6 ...
Problem migrating Web Project from ASP.Net 1.1 to 2.0
Felix -
25 Nov 2005 8:49 PM - 2 messages
Hi everyone. I had a web site developed in asp.net 1.1 wich is already in production. I'm trying to migrate the project to framework 2.0 Initialli I had the following error during the compilation: "Error 72 The type 'nTime.Xnoopy.Server.WebServices.Global' is ambiguous: it ...
Forms authentication with images on the login page
Brian Muth -
25 Nov 2005 8:40 PM - 3 messages
I'm pretty new to the ASP.NET world, and would appreciate some advise regarding Forms authentication. My login page has some GIF images which I'd like displayed. However, because I haven't logged in yet, the GIF images are blanked out, unless I explicitly ...
Accessing session from thread
John -
25 Nov 2005 7:07 PM - 3 messages
Is there a safe way to gain access to the session object from inside a spawned thread, in ASP.NET? I'm familiar with the principle of creating a data storage object, passing a reference to the thread, and then adding the object to the session. But this ...
Odd behavior in 2005 with base page classes
craig.wagner -
25 Nov 2005 6:55 PM - 3 messages
I have converted two ASP.NET 1.1 applications to ASP.NET 2.0. Each one had some odd results, most of which I've been able to address. I'm looking for some confirmation/advice. Both applications use a base page class inherited from ...
ASP.NET does not honor Title nor Javscript options
Benton -
25 Nov 2005 6:08 PM - 5 messages
Hi there, I have a child webform (with a ASP.NET calendar control) that opens in a javascript popup window when I click a button in the caller form. Child page has a <title> tag, and javascript window open options dictate "statusbar=no" ...
Conditional directive
Simon -
25 Nov 2005 5:02 PM - 3 messages
Hi, Is possible to use a conditional directive to build a special version of asp.net 2.0 web application ? Thanks Simon. ...
ASP.NET 2.0 Frustration - MS Please Help
scorpion53061 -
25 Nov 2005 4:57 PM - 10 messages
I have a request of Microsoft and I hope they see this. I use Visual Studio 2005 Pro and WIN XP Pro with IIS 5.1 I have spent the better part of the last 2 weeks attempting to get my ...
multi-column dropdownlist
Mike P -
25 Nov 2005 4:12 PM - 2 messages
Can anybody recommend a free multi-column dropdownlist control? Thanks, Mike *** Sent via Developersdex [link] *** ...
Web.Config file seems to be ignored
Bill Long -
25 Nov 2005 4:08 PM - 5 messages
Hi, I have a situation like this: wwwroot has a web.config file that adds a custom http module <httpModules> <add name="MyModue" type="MyType,MyAssembly" /> ...
Wizard Control
TC -
25 Nov 2005 4:07 PM - 4 messages
I there any way to make the nex button on a wizard control the dafault when the user presses the enter key in a textbox inside a wizard page? I need to get this functionality. TIA! ...
Q: moving project folder
JIM.H. -
25 Nov 2005 3:50 PM - 2 messages
Hello, I work both home and work and I need to move my project folder from on server another. Each time I copy over files and try to debug the code it says “unable to start debugger on the serverâ€. If I create a new project and ...
custom control client values gone with postback
Pipo -
25 Nov 2005 3:48 PM - 4 messages
Hi, I'm trying to make my own web custom control. I've made a control with 2 textboxes and 1 dropdownlist. But when I enter values in them and get a postback the values are gone. How can I hold the values typed in by the client?? ...
http 1.1/ 403 access forbidden after framework 2.0 installed
Chris -
25 Nov 2005 2:54 PM - 3 messages
Hi, I have multiple asp.net projects on my development machine. Visual Studio 2003 Framework 1.1.4 I installed the VS 2005 Express and Framework 2.0. Now these asp.net sites will not load. the visual studio pops up a message ...
How to receive keyboard input?
FabFreddy -
25 Nov 2005 2:44 PM - 4 messages
Hello, I'm writing a ASP.NET application. A applicatie that first was written in Basic and now i'm writting it in VB.NET, but I have one huge problem. I don't know how to get keyboard input. The basic application was ...
DataGrid Nightmare
Mr Newbie -
25 Nov 2005 2:38 PM - 3 messages
I am trying to use the in place edit in Datagrid, however, I am experiencing a problem which probably has a simple solutions so I thought I would ask you guys. I have a Grid bound to a DataSet table which works OK, I have an Edit column ...
About KB Article 831150
Buddy -
25 Nov 2005 2:13 PM - 3 messages
Hello, Microsoft states in there article KB831150 that for error highlighted in bold for 'View State error message after you apply this hotfix' that the status is set to 'Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section. ...
Bind DropDownList to XmlDataSource
Thor W Hammer -
25 Nov 2005 1:51 PM - 3 messages
Is it possible?? ...
User Right configuration in asp .net deployment project
fhranck -
25 Nov 2005 1:40 PM - 2 messages
Hello, I need some confirmation for a IIS ASP .net project If in IIS I configure the site with window integrated authentication only no anonymous And in web.config I set Impersonate = "true" When the user will connect to the server the current thread will get the ...
How to change LabelText in DataList
Mirek Endys -
25 Nov 2005 12:55 PM - 2 messages
Hi all, I thought, that this is an usual thing, but Im wrong. I have a DataList control and there is a Label control. I need to change the Text propertz of the Label control. How to do it. Here is my function I want to use, but it is not working. I can Find Label ...
Data Access Layer
Jono Jones -
25 Nov 2005 12:51 PM - 5 messages
Hi there, Could you point me to a good resource for creating my data access layer? I have my database, I have me front end, but I want a nice layer between them so I can just call functions in my code behind to return me a list etc or the ...
Web Projects in VS 2005
TobyRiley -
25 Nov 2005 12:31 PM - 3 messages
I was reading the post from Scott Guthrie’s site [link] regarding sub webs and I have a question. When I originally set up ASP.NET to use a modular ...
Reports navigation
David Dvali -
25 Nov 2005 12:16 PM - 2 messages
Hello. I have web for with report (Crystal Reports) which contains on demand subreports. My question is: How can I go back to main report from subreport? Thank you. ...
Drag drop in web forms
narula.amitsk -
25 Nov 2005 11:35 AM - 3 messages
Hi All, I am need of drawing Ellipse/rectangle on a web page. user would select ellipse/rectagle , the string to written in it & rownumber , column number. I want to do this on fly, and save all the ellipse /rectangle drawn ...
reading the session inside a Dll project using asp.net 1.1
Loui Mercieca -
25 Nov 2005 11:08 AM - 3 messages
Hi, I have 2 web projects in asp.net 1.1. They are 2 different applications but have some common processing. I would like to create a dll file which takes care of all my logic and so centralizing the proccessing. The problem is, ...
Mouseover, mouseout, click etc on datagrid.
johnnydublin -
25 Nov 2005 10:50 AM - 2 messages
Hi there, Does anyone know of a way that I can specify javascript functions that are to be run when a cell is clicked, mouse over etc in a datagrid without attaching the function to every single cell? I have a diary view with resources across the top and times down the X ...
Consuming less memory when writing a file?
W. Jordan -
25 Nov 2005 9:43 AM - 8 messages
Hello, I am using Response.WriteFile (filename) to write a file that on the server to my web client. I discover that the while a client request a big file, for example, a 14m-bytes one, the memory usage of the ...
XML/XSL transform problem
Lasse Edsvik -
25 Nov 2005 9:43 AM - 2 messages
Hello I was trying to do this example shown here: [link]\Xml2.aspx&font=3 When I run it I get 3 warnings and nothing shows in the browser, what might ...
How to redirect output from Diagnostics.Trace to Page.Trace?
Matthias S. -
25 Nov 2005 9:42 AM - 2 messages
Hi everybody! Is there a way to redirect the Standard Trace Output (written through System.Diagnostics.Trace) so that it shows up in the trace of the page (if not disabled?). Thanks a ton. ...
run asp.net without a web server
sms1973 -
25 Nov 2005 7:46 AM - 5 messages
I have an ASP.NET application that I need to package and ship on CDs to run on Client machines without a web server. I read a few topics here that made it sound possible. Someone actually referred to an article in MSDN Magazine October 2002 edition, but I ...
Application and Session state stored in SQL Server
Michael -
25 Nov 2005 6:47 AM - 3 messages
Hi, I know how to store Session state in SQL Server, but I'm not sure if the Application state is also stored in SQL Server. There is a table named ASPStateTempApplications in tempdb database, but it seems useless. I say this ...
Cannot display Chinese data from database
Jason Chan -
25 Nov 2005 6:43 AM - 2 messages
Some chinese characters data (in Big5 encoding) is stored in database. I tried to display the data in an aspx but the characters cannot display correctly. I tried anything I think is related: - Setting the charset, codepage of the page ...
Visual Web Developer Express How do I build Code-behind into DLL in bin folder
teliot -
25 Nov 2005 6:04 AM - 8 messages
I'm just starting to use VWD Express. Supposedly, if I use a separate file (code behind) for my web forms, it should build them into a DLL into the Bin folder. However, no bin folder was automatically created ...
User Control: Dynamic Properties!!
Adam Knight -
25 Nov 2005 5:20 AM - 2 messages
Hi all, I have just tried to assign the properties of a user control dynamically in the following way: <% If Not(Request.QueryString("lvl2") Is Nothing) Then %> intStandardID='<%# Container.DataItem("standard_id")%>' Runat="Server"/> <% ElseIf Not(Request.QueryString("lvl3") Is Nothing) Then %> ...
A translatable website
Bob -
25 Nov 2005 4:57 AM - 5 messages
I want to make my website translatable in different spoken languages, such as English and French. I'm thinking of storing each display string in one XML file: <string00000001> <english>Hello</english> ...
Cannot POST to .XML page
clevrmnkey -
25 Nov 2005 3:55 AM - 2 messages
I am trying to post some data to an XML page which is controlled by SQLXML and returns XML from a stored procedure. However, when I build the post request within ASP.NET and point it at the page it gives me a ...
ASP classic -> ASP.NET 2.0
Bob -
25 Nov 2005 3:29 AM - 4 messages
In classic ASP, I used to keep a constant file that contains site configuration settings. For example, Const SITE_BACKGROUND_COLOR = "#909090" Const APPLICATION_NAME = "My Financial Site" Const UPLOAD_DIRECOTRY = "C:\uploads\" And then I'll include this constant file in all of my classic ASP pages. ...
specifying a query string in an href dynamically
Robert Rotstein -
25 Nov 2005 3:14 AM - 2 messages
I have a control that looks something like this: <asp:DataList ... > <ItemTemplate ... > <table> <tr> <td image src='... <%# DataBinder.Eval(Container.DataItem, ...
Disabling Link Button Column in Datagrid
pradeep_TP -
25 Nov 2005 3:11 AM - 3 messages
Hello world, I have a simple datagrid on asp.net web form , in which I am showing a single button column called EDIT. The code in the .aspx files for the same is as below. <asp:ButtonColumn HeaderText="" ButtonType="LinkButton" Text="Edit" ...
Connecting to Active Directory through ASP.NET Web form
multisync -
24 Nov 2005 11:37 PM - 3 messages
Hi guys, I'm very new to Asp.net. All I want to do is have a asp.net webform using VB, where I can enter a computer name in a textbox then click submit and have it return the following attributes from AD: ...
Problem Running ASP.NET/ASP App Under VS 2005
craig.wagner -
24 Nov 2005 10:00 PM - 3 messages
I took an application that we have that is part ASP, part ASP.NET, and migrated it to VS 2005. The migration worked okay, it's trying to run it where I am having some challenges. When I open the application in VS 2005, I can open it one of two ways ...
Downloading file from database
Jeremy Chapman -
24 Nov 2005 9:24 PM - 5 messages
I have build a web page that lists files in a database. When the user clicks on the file the page streams the file contents to the browser with code like: Response.AppendHeader("Content-Disposition","attachment;filename=" + strFileName); Response.AppendHeader("Content-Length",lLength.ToString()); ...
An Exception 'System.StackOverflowException' has occured in /LM/W3SVC/1/Root/...
HyVong -
24 Nov 2005 8:43 PM - 2 messages
Hi Everyone, please help, i'm very frustrated because i can't run my application. I built my application using the .NET Installer, i ran the installer on the development machine and it sets the iis and everything is running ...
How to add a small HTML table under a row of a GridView
onearth -
24 Nov 2005 8:11 PM - 27 messages
Hello I already managed to add a dynamic DetailView under a row of Gridview if a user presses the row with the mouse... Is it possible to add under it a table(or even better load a simple HTML file that contains the tables).. not a detailview like I already ...
Source Control Products???
Spam Catcher -
24 Nov 2005 7:29 PM - 6 messages
Hello Everyone, Can anyone recommend some VS.NET source control products for both ASP.NET and VB.NET development? SourceGear Vault Visual SourceSafe 2005 Subversion CVS Anything else you guys recommend? I'm looking for a product that was built primarily for VS.NET. Subversion ...
Application["TotalPlayings"]++ doesn't work
farmer -
24 Nov 2005 5:25 PM - 7 messages
Compiler Error Message: CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement And: (int)Application["TotalPlayings"]++; Makes no sense. ...
Collections
Luca -
24 Nov 2005 4:45 PM - 3 messages
Hi, does exist a collection in which store more than one value for every key? Example: key --- values ---------------- key_A1 -- value_A11, value_A12, value_A13, ... key_A2 -- value_A21, value_A22, ... ..... I don't need a jagged array. Thanks in advance, Luca ...
how load one frame before another in aspx page
Lady -
24 Nov 2005 4:30 PM - 4 messages
I have 3 frame (not frame set) and I want to forse frame1 (where I define language for user) to be load first, before any other frames. How should I do it from the main aspx page? thank you very... ...
The server tag is not well formed
mike -
24 Nov 2005 3:48 PM - 4 messages
<asp:ImageButton ID="ImageButton2" runat="server" OnClientClick="javascript:menu('<%# Eval("TableId")');return false;" /> this is what i want to use!!! but it occurs just one error like below ...
Finding DataKey in GridView
mike -
24 Nov 2005 3:44 PM - 2 messages
i'd like to get datakey of GridView So i write code like below but it wasn't work well. how should i do? protected void BookGridView_RowDataBound(object sender, GridViewRowEventArgs e) { int tableId = int.Parse( ...
DropDownList
Rodrigo Ferreira -
24 Nov 2005 3:38 PM - 3 messages
Hello, How can i fill a dropdownlist with data returned by the database? My code is: string strsql = "SELECT designacao FROM categorias"; multiqual.bd db1 = new multiqual.bd(); ddlCategoria.DataSource = db1.devolvedataset(strsql); ddlCategoria.DataBind(); Greetings, Rodrigo Ferreira ...
How to log in to another page from your page?
papaja -
24 Nov 2005 3:35 PM - 3 messages
Hello, I learned how to get some contest from another, authentication protected, web pages using webclient and http requests. However in this case I don't want to get any content. I just want to log my users into that site, with credentials they provided, and then ...
Some questions about masterpages.
Visual Systems AB (Martin Arvidsson) -
24 Nov 2005 3:35 PM - 3 messages
Hi! I have created a masterpage, now i have a tree where pages resides because all visitors should not be able to peek on the private pages. The masterpage contains A table, the table contains a background-image. As long as the pages is where the masterpage is, the images is displayed. ...
Need Help with Validation
hn -
24 Nov 2005 3:07 PM - 3 messages
Hi , On one page I have: - textbox A and button A, - textbox B and button B, All in one form. I want it to work this way: when button A is clicked, required validation will apply to textbox A only, not textbox B, and when ...
Correct syntax for an update stored procedure
martinharvey -
24 Nov 2005 3:03 PM - 4 messages
This is probably a very simple question but i would appreciate some help with the correct syntax for and update stored procedure I have created a user form that allows the user to update the name and address fields in a datatable called customers based on the input value ...
Setting Profile properties for not logged in users
Iain -
24 Nov 2005 2:31 PM - 4 messages
I create a user using Membership.CreateUser Now I want to set a profile property for that user - of course they are not logged in, so the profile is of the current user (the administator). How do I change a profile setting for a user who is not logged in? ...
Dynamic content problem
Griff -
24 Nov 2005 2:19 PM - 4 messages
I understand how to dynamically change the text of a label that appears in the body tag by using code in the "code behind" page - one adds a <asp:label id="labelToUpdate"/> tag. However, I need to dynamically update the page title: ...
About web.config file
Bob -
24 Nov 2005 2:12 PM - 7 messages
The web.config file is a pure XML file. Would people who visits my website built on ASP.NET 2.0 be able to access my web.config file? i.e. can they do http://mywebsite/web.config ? ...
Deploy ASP.NET App -ASP.NET Not Installed
Bill Manring -
24 Nov 2005 2:10 PM - 2 messages
I want to create a setup project that for an ASP.NET application that can be run by a customer that does not have the .NET Framework or ASP.NET already installed. I have already seen articles on including the .NET Framework and ...
ASP.NET 2.0 file upload with progress dialog
Bob -
24 Nov 2005 1:44 PM - 3 messages
Is it possible to show an upload progress dialog using the standard file upload methods provided in ASP.NET 2.0? Can batch upload be done? What's the maximum filesize that can be uploaded at one time? ...
VS 2005: Virtual directories
Griff -
24 Nov 2005 1:27 PM - 3 messages
Rather new to this.... I've created a new web site using VS 2005. It's created the files under my "documents and settings" area and the URL to this site is http://localhost:3066/website1 I have a separate physical directory structure that I have to use within ...
HTML Tables
Mr Newbie -
24 Nov 2005 1:21 PM - 3 messages
Is it possible in designer to select several cells at one time and change the alignment attribute ( align=centre etc ) in one go rather than having to do each on in code ? ...
Retreive images stored in Access database
Anitha -
24 Nov 2005 12:24 PM - 3 messages
Hi All, How to retrieve images stored in Access database. I am storing images(jpeg) as OleObject. I want display them on my web page. I am unable to do so.Please help me I am using C# The code is as ...
Can we search keywords in a word document?
savvy -
24 Nov 2005 12:02 PM - 5 messages
I'm designing a Job Recruitment Website, in which the admin person searches for the right candidate for the job using certain keywords . The only kind of candidate info is the ms word cv of each candidate. So how can i search for keywords in each of the word documents. Is there ...
Problem with aspnet_wp.exe
Marcin Belczewski -
24 Nov 2005 11:57 AM - 3 messages
I have a problem with aspnet_wp.exe on my Windows XP. When I start any of my web applications, webservices or even try to create asp.net project under vs.net - aspnet_wp.exe process starts - consumes 50% of CPU and works for a long time doing nothing - web ...
MS Forms 2.0 Combo box control
sridev -
24 Nov 2005 11:42 AM - 4 messages
hi all, I am a very much new to ASP.NET(c#). I am using MS Forms 2.0 Combo box in my project.when i double click the combo box no event is generated.I don't know how to handel the ...
How to initiate a postback in a function?
cin -
24 Nov 2005 11:36 AM - 3 messages
I would like to initiate a postback after I have finish executing some codes in a dynamically created button_click event. Do anyone know? Please help!!! Thanks ...
XHTML 1.0
Simon -
24 Nov 2005 10:40 AM - 6 messages
I'm using visual studio 2005. I have table: <table><tr><td width=30%></td><td width=70%></td></tr></table> and I get an error message: ...
Using Components in ASP.NET (C#)
acb -
24 Nov 2005 10:30 AM - 9 messages
Hi, I wrote a DLL Component (using Visual Studio 2005) and managed to include it into a C# Console application. I am now trying to include this component into a Web project. I copy the DLL into the bin directory but am not able to progress. Can anyone ...
The system cannot find the file specified. (Exception from HRESULT: 0x80070002)
chanmm -
24 Nov 2005 10:05 AM - 8 messages
Dear all, I have run the same web application in my Windows XP Pro without any problem but once I deploy it in Windows 2003 Server the message below appear: The system cannot find the file specified. (Exception from HRESULT: ...
Adding CssClass on .ascx page
Niclas Lindblom -
24 Nov 2005 10:02 AM - 3 messages
Hi, I would like to use a separate stylesheet for a .ascx module without changning the stylesheet that is referenced in the .aspx page <HEAD> section Is it possible to reference another stylesheet from a .ascx page and ...
.ascx file as index page?
Henry Sun -
24 Nov 2005 9:47 AM - 3 messages
Hi all, New to ASP.NET and this Newsgroup. recently I saw some major websites use ascx page as their index page (e.g. index.ascx?ProductId=blah). I did a little bit rearch but I still couldn't find any word about this... ...
Event 1089
chuck -
24 Nov 2005 8:25 AM - 6 messages
"Failed to execute the request because the ASP.NET process identity does not have read permissions to the global assembly cache. Error: 0x80070002 The system cannot find the file specified. " I can't view asp web application with visual studio .NET 2003 ...
about nvarchar( number )
mike -
24 Nov 2005 7:40 AM - 2 messages
it's so unconvinient for me to write number of data size such as nvarchar(50) , nvarchar(100) and so on... in this case what should i have to do?? ...
Can't edit, delete or add row in an Access database in a website 2
dennist685 -
24 Nov 2005 7:35 AM - 15 messages
Can't edit, delete or add row in an Access database in a website 2003 When I implement a walkthrough using Northwind I have no trouble doing this. Also, in a windowsforms project I have no problem editing, adding or ...
How to add Label control to DataList?
Jameel -
24 Nov 2005 7:04 AM - 2 messages
Hi Coders, How do i Add a Lable control to DataList to show the Count Files which belong the current Category. i have a DataList which displays categoryName,Description and File counter (coutn the images belong to category), i able to display first 2 values from ...
Dynamically Loading the User Control and Passing Parameters to it.
Jamil -
24 Nov 2005 6:33 AM - 2 messages
Hello, I am loading the user control daynamically using Page.LoadControl('mycontrol.ascx"). But with this i can not get my datamember's properties. For example i declare a private integer variable then i write a property to get or set the value of that private integer ...
References VS Imports
Adam Knight -
24 Nov 2005 5:48 AM - 2 messages
Hi all, Just a quick question. When developing with VS obviously it adds references to particular dlls by default when creating a project. IE System, System.Data ect My question is: As System.Data.SqlClient is missing from the default references, what is the ...
ASP.NET 2.0 base64 encryption
Bob -
24 Nov 2005 4:07 AM - 2 messages
Does ASP.NET 2.0 have built-in base64 encryption methods? ...
GredView {0:d} formatting doesn't work
Shimon Sim -
24 Nov 2005 3:51 AM - 6 messages
I just don't understand what is wrong. I have simple query. One of the returning fields is data I created bound column for GridView (ASP.NET 2.0) and specified DataFormatString as {0:d} - it returns me the row date with hours. ...
Horizontal CSS drop-down menu?
Amil -
24 Nov 2005 3:19 AM - 5 messages
Does anyone have a recommendation on an AWESOME (free) horizontal drop-down menu using DTHML? I'm not using VS 2005 yet. Thanks. Amil ...
Fail to save xmldocument
Daniel -
24 Nov 2005 3:11 AM - 2 messages
Hi All, I have problem in saving the xmldocument. The error message is "unable to access to the path". How to enable it? I have try sharing the foler - but the answer still cannot solve the problem. Any ideas? thank you in advance. ...
|
|||||||||||||||||||||||