Search Results

0
votes
0answers
42 views

Spring.NET data binding with UserControl

I am trying to bind a public UserControl property to my model inside a parent page. I created a simple example to show what I am trying to do, you can see it on …
0
votes

Server.execute

There is something wrong with the architecture of your web application while you have to use such a thing. Take a deeper look at the master pages and try to use the ASP.NET the way it was designed …
0
votes

Javascript for Google Chrome detecting & Enable javascript in Google Chrome

There is a Javascript Console in Chrome, press Ctrl+Shift+J to open it and check for errors. …
0
votes

Is there a way to draw lines (x,y)-(x2,y2) in ASP.NET pages?

There is a new Chart control in ASP.NET 3.5 with a bunch of features and options, maybe you'll like it. You can read a quick review …
-2
votes

Limiting number of computers from which users can access ASP.NET website?

I think you should consider using of WCF web service and custom WinForms/WPF client with authorization. …
0
votes

asp.net: difference between runat=”server” and server controls

There is no server events associated with such a controls, but you can use it in codebehind to change it's properties. …
2
votes

anchor IE 6 bug

IE 6 has a strange behaviour, it does not recognizes redirects with anchors in it. The workaround is to add additional ampersand symbol '&' before the '#'. So, in your example, the code will lo …
1
vote

ASP.NET - script and css compression

There is Gzip/Deflate compression support in IIS compatible with all modern browsers except IE6. For IIS 7 check this page: …
0
votes

Calling ASP.NET server side method via JQuery

You should use web service instead of regular aspx web page. Web pages has no support to call web methods, I believe your jQuery request loads the HTML page instead. I suggest you two things: …
1
vote

PostBackUrl Vs Response.Redirect

PostbackUrl changes form's action attribute, so initial page is not changed, but when user posts the form, it's data being sent to the different page. Response.Redirect lea …
0
votes

Grid View vs List View

ListView gives you more control over resulting HTML markup. …
1
vote

Calling void methods in IIS 7 and not waiting for them to return

I suppose your method being stopped by script timeout. There are different ways to fix it: Increase script timeout. I would not recommend this one, as the long operation locks Applica …
1
vote

Setting Default Button in Ajaxified Wizard Control

Try the ScriptManager.SetFocus. …
1
vote

How to use JQuery, select element by ID and ASP.NET without putting ctl00_ everywhere in the code

I'm using ScriptManager.RegisterStartupScript to get all the ClientIDs I need. Define javascript var …
0
votes

ASP.net Wizard Control Steps on top

This solution uses the custom user control http://www.codeproject.com/KB/aspnet/CustomizingWizardNav.aspx …