Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 4
1
2
3
>
Last
»
Showing results 1 to 25 of 84
Search took
0.21
seconds.
Search:
Posts Made By:
handshakeit
Forum:
ASP.NET
06-03-2006, 07:17 AM
Replies:
4
to display a message on an aspx page
Views:
1,148
Posted By
handshakeit
just use this code ...
just use this code
Button1.onClientClick=window.confirm("Are You Sure?");
or in aspx file add this attribute in buttons tag
onClientClick="window.confirm('Are You Sure?');"
Forum:
ASP.NET
06-01-2006, 11:58 AM
Replies:
0
Questions regarding Gridview
Views:
1,044
Posted By
handshakeit
Questions regarding Gridview
Hello All Great Programers,
I have two problems with gridview design.
1>how can I have Border around the gridview only(Excluding Pager)??
If i add border to gridview it also got border around...
Forum:
ASP.NET
05-30-2006, 11:23 AM
Replies:
1
Tab pages controls validation
Views:
752
Posted By
handshakeit
You must validate on the lost focus event of the...
You must validate on the lost focus event of the tab.......
Forum:
ASP.NET
05-29-2006, 01:05 PM
Replies:
2
disconnected connection
Views:
990
Posted By
handshakeit
Hello sachin ADO.Net works on both connected...
Hello sachin
ADO.Net works on both connected and disconnected environment,
DataSet works on Disconnected environment.
Disconnected means there is no connection with the database.
Disconnected...
Forum:
ASP.NET
05-29-2006, 12:53 PM
Replies:
2
Access controls placed in Datalist
Views:
3,718
Posted By
handshakeit
What do you want to do ? U can access tha label...
What do you want to do ?
U can access tha label at the time of item created
protected void DataList1_ItemCreated(object sender, DataListItemEventArgs e)
{
Label l =...
Forum:
ASP.NET
05-29-2006, 12:47 PM
Replies:
4
create a pdf file on clicking a button in an aspx page
Views:
1,373
Posted By
handshakeit
Read it ...
Read it
http://www.pdfonline.com/absolutenew...r.asp?a=14&z=5
Forum:
ASP.NET
05-25-2006, 08:52 AM
Replies:
3
How can I position the control relatively
Views:
827
Posted By
handshakeit
it seems you select the Absolute position instead...
it seems you select the Absolute position instead of relative
Forum:
ASP.NET
05-23-2006, 12:15 PM
Replies:
3
sort the grid
Views:
878
Posted By
handshakeit
its ok but i hav to show two different buttons in...
its ok but i hav to show two different buttons in the header one for sort in ascending order and other for descending order
any idea how to do it ?????
Forum:
ASP.NET
05-23-2006, 12:12 PM
Replies:
3
How can I position the control relatively
Views:
827
Posted By
handshakeit
Just select the control and in menu bar select...
Just select the control and
in menu bar select layout>position>Relative
now drag the control on the page where you want
Forum:
ASP.NET
05-23-2006, 06:50 AM
Replies:
1
open a pdf
Views:
754
Posted By
handshakeit
open a pdf
Hello All
I have one more question How to open a pdf file in a web page
that is stored in a directory on server
Forum:
ASP.NET
05-23-2006, 06:45 AM
Replies:
3
sort the grid
Views:
878
Posted By
handshakeit
sort the grid
Hello
I want to know how to sort the records in a Gridview control according to each collumn in both ways ie.ascending and descending order....
plz help it is very urgent.
Forum:
ASP.NET
05-22-2006, 10:23 AM
Replies:
2
namespace does not appear automatically in code behind in VS 2005.net
Views:
2,152
Posted By
handshakeit
By default installation it includes the default...
By default installation it includes the default name spaces
I think u have already done some modification in environment settings.
Forum:
ASP.NET
05-16-2006, 11:44 AM
Replies:
2
lncluding a file that is in a different folder in the directory
Views:
823
Posted By
handshakeit
Try <% strConnect = "Provider={Microsoft...
Try
<%
strConnect = "Provider={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("~/databases/imagedb.mdb") & ";"
%>
Forum:
ASP.NET
05-16-2006, 11:37 AM
Replies:
1
Specified cast is not valid.
Views:
1,996
Posted By
handshakeit
You can not cast Collection in Textbox....... ...
You can not cast Collection in Textbox.......
use
string ItemNo = me.DataGrid1.DataKeys(E.Item.ItemIndex).Value.ToString()
Forum:
ASP.NET
05-15-2006, 10:40 AM
Replies:
6
Edit datagrid
Views:
1,335
Posted By
handshakeit
Yoou need to define a relation between the two...
Yoou need to define a relation between the two tables
and same in the dataset
Forum:
ASP.NET
05-11-2006, 12:26 PM
Replies:
4
Insert problem
Views:
1,462
Posted By
handshakeit
I could not find any error in code Run program...
I could not find any error in code
Run program in debug mode u will find it yourself.....
Forum:
ASP.NET
05-11-2006, 12:01 PM
Replies:
3
try-catch-finally block
Views:
1,173
Posted By
handshakeit
I hav just tried it if we use ...
I hav just tried it
if we use
Application.Exit();
in try block it even doesn't execute next statement to it in block
and doesn't go to the finally block
Can u Expalin it ??
Forum:
ASP.NET
05-11-2006, 10:45 AM
Replies:
3
Urgent....ASP.net + XML + CSS
Views:
835
Posted By
handshakeit
to use a css file u just use the StyleSheet...
to use a css file u just use the StyleSheet property browse ther ur css file.
Forum:
ASP.NET
05-11-2006, 08:45 AM
Replies:
1
ASP.NET & MySQL (SQLyog)
Views:
1,189
Posted By
handshakeit
Search on google "ASP.Net Tutorial" You will...
Search on google "ASP.Net Tutorial"
You will found yourself
Forum:
ASP.NET
05-11-2006, 08:40 AM
Replies:
3
try-catch-finally block
Views:
1,173
Posted By
handshakeit
try-catch-finally block
Hello all
I Know that in try-catch-finally block the code inside the finally block is always executed whether there is exception or not.
my question is what will happen if we terminate the...
Forum:
ASP.NET
05-10-2006, 06:16 AM
Replies:
2
lookup datagrid item row
Views:
1,740
Posted By
handshakeit
how to decide which cell is to select on ouside...
how to decide which cell is to select on ouside button click ????
Forum:
ASP.NET
05-10-2006, 05:58 AM
Replies:
3
I'm I missing something here?
Views:
771
Posted By
handshakeit
sub page_load() if IsPostBack then ...
sub page_load()
if IsPostBack then
lblout.text = txtWord1.text
call insertLineBreak(lblout.text, _
NumberOptions.SelectedItem.Value, _
...
Forum:
ASP.NET
05-10-2006, 05:43 AM
Replies:
3
version problem
Views:
757
Posted By
handshakeit
Thanx
Thanx for reply
I will try it n let you know later if it work
Forum:
ASP.NET
05-09-2006, 01:15 PM
Replies:
3
version problem
Views:
757
Posted By
handshakeit
version problem
Hi
I hav a problem I have installed .net 2003 and 2005 both installed previously at my machine
now i hav un installed 2005
now i could not run the projects created in 2005 version, it is...
Forum:
ASP.NET
05-08-2006, 02:18 PM
Replies:
1
Listbox selection
Views:
782
Posted By
handshakeit
suppose u want to add at select change event then...
suppose u want to add at select change event then simply use
protected void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
ListBox2.Items.Add(ListBox1.SelectedValue);
}
Showing results 1 to 25 of 84
Page 1 of 4
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
03:04 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.