110 Posted Topics

Member Avatar for Hakoo

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 …

Member Avatar for kvprajapati
0
210
Member Avatar for rotten69
Member Avatar for alex-i

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 …

Member Avatar for nakor77
0
75
Member Avatar for krokodajl

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.

Member Avatar for nakor77
0
120
Member Avatar for majorawsome

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; } // …

Member Avatar for majorawsome
0
156
Member Avatar for gmonroyg

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.

Member Avatar for gmonroyg
0
1K
Member Avatar for deceivingrakesh

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 …

Member Avatar for nakor77
0
97
Member Avatar for Jazerix

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 …

Member Avatar for Jazerix
0
210
Member Avatar for pritesh2010

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 …

Member Avatar for nakor77
0
148
Member Avatar for vijeevvv

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 …

Member Avatar for nakor77
0
114

The End.