Forum: ASP.NET Apr 15th, 2009 |
| Replies: 2 Views: 296 Hi,
Widows service can be used to automate tasks and does not require a user to log in.
OS loads and start the services by itself and as u install the service u give credentials and your... |
Forum: ASP.NET Apr 15th, 2009 |
| Replies: 4 Views: 1,467 Hi,
Here are mainly two ways to do this:
1. create thumbnail in same or another folder and load them first and later when licked show its corresponding image, you can create name of thumbnail... |
Forum: ASP.NET Apr 13th, 2009 |
| Replies: 3 Views: 460 Hi,
Please read following this will surely help
http://www.hunlock.com/blogs/Mastering_The_Back_Button_With_Javascript |
Forum: ASP.NET Apr 8th, 2009 |
| Replies: 6 Views: 970 Hi,
Sorry you have to search this. |
Forum: ASP.NET Apr 8th, 2009 |
| Replies: 3 Views: 627 Hi,
By identity I meant the principal object which includes the user's identity (as a contained IIdentity object) and any roles to which the user belongs.
you can use the user role to authorize... |
Forum: ASP.NET Apr 8th, 2009 |
| Replies: 3 Views: 594 try
http://www.asp.net/learn/ |
Forum: ASP.NET Apr 7th, 2009 |
| Replies: 2 Views: 493 Hi,
You can throw Exception if both the elements are set by user while reading the value of elements, or I guess you can create your attribute to resolve this. |
Forum: ASP.NET Apr 7th, 2009 |
| Replies: 3 Views: 627 Hi,
You need to work with integrated windows authentication.
Set your authentication to windows in web.config and use identity object to further authorise users.
you can read more about this... |
Forum: ASP.NET Apr 7th, 2009 |
| Replies: 3 Views: 431 Hi
This is very simple just store user identity(eg userid) in session and every time get the data associated with user from database or in case you are working with file's like images just store... |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 7 Views: 532 Hi,
Yes it is possible to create forum in PHP and use it for asp.net.
You can get some dotnet forums as well. |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 3 Views: 922 Hi
Just make response id calculated column and drive this with ID column.
you can manipulate the value's to some extent as well. |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 6 Views: 970 Hi,
There are many ways to achieve this:
1. You can use third party dlls to create charts, many are available in market, if you are lucky u will get something free.
2. You can use... |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 8 Views: 574 Hi,
Both PHP and asp.net have there strengths but definitely ASP.NET is better for big projects as it is rich in features and is very robust.
PHP's strength is in its wide acceptance and... |
Forum: ASP.NET Apr 6th, 2009 |
| Replies: 1 Views: 305 Hi,
The character set you are trying to print are special character, so this should be creating problem, I tested the problem on my setup(IIS6- asp.net 2.0) it showed weird character in both IE... |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 6 Views: 4,969 Hi,
The only thing you need to do is get the next fname from database and set its value to textbox, Now you can solve this problem with more then one way. one of the way can be:
you get fname... |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 3 Views: 785 |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 3 Views: 853 Hi,
Slovig it may be the asp.net control viewstate management that is creating problem or the code you did is having some mismatch with asp.net page working.
Please send both page(aspx) and its... |
Forum: ASP.NET Apr 3rd, 2009 |
| Replies: 7 Views: 3,383 Hi
It's quite simple since image is stored in database you cannot just give its URL to tag img or ImageField in grid, you need to create a handler which will read the image from database and send... |
Forum: ASP.NET Apr 2nd, 2009 |
| Replies: 6 Views: 520 Hi,
First keep in mind grid is used to display data in tabular format and you can control formatting for each and every cell and it's data to be displayed in table.
I think you should read more... |
Forum: ASP.NET Apr 1st, 2009 |
| Replies: 2 Views: 737 Hi,
try using this
<ItemTemplate>
<asp:Image
ToolTip='<%# (DataBinder.Eval(Container.DataItem, "Title").ToString().ToLower() == "mr")?... |
Forum: ASP.NET Mar 31st, 2009 |
| Replies: 1 Views: 393 Hi,
There is no problem using your datasource with two tables, you can still define grid in aspx anyway you can use this code example
Aspx file
<%@ Page Language="C#" AutoEventWireup="true"... |
Forum: ASP.NET Mar 31st, 2009 |
| Replies: 2 Views: 706 Hi,
you can use ParameterizedThreadStart delegate and overloaded method Thread.Start(object)
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
... |
Forum: ASP.NET Mar 31st, 2009 |
| Replies: 1 Views: 262 Hi,
You don't need to create a new page for every id, you just need to write HTTPhandler to handle this, this handler will redirect the requested page link to given page and you can use... |
Forum: ASP.NET Mar 31st, 2009 |
| Replies: 3 Views: 511 Hi,
There is no default rich text box in VS but many are available on net. you can use WYSIWYG editor as well, many are free, but read there license before using. |
Forum: ASP.NET Mar 31st, 2009 |
| Replies: 10 Views: 1,591 Hi,
Try using caching or ajax, these are the only two ways you can solve this problem. |
Forum: ASP.NET Mar 31st, 2009 |
| Replies: 3 Views: 1,842 Hi,
You can not achieve this by using following code in grid view
<script language="javascript" type="text/javascript">
function AreYouSure(snumber)
{
alert("Hello : " +... |
Forum: ASP.NET Mar 25th, 2009 |
| Replies: 1 Views: 331 Hi,
The requirement seems to be collecting information of about 300 item in a survey and each item has 4 columns attached to it and you are facing performance issue.
If what I understand is... |
Forum: ASP.NET Mar 25th, 2009 |
| Replies: 3 Views: 912 Hi,
Can you provide some more details as I am not able to recreate the problem.
I tried the following code and it seems to work fine
.cs
using System;
using System.Data;
using... |
Forum: ASP.NET Mar 25th, 2009 |
| Replies: 11 Views: 8,796 DataGrid.ItemCommand Event Occurs when any button is clicked in the DataGrid control.
So to handle event of any other control binded to grid you can use controls own event handler.
In this example... |
Forum: ASP.NET Mar 20th, 2009 |
| Replies: 3 Views: 1,097 []
Hi dear,
Your code is correct accept few problems related to it:
1. The code path = Path.Combine(imagefolder, Request.PhysicalApplicationPath); creates a wrong path, please chnage it code to... |