|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ASP.NET Developmentmicrosoft.public.dotnet.framework.aspnet
Must Declare the Scalar Variable error
Oded Dror -
27 May 2006 11:46 PM - 3 messages
Hi there, Please take a look at the source code and tell me whats wrong? Imports System.Data Imports System.Data.SqlClient Partial Class Test Inherits System.Web.UI.Page Const conString As String = "Data Source=.;Initial ...
why only one server-form in an aspx file?
Dan -
27 May 2006 9:08 PM - 7 messages
Hi again, I tried to create a second server-form in an aspx file, but there can be only one. Independantley of it's useful or not, why is it so? And why can't i create a form directly in vb.net (from the code-behind page) ...
Controls collection cannot be modified because control contains code blocks (i.e. <% ... %>).
Dan -
27 May 2006 9:04 PM - 1 message
Hi, I get this error: "Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>). " when trying to create a table in the code-behind file like this: dim t as table t = New Table() ...
How to make VS create a page_init (c#)
SingLu -
27 May 2006 8:48 PM - 2 messages
I'm going nuts here. I'm using VS2005 and C# and would like to create a simple page and use the page_init-event. I add a new page but can't find a way to make VS add a eventhandler. If I dbl.click the page I get a page_load ...
Pass control back from HTTPModule or HTTPHandler
Max -
27 May 2006 6:35 PM - 2 messages
I have my HTTPModule or HTTPHandler registered to process all file types (*). I have IIS configured to pass all requests to ASP.NET for this virtual directory. In some cases depending on the request parameters I may decide that I need ...
SQL: IF EXISTS... using TEXT field
Darrel -
27 May 2006 6:12 PM - 5 messages
I'm trying to use a IF EXISTS (SELECT...) UPDATE... ELSE INSERT... sql query. This works until I try to use it with a text field type. When I do that, I get an error saying ntext can't be used in this type of aggregate query. ...
master pages & authorization controls
dmm -
27 May 2006 5:18 PM - 4 messages
Hi all, I am using master pages and am having a bit of an issue. As part of my masterpage I want to display the user's current logged in status using the LoginView. However I get the following error: ...
Dynamic Gridview VIEWSTATE lost on postback
K B -
27 May 2006 5:15 PM - 1 message
Hi, I have a gridview where I do the databind on a dropdownlist selection event, and create the rows dynamically during the rowdatabound event. When I click the SAVE button to capture user changes, the grid is lost. I can see that this is a VIEWSTSATE issue but I don't know how to ...
ddl datasource and User.Identity.Name (2.0)
WebBuilder451 -
27 May 2006 5:08 PM - 7 messages
I have a drop down list of saved searches for a user and i'm trying to use the datasource control to populate the ddl. The select value in the storedproc is the user.Identity.name. How can i use this parameter? it's not ...
MSbuild not building. no helpful error messages.
roger23 -
27 May 2006 5:01 PM - 1 message
I get this error C:\Program Files\MSBuild\Microsoft\WebDeployment\v8.0\Microsoft.WebDeployment.targets(526,9): error MSB6006: "aspnet_compiler.exe" exited with code 1. at the end of my build step of my web deployment project. it does not give ...
Same user, different permissions? Why?
Darrel -
27 May 2006 2:50 PM - 1 message
I've been having problems trying to delete a file. I can upload and save the file no problem, but deleting it gives me two results: If I run the delete function from my app's unprotected (public) root folder, ...
No output for precompilation in asp.net 2.0
Roger23 -
27 May 2006 2:44 PM - 1 message
When i do a "publish web site" on my web project there is no output created in the specified local directory. but the same project produces output in my collegues machine. I have tried cleaning out all the temp files and restart the machine. has anyone come across this situation? ...
Change 'ok' and 'cancel' to some other text
Steve -
27 May 2006 1:03 PM - 5 messages
Asp.NET 2.0 For a button control I have set the following: OnClientClick="return confirm('Are you sure you want to do this?');" Of course the 'OK' and 'Cancel' buttons come up for the user. However I am developing this page in another language and I don't want ...
File/Folder security for current context
Davie -
27 May 2006 8:50 AM - 1 message
How can I implement a function to show what kind file security access the current context has on a file, for example:- public enum AccessType FullControl Modify Read Write ...
ASP.Net [2.0] XMLReader / Stream?
Rob Meade -
27 May 2006 7:53 AM - 7 messages
Hi all, I'm having a few difficulties with the above, ie I cant find any good examples anywhere of how to do what I want to do! I have an xml file on my desktop which I want to read in. ...
How do I fire a server side button click event from javascript?
Steve Kershaw -
27 May 2006 6:38 AM - 4 messages
Hi, I need to fire a server side button click event from my client side javascript. The client side javascript code follows: <script language="javascript" type="text/javascript"> function myFunction() { ...
Logging out of a site
BobLaughland -
27 May 2006 4:17 AM - 2 messages
Hi There, I am writing an asp .net 2.0 web site. I have an asp .net 2.0 login control. How can I programatically log someone out of the site. Thanks, Peter. ...
SqlCacheDependancy
Demetri -
27 May 2006 12:43 AM - 1 message
Will SqlCacheDependancy work with stored procedures? I find it hard to believe that Microsoft would expect us to access a table directly, yet that is all the examples i've seen show. ...
Yay! A new Stored Proc vs. Dyn. Sql battle!
Patrick.O.Ige -
26 May 2006 11:43 PM - 1 message
interesting folks [link] Patrick ...
Session not available across multiple servers if I use "InProc"
NAT -
26 May 2006 9:53 PM - 2 messages
I am using session mode as "InProc"(entered in web.config). I have deployed my ASP.NET appln. on a server which uses Load Balancer. i.e I have two servers. I am using session across pages.The problem I am facing is that sometimes I ...
timeout - ProcessRequest
kurtn -
26 May 2006 9:52 PM - 2 messages
I am having problems with a web form timing out. I have several text boxes where the user can enter data to search by and a datagrid to display the results. The problem is half of the time the search times out. I have ...
Strategy for "your file is uploading" message
Jared -
26 May 2006 9:12 PM - 6 messages
I'd like to display a "please wait while your file is uploading" page immediately after someone uploads a large-ish file. I know I could make something really slick with DHTML, or even something semi-slick using a hidden frame to post the form to. However, both of these ...
Server Error in '/' Application.
James -
26 May 2006 8:53 PM - 4 messages
Hi I have a Access Database linked into details view. Everything works fine when I click "View in Web Browser" and it is run on Local host. I can view, add, edit records. When I publish it, I can view records, but I cannot update or insert new ...
Using SQL Server Multiple Times
Jerry -
26 May 2006 8:52 PM - 2 messages
I am creating an ASP.NET page that does the following: The Page_Load event connects to the database to populate a dropdown list. The Button_Click event connects to the database to check if the record ID already exists and if it doens't, it gets the highest ID. ...
ASP.NET pages hosting WindowsForms control interactivity
PHether -
26 May 2006 8:50 PM - 2 messages
SO, I have a WindowsForms based Usercontrol being hosted in a ASP.NET page using the <object> tag method. What I am trying to do now is have that control access the Session object of the ASP.NET page. ...
Unable to open text file
tshad -
26 May 2006 8:20 PM - 3 messages
I am getting the following error when trying to open a text file: Overload resolution failed because no accessible 'New' can be called without a narrowing conversion The code is: ******************************************************* Dim objStreamWriter As StreamWriter objStreamWriter = New StreamWriter(Server.MapPath("\uploads") & "\" & ...
Intellisense not working
Random -
26 May 2006 7:58 PM - 1 message
I have VS 2005 installed and I'm working on an ASP.NET app. I'm trying to add a class to the App_Code directory, and have noticed that my Intellisense no longer works for any of my previous classes in App_Code. It still works ...
Dynamically adding controls
Mike Lowery -
26 May 2006 7:16 PM - 5 messages
I have an ASP.Net page that simply generates a dynamic page using Response.Write() statements to generate the HTML. This works great except that one of the things I want to generate is a LinkButton. I know this can be done ...
Images not displaying
James -
26 May 2006 6:18 PM - 8 messages
Hello I have tried putting a simple jpg onto a page. I did this by selecting Image from the tool box. Then in the properties I selected Image Url and typed in "App_Data/image.jpg" It shows when I am looking at it in design, but not when I publish it, just ...
pass data (string) to aspx page - not in url
David Thielen -
26 May 2006 6:07 PM - 3 messages
Hi; I have a IHttpHandler that is generating a page. If it throws an exception I want to put up a nice page that is based on my master page so it looks good. How can I redirect from my IHttpHandler to my handle_error.aspx page passing ...
Creating virtual directory in IIS using C#
sudhapadmas -
26 May 2006 5:17 PM - 2 messages
Hello netters, I was trying to create a virtual directory in IIS using the following code: System.EnterpriseServices.Internal.IISVirtualRoot vr = new System.EnterpriseServices.Internal.IISVirtualRoot(); string sError; vr.Create("IIS://localhost/W3SVC/1/Root",@"C:\Program Files\Soft","WebServices",out sError); ...
A question about FormsAuthenticationTicket
Andrea -
26 May 2006 4:28 PM - 1 message
If I did something like that: FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(ID, false, 20); then add the ticket encrypting it to the cookie collection, shouldn't the cookie be deleted for each new session of the application? Session isn't equal to start a new debug, leaving opened the browser while ...
A lighter IIS-Asp.Net application.
craigkenisston -
26 May 2006 4:22 PM - 4 messages
I'm creating a web tracking application using Asp.Net. The kind of applications that remotely tracks visitors and paths to a website and store the information in an external server to view reports. I'm not even sure if this it is OK to use asp.net for this, somehow I ...
View Debugging Results
Jerry -
26 May 2006 4:17 PM - 3 messages
When I set up a breakpoint and debug I used to be able to view the output at the bottom of my screen but for some reason that is no longer there. How can I get that back? Thanks, ...
A potentially dangerous Request.Form value was detected...
randy collins -
26 May 2006 3:53 PM - 1 message
I have a <BUTTON> control that I use, because I want the text on the button to display with an underscore on the lead character to indicate that it has an access key associated with it. To do this I use the HTML underline tag: ...
getting an XML STRING into a dataset?
darrel -
26 May 2006 3:45 PM - 4 messages
I'm grabbing an XML string from a database and trying to pass it into a dataset. I've read this article: [link] and have tried to implement it as such: ...
How can I display a MessageBox in ASP.NET?
Steve Kershaw -
26 May 2006 3:34 PM - 6 messages
Hi, I need to display a messagebox in ASP.NET that includes a textbox for input. There must be an easy way to do this! Thanks Steve ...
FormView items in a table
Peter Zolja -
26 May 2006 3:30 PM - 2 messages
Hi, Is it possible to configure the FormView wizard (or any other way) to generate the code inside a <table>? Right now, it seems to be putting each Any ideas? Thank you! ...
Gridview control and sorting a calculated templatefield column ?
markm75c -
26 May 2006 3:30 PM - 3 messages
Does anyone know of a way to sort a column which isnt databound or an actual field in the database, but is derived from a method? IE. I have a grid showing stats for softball, with a calculated field ...
Linking to file with spaces XP %2520 mess up.....
gregnowlives -
26 May 2006 3:15 PM - 3 messages
Hi i've created a simple website which allows our intranet users to add files from shared drives on the domain and structure them on web pages. (bit like sharepoint). These files are then displayed in a treeview control as links to the file. ...
How do I reference a child control withing main form?
ChanKaiShi -
26 May 2006 3:09 PM - 3 messages
Hello, I have DetailsView control called "EmployeeDetails" with a bunch of fields, one of thos is button called "btnAddEmployee" inside ItemTemplate . How do I get access to properties of that button from within a main page? Page.FindControl("btnAddEmployee") does not work, ...
See If You Can Modify This Simple Regular Expression
Joey -
26 May 2006 3:06 PM - 4 messages
I currently have a regular expression that will match textbox input for phone numbers formatted as ###-###-####. The expression is... \d{3}-\d{3}-\d{4} How can I modify this to accept the same pattern (ten digits) OR ###-#### (seven digits)? ...
How to protect excel spreadsheet with password from asp.net
lanem -
26 May 2006 2:40 PM - 1 message
I am trying to create an excel spreadsheet from my asp.net 2.0(vb.net) code. I can create the file and even protect it, but I cannot protect it with a password. Here's my code: ...
cant find the solution
nizam -
26 May 2006 2:30 PM - 2 messages
Hi all, i have a simple Problem. i have written a code in asp.net for sending email. my code is working fine. but entire body content is not going only 1000 bytes are going. above 1000 bytes all are truncted. i want my mail message to carry >1000 bytes. ...
A browser definition file for crawlers
Stefano -
26 May 2006 2:27 PM - 1 message
Hi all, I'm trying to create a browser definition file (.browser) that matches crawlers user agents. I don't want modify browser files in the Config system folder. I'd like to use App_Browsers directory, instead. I don't want to use Request.Browser.Crawler, because I'd like to be able ...
Intermittent problem - with IIS or dotnet or?
Blasting Cap -
26 May 2006 2:18 PM - 3 messages
We have a production web server with several dotnet apps open to the public. It's Windows 2003, all current service packs, Dotnet Framework 1.1 on the server. Occasionally, we have found one page a .aspx page - had the form tags ...
turn on personalization in ASP.net 2.0
Nandu -
26 May 2006 2:16 PM - 2 messages
Hello, I am using membership and profile providers in my asp.net 2.0 website. Our client uses a pre-compiled content management site and my code is added to the site as user controls. When i uploaded the new registration (createuserwizard) and login controls ...
dw20.exe errors
John -
26 May 2006 1:55 PM - 1 message
i'm creating new web site in 2.0 and it was working but now when I run my web app its timing out and when i open task manager i can see DW20.exe running, (dr watson error). It only happens when I make references to my ...
Invoking a setup / deployment project via the command line?
Wade -
26 May 2006 1:21 PM - 2 messages
Hey all, I have a setup / deployment project that is used to create builds for my web project. I can very easily invoke this manually, in the IDE, to get the packaged MSI file. However, I would like to be able to invoke the packaging of this MSI file ...
Storing state in the service.vb class?
Robin Mark Tucker -
26 May 2006 1:21 PM - 2 messages
Hi, apologies for the cross post, if you also subscribe to the aspnet.webservices group, I'm new to asp.net so I'm still finding the newsgroup sweet spots ;) Anyway, my question is, how can I store state on the server for each ...
WEBSITE FOUND.WAITING FOR REPLY MESSAGE BLINKS IN THE STATUS BAR
Hirak -
26 May 2006 1:08 PM - 1 message
Hi, I am supporting an ASP.Net Web application, when I try to run the application from my system, it throws an error like Web Site Found.Waiting for Reply. And, this message continuously blinks in the Status Bar. ...
Datagrid Sorting
Kuldeep -
26 May 2006 12:36 PM - 1 message
Hello All, I have a Datagrid which has to Databind to different data on different conditions. Because of this, I am not using any of the asp:Bound Columns. Instead, I have a table within the datagrid which shows different headers for different ...
Gatherting a SQL Password from the user in a Web Setup project
Oldman -
26 May 2006 11:55 AM - 2 messages
I want to gather the information needed to modify the connection string to the database during install time. I added a Text Box dialog to the setup but it does not allow me to set the password character for the password text box. ...
dataset table name
Antonio -
26 May 2006 11:25 AM - 4 messages
hi i working whit ado.net2.0 have fill 3 data table to my dataset using this code Dim qry1 As String = "SELECT * FROM Employees;SELECT * FROM Customers;SELECT * FROM Orders" Dim da1 As New Data.SqlClient.SqlDataAdapter(qry1, cn) ...
List off all files in a website
AAJ -
26 May 2006 11:12 AM - 5 messages
Hi all Is it possible to programatically list all the .aspx files within the currenty running website. e.g. something like foreach {aspxfile in AllaspxFilesInMyProject) { string filename = aspxfile.title; } ...
Precompilation Error
Balasubramanian Ramanathan -
26 May 2006 11:05 AM - 3 messages
I am getting this error while precompiling a website for deployment. Errorstack information error ASPRUNTIME: Object '/c107cdc3_b65c_4b6c_9d8f_82fe5a457fdb/ctofbyvagqsbvrgsc7xzxa5o_9.rem' has been disconnected or does not exist at the server. [RemotingException]: Object '/c107cdc3_b65c_4b6c_9d8f_82fe5a457fdb/ctofbyvagqsbvrgsc7xzxa5o_9.rem' has been disconnected or does not exist at the serv ...
opening asp.net webpage in ie
sasikumar -
26 May 2006 10:50 AM - 2 messages
i can't run asp.net webpage in internet explorer unless i run project from visual studio 2005. how i run say title.aspx page in internet explorer without starting visual studio ...
can't create form in code-behind file
Dan -
26 May 2006 10:16 AM - 1 message
Hi, I deleted the form created by VWD in the aspx file (because i know there may only be one server-form) and I tried to create in the code-behind file a form like: dim t as form but it doesn't appear in the dropdown list of VWD. ...
Access a website using localhost
nick_nikh@yahoo.com -
26 May 2006 10:03 AM - 2 messages
I have website on my local machine and SQL Server database on another server. When I run the website through Visual Studio.Net 2.0 IDE the site runs perfectly but when I try to access it through Internet Explorer, directly using ...
Problem with resources
Luigi -
26 May 2006 9:42 AM - 2 messages
I'm experiencing this problem in asp.net 2.0: Using in a web form a literal control: <asp:Literal ID="Literal1" runat="server" Text="<%$ Resources:Localization, RES_Literal1 %>"></asp:Literal> when rendered the page always shows the default language text, ignoring the ...
pop up confirmation help me please
graphicsxp -
26 May 2006 9:36 AM - 10 messages
Hi, I have a function in my code-behind (vb.net) that checks if the file the user is trying to upload already exists on the server. At that point I'd like to display a pop up saying 'Are you sure you want to ...
Losing session objects
Not Me -
26 May 2006 9:18 AM - 5 messages
Hi, I have a set of pages that use forms authentication for access. There are times when one of the session objects I'm using appears to disappear. The session is not timing out, however. (if I go to a page ...
2.0: What Database Software?
JJ -
26 May 2006 8:44 AM - 13 messages
Looking for a database for the backend to my e-commerce web site that doesn't cost the earth. Planned on using mySQL but I gather that there is no connector compatible with asp 2.0 available yet. What other options do I have? ...
Could not find installable ISAM.
Dan -
26 May 2006 8:34 AM - 4 messages
Hi, My global.asax contains this: Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) Dim oConnection As New OleDbConnection() oConnection.ConnectionString = System.Configuration.ConfigurationManager.AppSettings("newres") oConnection.Open() Session("oConnection") = oConnection End Sub My web.config contains this: ...
Urgent Help
Bart Schelkens -
26 May 2006 8:24 AM - 3 messages
Hi, On the internet I found this cool script that allows for the creation of an mdi-like webapplication. What I would like to do is, link this script and the creation of the webpages to the click of the menu that is available in .NET 2005. ...
Image Button and SaveAs
mfr -
26 May 2006 7:15 AM - 2 messages
(appologies for re-post, but my no-spam alias was not configured correctly). Hi, I'm using VS2005 to create a web site. On one of my aspx pages I have an ImageButton that displays an image that is created in a seperate page. ...
Move website from File System to http
loga123 -
26 May 2006 6:53 AM - 2 messages
Hi All, I am new to asp .net 2.0. I am using VSD 2005 and asp .net 2.0. I have created a web application on my desktop under 'File System' (not under 'http'). I would like to make it available for other users using my computer's ...
VS 2005 ASP.NET applications and /bin/*.dll file(s)?
Willy S -
26 May 2006 6:26 AM - 2 messages
Where has the /bin directory with the *.dll file(s) gone in asp.net projects in vs 2005? I cant find any /bin directory in the projects - so how can I ftp a new web/web-service to prod. server without the corresponding *.dll file(s)? ...
Who Knows the CreateUserWizard Control?
clintonG -
26 May 2006 3:25 AM - 5 messages
Does anybody know how to modify the style of he Previous and Next buttons displayed by the CreateUserWizardStep? <%= Clinton Gallagher NET csgallagher AT metromilwaukee.com URL [link] ...
Can not get IIS to run ASPX when I am connecting to SQL DB.
Phillip Vong -
26 May 2006 2:43 AM - 2 messages
I'm using VS 2005 connecting to a SQL 2000 DB on another server. The SQL is also running IIS 6 with ASP.NET 2.0 When I test the aspx on my computer, it has no problem getting the ...
Server.transfer and user control
Congero -
26 May 2006 1:38 AM - 1 message
I have an ascx user control where I user response.redirect to redirect to another page. The problem is that when I arrive at the destination page, the url from the calling page is still in the address bar of the browser. ...
Page inherting from .master - unexpected results
Art -
26 May 2006 1:13 AM - 1 message
This simple code works as expected in a regular asp.net page but doesn't when the same content is run from a page which inherited from a .master template. I literally copied the Button and the two Label server controls (along w/ the ...
Javascript alert() when deleting rec with gridview
loga123 -
26 May 2006 12:13 AM - 2 messages
I am using a gridview with ASP 2.0 and VB.Net 2005. I would like to be able to pop-up a javascript alert('Are you sure') confirmation when the user clicks the 'Delete link' without adding an additional column for ...
WebParts - Export/Import cycle
Robert Bogue [MVP] -
25 May 2006 11:26 PM - 4 messages
I've got a test harness I've been building and playing with to manage ASP.NET web parts. One thing I've noticed is that I do not seem to be able to reimport the webparts I've exported back on to the same page. ...
Multiple Data sources in TemplateColumn
tshad -
25 May 2006 10:54 PM - 3 messages
The following gives me an error: Character is not valid The TemplateColumn <asp:TemplateColumn Visible="true" HeaderText="Meets Job Rqrmnts" ItemStyle-Width="170px" ItemStyle-VerticalAlign="middle"> <itemtemplate> ...
Will I have a thread conflict with this?
darrel -
25 May 2006 10:10 PM - 1 message
I'm still trying to wrap muy head around preventing thread conflicts. I have a class that has two functions in it. This is called from various part of my application and will generate a XML file. I've gotten lots of advice on ...
ViewState.Count = 0
paul.hester -
25 May 2006 10:08 PM - 7 messages
Hi all, Does anyone know why the ViewState would be empty? When I'm receiving a postback, I can access a posted value using controlName.Value but not ViewState["controlName"]. I have EnableViewState set to true in my master page and content page. ...
Block the history
gralet -
25 May 2006 10:08 PM - 5 messages
Hi, What can I do to block or erase the history of the Internet Explorer when a user navigates in my ASP .NET 1.1 application?, I don't want that the user be able to return to a previous page. ...
calendar control
Jessica Weiner -
25 May 2006 10:02 PM - 2 messages
I have an ASP .NET web application and I am using the calender control to display the month view and some events that are scheduled to happen during the month. Whenever the user selects a month, the page re-loads to show the ...
Request.Form or IsPostBack and ViewState
paul.hester -
25 May 2006 9:51 PM - 2 messages
Hi all, I'm in two minds about whether to use IsPostBack and ViewState or Reqest.Form for handling form data. Is there any advantage in using the old Request.Form method, other than generating less HTML for the page? Has anyone ever seen any reason to ...
Data display? (Continued)
Ben R. -
25 May 2006 9:51 PM - 4 messages
Since the original thread is marked as answered, I thought I'd post here to ensure visibility. Hi John and Steven, I'm going the dataset route as access doesn't seem to be too keen on that level of complexity in joins. Anyway, I'm curious as to why it makes more ...
Login Control LoggedIn event is user Authenticated
Shimon Sim -
25 May 2006 9:46 PM - 6 messages
I am working with LogIn control and need to set some property for profile after user is authenticated. I thought that LoggedIn event is the right place but system tells me that the property can't be set for anonymous user. ...
question
John -
25 May 2006 9:30 PM - 4 messages
I took over an existing .NET 1.1 app and when its getting data its using about 99% of inline SQL statements, such as SELECT * from table, or UPDATE, and INSERTS, and its also doing some SELECT on views. I would like to ...
Namespaces?
Rob Meade -
25 May 2006 9:06 PM - 3 messages
Hi all, I was wondering if someone could offer me some advice with namespaces... Primarily when and where to use them - you're explanations will need to be aimed at the namespace-newbie :o) I started a project this evening where I was given my classes namespace ...
IFrame Page_Load multiple time
Chukka -
25 May 2006 8:58 PM - 1 message
I have iframe inside Firstpage.aspx page like this... <IFRAME id="IFrame_One" style="WIDTH: 1029px; HEIGHT: 425px" name="IFrame_Documents" marginWidth="0" marginHeight="0" src="[link]" frameBorder="0" scrolling="yes"></IFRAME> ...
Error executing child request for MyPage.aspx.
EagleRed@HighFlyingBirds.com -
25 May 2006 8:56 PM - 2 messages
I am developing an ASP.NET 2.0 application using a master page. I have a DataList control on the master page that has a datasource this is an ArrayList of objects that have a CmdURL property. This property contains a ...
Custom Control
Arne Garvander -
25 May 2006 8:54 PM - 1 message
How do I write a custom control in Asp.net 2.0? ...
2.0: unexpected Application_Error
R.A.M. -
25 May 2006 8:39 PM - 2 messages
Hello. I need your help in the following problem: I have ASP.NET application with starting page Default.aspx. On Default.aspx.cs page I have (.aspx contains no code): public partial class DefaultPage : System.Web.UI.Page { class DemoLogin : Login ...
Stringbuilder equivalent to XMLTextWriter?
darrel -
25 May 2006 8:03 PM - 3 messages
I want to write an XML file but not to a file...just into memory, so I can then pass it to a string and stick it in a database. Seems that XMLtextWriter requires that I write to a filestream. ...
Taborder after postback
kpg -
25 May 2006 7:32 PM - 5 messages
After an autopostback event the control that gets focus next is not the one defined in the taborder, but the first control. This makes sense becuase the page is reloaded, but of course this is not the desired behaviour. I have seen the use of a hidden field, which stores the name of the control ...
problem with getter and setter not working
Adam Sandler -
25 May 2006 7:26 PM - 13 messages
Hi all, I hope this is an easy one... Using VWD 2005. When I call my accessor method (getName) I always receive an empty string back. Debugging shows there should be something there but I cannot figure out where the ...
Datagrid paging without javascript?
the friendly display name -
25 May 2006 7:24 PM - 2 messages
Simple question: How to make datagrid paging work without javascript? I have a simple datagrid, which gets populated by a dataview, it works perfectly, paging works too, but, as I said, it does only with javascript. I know how to set ...
Refreshing page after closing popup?
VMI -
25 May 2006 6:50 PM - 3 messages
My aspx (source.aspx) has a hyperlink that opens a popup page: HyperLink_anadirNota.NavigateUrl = "javascript:CreateWnd('followup.aspx?id=" +txtNum + "',850,410,true)"; Now I want source.aspx to refresh automatically after I close followup.aspx. How can I do this? ...
incosistent error on windows 2003 server machines
Jimi200478 -
25 May 2006 6:46 PM - 2 messages
Hello All, Okay....here goes.We are currently in the process of updating our servers to windows 2003 server from Windows 2k. Before making any changes to our production environment, we ran the new servers on our test environments to make sure that we had everything configured ...
Controls reset after postback, why?
Art -
25 May 2006 6:35 PM - 4 messages
I have few buttons on my ASP.NET page which are supposed to hide and show pannels. On the initial load everything is properly populated but then when I press one of the buttons, which are supposed to hide one and show another ...
running aspx page once a day..how?
Justin -
25 May 2006 6:29 PM - 3 messages
I am trying to setup a window tasks that runs aspx page once a day. Is there any way I can set this up without resorting to vbscript.. If there is a way I can set this up without vbscript, that would be ...
How do I suppress the display of validation messages
Pacer Dawn -
25 May 2006 6:09 PM - 4 messages
I have a web control that takes a date input. There are two types of validation I want to do on this: 1) validate that the date input is in the proper format, and display a message if otherwise ...
Visual Web Developer Express and source control?
briansmccabe -
25 May 2006 6:07 PM - 2 messages
Does anyone know if Visual Web Developer Express works with Visual Source Safe? ...
Can't get viewstate to work
multiformity -
25 May 2006 6:01 PM - 10 messages
The following page will not load the view state from the statebag without throwing an exception. After we get this working, I will be working on viewstate for some custom controls, but one thing at a time. using System; using System.Web; ...
Debugging mode failure
Herb -
25 May 2006 4:40 PM - 4 messages
while trying to run this project. I recently loaded VS2005 onto my WinXP Pro computer. Prior to that I was able to start my VS2003 ASP.NET apps in debug mode. When I attempt to do so now, I get "Error while trying to run this project. ...
Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure t
BC30518: Overload resolution failed because no accessible 'ToString' can be called with these argume
One CheckBox. one ImageButton. Why I can't force the user to click the agreement before submit form?
| |||||||||||||||||||||||