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
4 views
Adding child nodes to Treeview Control ASP.Ned
I am trying to add the child nodes to the parent nodes in a treeview control. Everything runs fine in the degbugger, they looks as if they are getting added, but all I can see is the parent nodes. Can ...
0
votes
0answers
7 views
On closing browser tag delete particular data from sql database
I am using cookies, Like...
HttpCookie id = new HttpCookie("id");
id.Value = "2"
Response.Cookies.Add(id);
and i am using this cookies in a table
unique cookies productid
1 2 ...
1
vote
0answers
22 views
HTML (table) elements with dynamic controls?
So I don't get something that looks like this
I could use multiple placeholders to achieve this but I feel as though that is inefficient and would take longer to loop through each control. It would ...
0
votes
0answers
18 views
ASP.NET Razor: add to Model moved List box items from another list box
I have 2 list boxes like below:
@Html.ListBox("SelectedList",(IEnumerable<SelectListItem>)ViewBag.SelectedList, new { @class="listbox" , id="list2" })
<input id="btnAdd" type="Button" ...
5
votes
1answer
46 views
Send paremeter with accentuation c#
I have an page and in my Send event, I need pass as a parameter an value "Name".
But this name have accentuation and, in example for name "Raúl Lozada" sends "Raúl Lozada" to my procedure ...
1
vote
3answers
47 views
How to get javascript values on code behind in c#
I need to get javascript values on code behind in c#.I know i can use hidden field but there is no server control on page for postback.Please tell me how can get vales in code behind.
Here is my ...
3
votes
1answer
40 views
How to get session value using javascript
I have a class to deal with session variables here is sample attached:
namespace General
{
public class Session
{
public Session()
{
}
public static string ...
-2
votes
1answer
18 views
Loading HTML codes coded in a textbox to an asp.net page
I have two aspx pages. The first one have a textbox that contains series of HTML codes and the other page must use the codes in the said textbox to load its corresponding results. I've done it in ...
1
vote
1answer
17 views
Play youtube video in asp.net website from url
I have funcional code to play youtube video only from url (like youtube.com/watch?v=....). I used it from this article. However it doesnt work with shorten urls (like youtu.be/....). Is it posible to ...
0
votes
0answers
7 views
Invoking the Service through the AJAX based Client
I am trying to retrieve data from sql server by using code below.
So basically i have 3 rows in my database: ID, no1 and no2
When i use the code below it works and everything is fine. I enter the ID ...
0
votes
1answer
32 views
Server Error in '/' Application 4
Response is not available in this context.
how can i solve this problem i need some help please
i tried to solve it but i couldnt
the website work properly on my local host but when i upload it to ...
-5
votes
0answers
15 views
Please guide me logic in C#.net to get records for this week,
please guide me how to write logic for displaying ID Card Swipe data in a grid view.
Selecting from dropdownlist control for "this week", "last week","this month" and "Last month" in visual studio ...
0
votes
2answers
27 views
JQqery ajax call with parameter not working
I made a jquery ajax call for calling a static page method. It is working fine wihtout any parameter. But if I put parameter then it does not call to that page method. I have below code.
JAVASCRIPT
...
0
votes
2answers
13 views
I am using UrlRewritingNet.UrlRewrite dll, how to redirect to Error page when bad request get fired?
Currently I am using UrlRewritingNet.UrlRewrite dll for URL rewriting in Asp.Net #3.5.
Without using any special character it works fine ex. URL1.
But after giving special characters in URL it throws ...
0
votes
0answers
13 views
Long text in ssrs report viewer pushes column past end of table
I have a column in my ssrs report which holds a long text field, such as "notes". In the designer and in preview mode, even on export to excel and pdf, it looks fine. However, in the report viewer ...