i have created two aspx pages, parent and popup page.I want to refresh parent page after some operation in popup is completed.I am using the Page.RegisterStartupscript Option for the reloading the parent page but if i call some server event from parent page that also repeat twice..i dont need that...i tried out each soln what i can do .....
What is the difference between web application and website in asp.net?
and if it have a difference which best from all sides?
thanks in advance ..
...
I'm trying to implement a DataGrid in ASP.NET, and want to achieve custom paging so that I don't have to provide all the data in one go. I've spent several hours researching on the internet, but haven't found anything useful.
When I view the page I see the first set of results in the grid, with the previous link disabled. When I click ...
I'm building a dynamic ExtJS form based on JSON data loaded from an ASP.NET web service. The problem I find is that ExtJS expects the JSON in a specific format, ie.
{ "metaData": { "title": "Testing" }, "data": [], "success": true }
When using an ASP.NET web service to return an object as JSON it returns with the first element "d", i...
Hi. I'm very new to ASP.NET, help me please understand MasterPages conception more.
I have Site.master with common header data (css, meta, etc), center form (blank) and footer (copyright info, contact us link, etc).
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Site.master.cs" Inherits="_SiteMaster" %>
<!DOCTYPE HTML PUBLIC...
Hi,
As you can see on the question, what is your advice about stoping hit counter for the same ip in ASP.NET web site ?
Im my real estate project i increase the view count of a property when it is viewed. But i just want to increase it only if the user has a different ip. If the user refresh the page, the hit counter shouldn't be incre...
I have confusion about GridView in ASP.NET.
How does the GridView exactly work?
I mean when we bind data to gridview with 100 records through GridView1.DataBind();
I have set Pageindexchanging Event and I set the Pagesize = "40" and AllowPaging="True" Then....
Now the interesting part is begins What happens when i Click on next pag...
I am a PHP programmer and I want to develop a website using visual web developer .net
I knew that asp.net has many different approaches in dealing with database. However, I am familer with PHP way in programming for example:
$query = "select * from table where user_id > 2"
$result = mysql_query($query);
while($row = mysql_fetch_array($...
I've got a gridview that is bound to a dataview in the codebehind. The datasource is actually powershell, so I'm processing the data myself. This works fine and displays the result how I want.
However, when I try to enable paging, I get this error when opening the page:
The table must contain row sections in order of header, body, the...
In WPF, ASP.NET, WinForms, I create a button, double-click on it and fill in the event handler.
In Silverlight (with Visual Web Developer 2008), I make a button, double-click it but nothing happens.
Is this not supported when writing Silverlight applications for some reason? Do we have to write these event handlers by hand?
...
Hi,
I'm trying to get my head around Domain Driven Design and the examples I've seen seem to make sense but I am still unsure of how to apply them to my specific situation.
I am designing a CMS where a user can post/edit an article. These can then be viewed by other users who can also make comments, add tags etc. The question I have is...
I've got a page using a Microsoft Reporting ReportViewer. The report appears to be working but the page is giving me two javascript errors, both of them "'Sys' is undefined".
Examining the html output, I can see that this page is not loading the ScriptResource.axd file. Here is the generated output from the <form runat="server">:
Nor...
Hi all,
On my C# asp.net webform I have a search page that has roughly 20 elements that "could" be used as part of the search. There will be more added later.
What I have done is extend the textbox and dropdown listbox to include a few variables:
fieldname: Tablename.columnname
dbtype: DbType.Int32
Joinparam: LEFT Join on otherTable ...
Hi all,
I am having an odd problem with my SQL Server express 2005 DB. It is running on a 2003 server. With VS2005 I can access the db without any problem. But when I try and run the application I get:
Cannot open user default database. Login failed. Login failed for user 'NT AUTHORITY\NETWORK SERVICE'......... .ldf may be incorre...
I am creating a reverse proxy and I am trying to find the optimal buffer for a response size for a chuncked transfer-encoding. Currently I have it set at 4 kb. Is this number OK, or is there a better size that I should be using. I would like this backed up with some tests if at all possible.
I would also accept a property setting som...
I know asp stands for Active Server Pages but wondering if "Active Server" means anything actually?
...
What is the best setup for developing ASP.NET/C# apps on Windows with the Mono runtime rather than VS and the MS runtime?
Ideally, I'd like to have the full mojo - autocomplete, debugger, Unit Tests and Apache/mod_mono or some other web server equivalent...
...
Hello all,
I am developing an web application following the 3 tier architecture.When i am hitting on submit button data is storing in database but not showing response message like "Record submitted successfully" and fields are not refreshing. Here is my code:
protected void BtnSubmit_Click(object sender, EventArgs e)
{
if (...
One of my clients has an e-commerce CMS written in VB.NET 1.1. (The original solution was authored with Visual Studio 2003.) It's not an enormous site, but it does consist of around 40 or 50 Web forms, and I'd like to upgrade it to .NET 3.5, and to maintain and continue developing it it with VS 2008.
I's sure I could do it surgically,...
I am trying to use the ASP.NET (3.5) "Routing Module" functionality to create custom pages based on the contents of the URL.
Various articles, such as this one: http://blogs.msdn.com/mikeormond/archive/2008/05/14/using-asp-net-routing-independent-of-mvc.aspx explain how to use ASP.NET Routing to branch to existing pages on the web serve...