110 Posted Topics
Re: you can use MVC 2 with Visual Studio 2008 it can be downloaded from Microsoft [URL="http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=22079"]here[/URL]. The difference of using MVC and WebForms is more of a personal preference than it is a matter of industry standard. If I had the choice I would prefer to use MVC because it … | |
![]() | Re: what is the exact problem you are having? I doubt many people are going to code an entire solution for you when you haven't provided any code yourself. If you have tried to get this to work and are having problems then please post the appropriate code along with any … |
Re: The only reason I can think of without knowing what your BaseBO class looks like is that you do not have a constructor for that class which takes no parameters. The new() constraint requires that whatever type T is it must have a parameterless constructor. | |
![]() | Re: Often an example can do more to explain than an explanation. I tried to comment the example to explain what is going on as much as possible. [CODE] public class Parent { // public properties public int X { get; set; } public int Y { get; set; } // … ![]() |
Re: you might try replacing localhost with 127.0.0.1 You might also try going through the MySQL [URL="http://dev.mysql.com/doc/refman/5.6/en/access-denied.html"]Causes of Access Denied Errors[/URL] page. | |
Re: You may need to cast the returned control as a TextBox [CODE]t = CType(me.findcontrol("textbox" & i), TextBox)[/CODE] you may also want to check and make sure that t is not Nothing before trying to call its Text property. If the control is not found then t will not be set … | |
Re: WebForms more closely resembles developing in windows forms than MVC does. You can drag controls onto the page and things like that which may be more comfortable for you if you're not very familiar with writing html. Although, if you're not then I would suggest getting familiar with it before … | |
Re: You should be able to call the webservice using a relative url [CODE] url: "WebService.asmx/HelloWorld" [/CODE] the content type should look like this [CODE]contentType: "application/json; charset=utf-8"[/CODE] and you may need to specify the dataType [CODE]dataType: "json"[/CODE] also, your success function needs fixed [CODE] success: function(msg){ alert(msg); // this may need … | |
Re: Could you post the .aspx code for this? It's hard to figure out exactly what's going on from your description. You should probably be able to use the GridView RowCommand event to update the values of the checkboxes before opening the popup, this way you can determine which row is … |
The End.