2
Answers

ASP.NET MVC Toolkit

Hi,
I hope am in the right forum, to ask this question and i know new kids to ASP.NET MVC  platform like me also ask this question.
 
I worked proficiently with ASP.NET using all the Visual Studio's till 2013 and DOT NET FRAMEWORK 4.5, during all my work with ASP.NET we use it TOOLKIT control to design the user interface and Design screen to preview while  C# for the code behind.
Why is it that ASP.NET MVC do not have ToolKit and Design screen, if they have where can one activate it, because it making coding more time consuming, or can i design in ASP.NET then paste it on the Layout View of MVC?
 
Thank you for your answer. 
Answers (2)
1
varsha dodiya

varsha dodiya

NA 415 42.8k 10y
i solved it 

Select Cast(SUM((O_ttotal + P_vatto) * (P_totdis / 100)) As Decimal(9,2)) As TotalDiscount From PRO_BILL
0
varsha dodiya

varsha dodiya

NA 415 42.8k 10y
@Abrar that i also know, in this way i get two answers i want the whole total of (A+B+C) not (A+B) and C
0
Khan Abrar Ahmed

Khan Abrar Ahmed

NA 5.8k 200k 10y
HI, when you are using the aggregate sql function then you have to define the group by clause.

like 
cmd = new SqlCommand("Select (SUM(P_ttotal)+SUM(P_vatto)* (P_totdis)/100) as dis  from PRO_BILL group by P_totdis", conn);