ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.
0
votes
0answers
7 views
How to get checkbox values from another form with asp .net MVC4?
Here is a simplified example. My first form :
@using (Html.BeginForm("Action1", "MyController", FormMethod.Post))
{
<input id="cb" type="checkbox" value="true" name="MyCheckBox" ...
0
votes
0answers
7 views
What is the Better Idea to store Images?
What would be the better Idea to store Images ? Is it Database (or) any hosting ?
(or) Is there any other idea to store images using ASP.net.
0
votes
2answers
16 views
Email Support section with the users address as “From address”
I need to implement a “email support” section in our application. So email “To” address will be [email protected]” and from address will be the email address of the end user.(The end users email ...
1
vote
1answer
33 views
“Visible” is true, but it not working
This is my code:
string result = BackUp.BackupDatabase(folder, fileName);
if (result == "Complete")
{
BackupSuccessfullyLbl.Text = "BackUp created successfully.";
...
0
votes
0answers
16 views
To display the webpage again, Internet Explorer needs to resend
In my ASP.NET WebForms page I have a Modal window that pops up. The javascript code for displaying this modal window is as follows:
function OpenMailAddressWin(subscriberContactRelationGid, routeId, ...
0
votes
2answers
11 views
sql query for list of all users details in Membership
I'm using .net Membership for user management, I I'd like to make a page for admin that lists all users details.
The Membership system created tables in my sql database server and I'm trying to get ...
0
votes
2answers
23 views
Replace HTML content in gridview with Linkbutton
I want to replace content in a column of my gridview (containing Textbox) with Linkbutton. Indeed, this column contains HTML pages. And I would like to open new windows with these pages HTML ...
0
votes
2answers
8 views
ListView Item binding does not work
I'm new to asp.net(webforms). I follow this tutorial --> http://www.asp.net/web-forms/tutorials/aspnet-45/getting-started-with-aspnet-45-web-forms/ui_and_navigation
in the Site.Master I've added the ...
0
votes
2answers
19 views
Page.Form.DefaultButton doesn't work in a page with no input
It is me or Page.Form.DefaultButton doesn't seem to work in a page with no input ? I tried looking for this information but found nothing. Cause right now I am on a page where I set the default button ...
0
votes
1answer
16 views
bind image from database to datalist
I am binding image to datalist.
My imagename is in database, i am taking it and wants to bind it to datalist.
I have tried following:
<asp:DataList ID="dlImages" runat="server">
...
1
vote
0answers
15 views
ASp.net site upload problems
i have made a site in asp.net with backend as Access database , later i replaced it with mysql database,
The problem is i have uploaded my entire site on a host which provides the asp.net hosting and ...
0
votes
2answers
51 views
Not sends email to more than one address
I have an problema to send more than one email in my web app.
If I send to just one address, it send normally!
My string list is correct, because if I paste in Outlook and send manualy, all adressess ...
0
votes
0answers
4 views
Dynamic hierarchy sitemap asp.net
Hi i need to build dynamic hierarchy sitemap . Here is my xml
<!--company tab-->
<siteMapNode url="~/Module/EB/Company/CompanyList.aspx" title="Company list" description="Company List" ...
0
votes
0answers
28 views
data column to 2 new columns
any links or comment would be helpful
I have a database which looks like this in the asp page:
monday tuesday wednesday
car apple 1
bmw pear 2
corsa berry 4
...
1
vote
1answer
26 views
How to compare Starting time and End time of a event with existing events of same time on same day?
I am using MS SQL server 2008. Here I need to compare the newly entered start time and End time of an event with the existing event timings. In the Database I need to check the new Starting time and ...