Generate HTML file in c# on click button [closed] - c#

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
How can i create HTML file on submit button click in c#,I don't know any syntax about this ,Please suggest me How to create Html page in C#

You might want to take a look at some beginner tutorials:
http://www.w3schools.com/aspnet/
http://www.asp.net/web-forms/tutorials

Try to use Generic Handler in web application ( http://www.codeproject.com/Articles/353260/ASP-NET-Advanced-Generic-Handler-ASHX )...

Related

Create own widget in C# and add to Table [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I learning to create android app in C# (VisualStudio) and I need create table with my own widget.
I upload data for my server SQL. Any idea how can I do this?
Presentation
If your requirement is for cross-platform, then you are probably looking for a ListView or CollectionView. Please refer to the below links.
https://learn.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/listview/customizing-cell-appearance#custom-cells
https://learn.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/collectionview/layout#vertical-list
In case, if you are looking it only for Android, please refer to the below link to customize the appearance of the ListView as you desire.
https://learn.microsoft.com/en-us/xamarin/android/user-interface/layouts/list-view/customizing-appearance

how to print a page using asp:button in c# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want print the current page when click on asp:button. How can to achieve that?
I have google this thing for help but every time I end up finding it for windows application and I am working on web application in .net.
Is there any command or any jquery which can help me to do that?
Please suggest something!
You can try window.print() (javascript):
http://www.w3schools.com/jsref/met_win_print.asp

how read and write to stylesheet in asp.net mvc? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to let my users edit css files.
so I need to load (Read) one of my stylesheets to a textarea and then save (write) it into same stylesheet,
how i can do it?
It's just a file containing plain text. Simply load its contents and then save it back.. Simple File methods should be ok, maybe implement some kind of a text highlighter to allow nicer editing.

Make form labels dynamic based on selected language [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to create a aspx page using c# which can be displayed in English and Dutch both languages.
Can any one give me any idea how to do it?
See this tutorial
Walkthrough: Using Resources for Localization with ASP.NET
http://msdn.microsoft.com/en-us/library/fw69ke6f(v=vs.90).aspx

How do I use updatePanel in asp.net without refreshing all page? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to design a website which contains sub-categories of a product in asp.net(c#).
When I clicked a sub-category, then an image of product must be shown and the main page shouldn't be refreshed. How can I succeed it?
Read these tutorials Asp.net Update Panel and Introduction to the UpdatePanel Control
Simple and understandable
Please refer below Ajax overview:
http://msdn.microsoft.com/en-us/library/bb386454.aspx

Categories