asp.net

insert below the header in gridview and not in the footer?

using asp.net/sqldatasource/vb Is there a way to place the insert row below the header in a gridview instead of in the footer? ...

Changing a GridView item's font weight

I have a gridview that contains one linkbutton within itemtemplate. I bind this gridview with a table from my database that displays different items. When the gridview displays records and when the user clicks on an item of gridview then how can i change that item's fontweight to bold and change that same item's color. ...

How to create an Ilist from DataTable with unknown columns.

I have a DataTable that was built from dynamically created SQL, so I do not know the number of columns in the datatable. How can I convert this datatable into an IList? EDIT: I am then going to use this to send to a Telerik Grid on the page. ...

Master Page Validation Issue With Default Arguments

I have implemented a helper extension method on an interface that my Master page implements called "Url" to create URLs using business logic. This allows me to do this on my Master markup... <a href="<%=this.Url("/mypage.aspx", forceHttps: true)%>">Click Me Secure</a> <a href="<%=this.Url("/mypage.aspx")%>">Click Me Not Secure</a> As...

jQuery UI Dialog on jQuery Validation Plugin in ASP.net: Can this work?

I'm currently trying to run jQuery Validation plugin inside a jQuery dialog. The code is as such in the document.ready: $("#Dialog").dialog({ bgiframe: true, autoOpen: false, height: 600, width: 590, modal: true, resizable: false, open: function (type, ...

How to get previous row's specific value to compare with next row value in a gridview

I have a GridView which binds data from DB, and using rowboundevent, I want to get the second cell value of each row and compare it with the second cell value of next row. If they are the same then the cell should be empty, else the value should be written in the cell. ...

Is it bad to declare a page variables in ASP.NET?

Not sure if "page variable" is the right word, but i'm thinking something like this: using System; . . . namespace whatever { public partial class Submit : Page { int id; protected void Page_Load() { id = getid(); } . . . Obviously I will be using id at some point later (not in PageLoad)....

simple MVC form post and url routing question....I hope.

I have a view called Associations that has a drop down list and a button. When the user selects an option and presses submit, I want them to go to Association/{associationKey}. Association needs to work on get and post. Currently, with the code below, when the form is posted, it DOES go to Association and displays the correct record, ...

ASP.NET Server Controls that mimic standard control functionality - painted into a corner?

We are using a bunch of server controls of every flavor that mimic all the standard controls and then some (all the way down to a control that emits Header HTML tags and horizontal lines). Deep down, they inherit from WebControl but fully render the HTML, rather than inheriting from Textbox, etc. They do not use Control Adapters and hand...

Foregin key constraint error but shouldn't be occuring

I have a list table with 5 entries in it, the first column in the identity column (PK), within a parent table is a column that is related to this list table by ID (FK). I am using C# in a web app to run an ExecuteScalar with a stored procedure to insert the items into the parent table. This is within a SQL database LIST TABLE: ID INT ...

What are benefits of using a ScriptManager instead of just a client side <script> tag?

I am writing a small asp.net WebForms app. that uses Jquery. Is there any benefit to using the ASP.Net ScriptManager control as opposed to just using the tag to import my Jquery and custom javascript code? ...

How to connect to modems within tcp clients in multiple port or other way?

I have around 5000 modem (thin clients), and I want to communicate with them, one of a my method is like this : string GetModemData(modemID), now I have an open port in server that listens to modem and I'm using socket programming to send data to modems (calling related function), but when i want send data to multiple modem in a same tim...

ASP.NET MVC Int Array parameter with empty array defaults to {0}

I have a controller action like: Public ActionResult MyAction(int[] stuff){} I make a JSON request like: $.getJSON(url, { stuff: [] }) When it gets to C# it looks like an array with one element in it, which is zero (i.e. like if I did int[] stuff = {0};). Is this new with MVC 2 or .NET 4? It seems to have changed recently, but I ...

ASP.net Custom Errors Loggin

I'm using the customErrors attribute of the web.config file to present custom errors pages: <customErrors mode="On" defaultRedirect="/errorpage.aspx"> <error statusCode="404" redirect="/404Page.aspx"/> <error statusCode="403" redirect="/403page.aspx"/> </customErrors> Nothing too fancy. Now what I want to do is log the error ...

Read Flash Cookie from javascript or ASP.Net

We have a flash video that was created for our project, we dont the source so we have to work around the compiled flash file. We are going to host the video on our domain and the video creates a sol cookie (flash cookie) file to store how far the user has proceeded though the video. So my plan is to access this cookie to see how far th...

Replace part of text in a dynamic string

Hello, Let’s take this string has an example: D:/firstdir/Another One/and 2/bla bla bla/media/reports/Darth_Vader_Report.pdf I want to cut the first part of the path: D:/firstdir/Another One/and 2/bla bla bla And replace it with **../**, and keep the second part of the path (media/reports/Darth_Vader_Report.pdf) If I knew the leng...

javascript error: this.node is null or not an object

I am working on ASP.NET 3.5, c#, visual studio 2010. I have made a master file and a default page that uses this master file. I have placed a couple asp:contentplaceholders in the master and corresponding code in the page that uses this master. I have also inserted JavaScript like this in the content page (and not the master): <asp:Cont...

Automatically create directories from long paths

I have a collection of files with fully qualified paths (root/test/thing1/thing2/file.txt). I want to foreach over this collection and drop the file into the location defined in the path, however, if certain directories don't exist, I want them to great created automatically. My program has a default "drop location", such as z:/. The ...

ajax dropdown with clientside filtering capability

Can any one provide me an idea about any ajax control which has following capabilities: User should able to type to get auto-suggestions Dropdown should only display the values starting with the keyed-in characters. Most importantly there should be only one postback to fetch all the data to client side on the first key-in and then shou...

How can I share application cache between two ASP.NET applications

Here's the deal, I have one website over at utopiapimp.com. The website is used for a popular web based game. Some company internets don't allow the website to be accessed so I opened up another domain at utopiashrimp.com. Same website but a different iss application. Both have same database backends. They also both sit on the same virt...