Tagged Questions
ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.
0
votes
0answers
5 views
ASP.net html element onclickserver not work
i have <ul> that contains this elements :
<li><a id="testClick" href="#" runat="server" onserverclick="btnSwitch_Click">Click This</a></li>
and that works, that html ...
0
votes
0answers
3 views
wkhtmltopdf Custom header and footers with ASP.NET MVC
Anyone able to use wkhtmltopdf custom header and footer with their ASP.NET MVC? I need your help. I see that wkhtmltopdf is updated and supports some new functionality (as of v0.10.0) for header and ...
0
votes
0answers
7 views
Error on IDs in postback
I have a drop down list and i populate it with data from db , and while selecting the drop down list items , buttons will be dynamically generated depends on the selection .
But i encounter this ...
2
votes
0answers
10 views
How to keep track of pages visited by the user
I am working with a .Net(VB.Net) project. I need to keep track of the pages that my users keep visiting.
For example i have some users say
Userid Username
1 Pravin
2 James
3 ...
0
votes
2answers
14 views
Object reference not set to an instance of an object asp.net , c#
Hey guys i get this error when i try to assign CartID to a string. Would really appreciate any help. Thanks
private static string CartID
{
get
{
HttpContext cont = ...
0
votes
0answers
2 views
Can't Delete Facebook Requests (user-to-user or app-to-user request) with Facebook C# SDK or with HTTPWebRequest
I have tried almost every variation I can think of but nothing seems to work. I am trying to simply delete a Facebook request (user-to-user or app-to-user request) using the delete method of the C# ...
0
votes
2answers
19 views
Login using SQL and asp.net
The problem here is that I am getting an error 207 from SQL and its acting like the columns arent lined up. I debugged but to no avail. I have 4 columns in the database(BankAccount)
accountID, ...
0
votes
1answer
16 views
Is there a framework for tracking & notifying consumers about background tasks in an ASP.NET application?
I have a background task in an ASP.NET application that updates a database when a user logs in. A page on the site (that the user may or may not visit) uses that data to display some charts, etc. I'm ...
0
votes
1answer
10 views
ASP.Net button and jQuery PopUp Form
Below is the code I am using for my Modal Pop Up Form
$("[id*=btnFinish").live("click", function () {
$("#timeLeft").dialog({
title: "There's Time Left!!",
open: function (event, ...
0
votes
0answers
12 views
AutoMapper - mapping datatable to class object using customtype converter
I'm new to AutoMapper and have couple of questions regarding datatable to object mapping.I did some work but seems like something went wrong.
Mapper.CreateMap<IDataReader, ...
0
votes
1answer
12 views
Refreshing my gridview to show updated records
To refresh the grid I thought the databind() should be called from what I'm reading. I have my simple form collect name etc and its actually saving the information to the access database. What I'm ...
0
votes
0answers
9 views
Get stacktrace when System.Web.HttpException: Request timed
We are getting httpexception due to request timeout in our application. We found the request url from the event log and from our custom logging system but there was no complete stack trace. I tried ...
3
votes
1answer
45 views
Add different HTML according to the browser
I am using Slider in my webApp but it crashes in IE7, so i want to stop slider in IE7. Here is the ASPX code
<div id="divIE7">
<section class="masterbanner cycle-slideshow" ...
0
votes
3answers
47 views
How do I put javascript programmatically into <head> block?
I need to put some javascript absolutely in the <head> block of the page -- it must execute before the rest of the page because a possible outcome of the script is to redirect to a different ...
0
votes
1answer
14 views
Sticky Footer in Master Page Asp.Net
I had a master page set up where the footer was always at the bottom and accidentally deleted the master page. So i had to re create it and in doing so cant figure out how to get the footer back at ...