I know ASP.NET C# very well. I did a lot of research and custom web applications.
I wandered around Drupal and figured out how I have had a lot of trouble when doing “special” programmatic op
Programming language is a formal language used to define computer programs. It is a standardized communication technique used to issue instructions to a computer. A computer language allows programmers to accurately define the data that the computer needs to use, and precisely define the actions that should be taken in different situations.
I know ASP.NET C# very well. I did a lot of research and custom web applications.
I wandered around Drupal and figured out how I have had a lot of trouble when doing “special” programmatic op
I am working on a mailbox project, and I have these two structures:
struct mmbox_mail
struct mmbox_mail {
char *sender, *recipient;
char *obj, *date;
char flags;
size_t size;
};
I followed How do you get the footer to stay at the bottom of a Web page? post on stackoverflow…
But I can’t Make it work in an asp.net web application…. I am using the master page of all
I am using C#’s drop-down list in ASP.NET.
I am trying to bind a dictionary to the drop-down list.
How to specify “text” (the key of the dictionary is the drop-down text) and “value” (v
I am trying to convert a Qt4 application to Qt5.
The only thing I want to know is how to get the HWND of the Widget.
This program uses EcWin7 to display tasks on win 7 The progress of the bar ico
I know this seems to be a very basic question, but I can’t figure out how to focus the text box on PageLoad.
Because of this It’s a login control. I didn’t control each text box separately th
So I’m attacking .net core and launched a new asp.net core application. I created a .net core class library and included a reference to the Entity Framework core . I created a context and I tried t
Using visual studio 2008. When I add a new aspx form to the project, even if there is one in the project, I cannot select the master page. How to enable this option? It appeared automatically in th
I have an ASP.NET page, the user needs to select TimeSlot on this page, such as 10am Pacific Standard Time, 10:15am Pacific Standard Time… etc., interval 15 minutes (flexible).
Using JQuery
I tried this code:
class A
{
virtual void foo( ) = 0;
};
class B
{
virtual void foo() = 0;
};
class C: public A, public B
{
//virtual void A::foo(){}
//virtual void B::foo(){}
virtual