Forum: ASP.NET Jun 29th, 2009 |
| Replies: 5 Views: 1,855 hi..actually i am developing a web application wherein i need to print barcodes at client side.
i have the PCL file that would print the barcode but the problem lies in printing at the client side... |
Forum: C# May 21st, 2009 |
| Replies: 8 Views: 1,676 i hope it helped you,if it did then mark it as solved... :) |
Forum: ASP.NET May 21st, 2009 |
| Replies: 1 Views: 1,222 <html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript"> |
Forum: C# May 21st, 2009 |
| Replies: 8 Views: 1,676 i did the same thing using javascript..may be that helps you..
here is the javascript code:
<html>
<head>
<title></title>
</head> |
Forum: C# May 21st, 2009 |
| Replies: 2 Views: 257 use split function
string output=path.Split('.'); |
Forum: ASP.NET May 19th, 2009 |
| Replies: 3 Views: 406 if thats the case then you just need to show the required pages..i mean its upto u what pages u want to give access to...to remove the menus simple dont show them...
i had a similar requirement but... |
Forum: ASP.NET May 18th, 2009 |
| Replies: 3 Views: 406 you can save the role in a session variable and accordingly show the respective pages..
eg.
if(txtusername.Text=="ADMIN")
{
show desired pages
}
else
if(txtusername.Text=="USER")
{
show... |
Forum: PHP May 18th, 2009 |
| Replies: 14 Views: 868 try this..
select t.id,t.from,t.to,t.date,t.fare,s.seat,u.first_name,u.last_name from trip t,seat s,user_information u where t.id=s.id |
Forum: JavaScript / DHTML / AJAX May 13th, 2009 |
| Replies: 0 Views: 2,115 hi ,
actually i am developing a web application in asp.net using c#.
i have come across a requirement to read a excel file without going to the server . i need to use javascript for the same.
so... |
Forum: C# Apr 30th, 2009 |
| Replies: 1 Views: 744 hi..
you can make use of the connectionstring as shown below:
string str = "Data Source=*name of your SQL server*;Initial Catalog=*your database name*;Integrated Security=True";
... |
Forum: C# Apr 30th, 2009 |
| Replies: 2 Views: 243 hi..well first you need to create a table in database to be able to maintain the users who can log in...
in your application connect to the database and try the following code at your Login button..... |
Forum: C# Apr 23rd, 2009 |
| Replies: 4 Views: 1,281 thanks for replying...its a web application and i got the answer.. |
Forum: C# Apr 22nd, 2009 |
| Replies: 4 Views: 1,281 hi..
well i have a gridview on a page and when the user selects the gridview row then that gridview row should be redirected to a new page.
this new page has another gridview which i need to... |