Hi,
I need to design a webpage where it will have many buttons/ Icons . On click of each Icon, it should call another application i.e, It should run the business models which is designed using alteryx.
Since I am newbie in .Net, Please let me know how to do the same?
Regards,
Swetha
Loading
Sam HobbsPosted Apr 6, 2011, 6:53 PM
Look for articles and books about creating web sites; especially ASP .Net web sites and applications.
Suthish NairPosted Apr 6, 2011, 11:46 AM
Krishna GaradPosted Apr 6, 2011, 1:45 AM
button1_Click(object sender,EventArgs e)
{
Response.Write("Message");
}
you can create such events for each button and proceed to you work.
wiki horizonPosted Apr 6, 2011, 1:38 AM
Basically I am developing a dashboard where I have webpage as frontend.
I need to design a webpage which will have a number of Icons. On click of each Icon, I need to call respective Business Models. Business Models have been defined already using BI Tool i.e using Alteryx. So I have integrate the Models defined with .Net. I have no clue about applications running server side n all.
As of now, let me know how to create a webpage and have few buttons. On click of each, display different messages.
Regards,
Swetha
Sam HobbsPosted Apr 5, 2011, 7:44 PM
ASP executes in a server. Are the applications also to be executed in the server? Are the applications ASP applications? If so then it is not typical to use the terminology "call another application" so that is why I suspect you might be asking how to do something other than start an ASP application. Do the applications exist already? I hope you will answer these questions well enough that we can ask more questions for more clarification.
Krishna GaradPosted Apr 5, 2011, 7:30 AM