0
votes
0answers
7 views
Asp.net Button component doesn't work under Twitter-Bootstrap theme
I've been using twitter-bootstrap for my asp.net website theme and I've ran into some trouble when trying to make a simple button execute an event. The button is an asp component, from what I've read ...
2
votes
2answers
26 views
How to change the root tag name in xml
I need to change the xml root tag name from "string" to "TramaOutput". How to achieve this
Thanks in Advance
public string ToXml()
{
XElement element = new XElement("TramaOutput",
...
0
votes
0answers
17 views
How to set pagetheme according to user
I want my webpage to have some theme options which will be decided according to choice of the user. As far as I know, I should set Page.Theme in the OnPreInit event. However, in that event I cannot ...
0
votes
0answers
10 views
Only column header is showing up on report viewer. No data is showing up
This is with reference to my previous question "Report not showing up on report viewer"
I am developing a c# application where I need to generate a report. I am a using a dataset which is filled ...
3
votes
0answers
14 views
ASP.Net MVC C# with Toastr not minifing javascript
I'm using ASP.Net MVC 4 - and attempting to use Toastr too.
I installed it via NuGet - and it works in development, however, when I publish, my Javascript "bundle" reports:
/* Minification failed. ...
1
vote
2answers
24 views
Excel download process die the page in case of large dataset in ASP.NET
I have developed an application where i am getting data from database ,binding it to an Infragistics grid and then downloading excel using its export utility.
There is a problem with this approach ...
0
votes
1answer
11 views
Security aspects of uploading and sharing of the documents
I have an asp.net and C# application where users upload a document and application make some changes in the document as per business logic and stores output file in a folder on application server. ...
0
votes
4answers
26 views
Why doesn't the dropdownlist selectindexchanged work?
I have a dropdownlist, in which I added 3 items. And I want that when the first Item is selected, the text of a label to change... but it is not working!
Here is the code:
protected void ...
-2
votes
1answer
30 views
Send Emails automatically at 10 AM daily using C# web application
I want to send News Letter emails automatically at 10 AM daily. I got some information about Schedule Task in web application using global file but time was not assigned. Then also checked out create ...
0
votes
0answers
7 views
how to Frame a webservice xml output and how to set attribute to xml tag
I need to write a web service(asmx) and the web service has to generate a output like the below mentioned xml. Iam new to web service i don't have any idea about how to frame the xml and how to set ...
0
votes
0answers
13 views
How to let a webpage pop up on server side
I making a Live chat using C# Aspx VS2010. Now i am able to chat between myself, as in i run using my VS2010, after key in a name it will open a client page for the client chat page to type msg and it ...
0
votes
3answers
22 views
Setting separate default page for each directory in asp.net website
My question is simple
if i have multiple directories with pages like -
/admin/adminlogin.aspx
/user/userlogin.aspx
/default.aspx
i want to set default page for each directory how ever i can set ...
2
votes
0answers
22 views
get text paragraph from pdf using itextsharp
is there any logic to get paragraph text from pdf file using itextsharp?i know pdf only supports run of texts and its hard determine which runs of texts are related to which paragraph and also i know ...
0
votes
1answer
14 views
xml dropdown list in asp.net
I want to read XML doc and show it in dropdownlist.In my XML i will have different user names and each will have one or more hobbies.Depending on the user I want to display their hobbies
...
0
votes
1answer
15 views
Report not showing up on report viewer
I am developing a c# application where I need to generate a report. I am a using a dataset which is filled with the data coming from a stored procedure which takes one parameter from the C# code. I ...