Search Results

Showing results 1 to 40 of 40
Search took 0.01 seconds.
Search: Posts Made By: guru_sarkar
Forum: ASP.NET 7 Days Ago
Replies: 5
Views: 618
Posted By guru_sarkar
It will take you to another page named Entry.aspx with querysting parameters having values in textbox1 and textbox2...eg.
if you entered - joe in textbox1 and 15 in textbox2 you will be taken to new...
Forum: ASP.NET 31 Days Ago
Replies: 5
Views: 696
Posted By guru_sarkar
Not sure ...because I took your code, moved the Label within UP and it worked.
do you mind creating a test page... and trying this sample to see if your ASP.NET ajax is working.
...
Forum: ASP.NET 32 Days Ago
Replies: 3
Views: 330
Posted By guru_sarkar
Thats true. You might need more time than a professional but ideally cost should not vary much for the end product. If you take more hours being fresher your /hour rate will be low as well while...
Forum: ASP.NET 32 Days Ago
Replies: 5
Views: 696
Posted By guru_sarkar
Actually your code is doing a Partial PostBack...But Your Label is outside of UpdatePanel....so upon partial postback only Contents inside of UpdatePanel will be update and not the Label Text which...
Forum: ASP.NET 32 Days Ago
Replies: 6
Views: 495
Posted By guru_sarkar
I just copy Pasted your code, added my own DataSource and it works.
It shows me alert 'hey' message when i click the checkbox to check/unchek an item.

How are you dataBinding your CBL?
Forum: ASP.NET Oct 23rd, 2009
Replies: 1
Views: 369
Posted By guru_sarkar
You must intialize ds
e.g. DataSet ds = new DataSet();

Check this eg:
http://msdn.microsoft.com/en-us/library/bh8kx08z(VS.80).aspx
Forum: ASP.NET Oct 16th, 2009
Replies: 3
Views: 286
Posted By guru_sarkar
check this: http://oreilly.com/catalog/progaspdotnet/chapter/ch14.html
Forum: ASP.NET Oct 16th, 2009
Replies: 2
Views: 324
Posted By guru_sarkar
or you can do that in markup...
check in GV Properties Window for RowStyle-> Set the Height

your GV markup will look something like below:

<asp:GridView ID="GridView2" runat="server" ..>
...
Forum: ASP.NET Oct 16th, 2009
Replies: 2
Views: 18,248
Posted By guru_sarkar
Watch this video:
http://www.asp.net/learn/videos/video-8605.aspx
Forum: ASP.NET Oct 15th, 2009
Replies: 10
Views: 741
Posted By guru_sarkar
oh I see....looks Repeat Layout could be the issue. I have a cssClass for ItemStlye.
check my test DL code:
<asp:DataList ID="DataList1" runat="server" DataSourceID="SqlDataSource1"
...
Forum: ASP.NET Oct 15th, 2009
Replies: 10
Views: 741
Posted By guru_sarkar
sorry what works for me is:
e.Item.Style["background-image"] = "url(images/test1.jpg)";
NOTE: I don't have ./ in front of images
Forum: ASP.NET Oct 15th, 2009
Replies: 10
Views: 741
Posted By guru_sarkar
ok check this:
1: when page is displayed in the browser can you view source and see if style is added to the item
2: its the path and so can you try removing '.' from your path...
Forum: ASP.NET Oct 15th, 2009
Replies: 10
Views: 966
Posted By guru_sarkar
what is the problem.
Forum: ASP.NET Oct 15th, 2009
Replies: 1
Views: 315
Posted By guru_sarkar
1: Sample path:
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data
2: Connection String varies depending on how your hosting provider gives you access to the Db. Contact them to get the...
Forum: ASP.NET Oct 15th, 2009
Replies: 4
Views: 515
Posted By guru_sarkar
1: not sure if you want that regularExpression for email. If you select RgexValidator in Designmode and look at ValidationExpression propertie you can select Internet Email address
i.e....
Forum: ASP.NET Oct 15th, 2009
Replies: 6
Views: 403
Posted By guru_sarkar
Looks either you are misunderstanding Sql Membership or I am still unable to get your question. So..
1: Sql Memberhship provider uses Membership tables provied by MS. Do you want to use any of those...
Forum: ASP.NET Oct 14th, 2009
Replies: 4
Views: 376
Posted By guru_sarkar
ok sorry looks you are using HtmlInputFile control.
To me it looks WebFilePath.ToString is not the proper path:

To degub try this and see the path displayed is correct:

...
Forum: ASP.NET Oct 14th, 2009
Replies: 10
Views: 741
Posted By guru_sarkar
can you try the code below instead of css.
here the" url(...)" string you should determine dynamically per your teamname.

e.Item.Style["background-image"] = "url(/images/Liverpool.gif)";
Forum: ASP.NET Oct 14th, 2009
Replies: 4
Views: 376
Posted By guru_sarkar
The exception is of type DirectoryNotFoundException. So check before upload if the particular directory exist.

Also are you using asp.net Upload Control or share your markup as well.
You code...
Forum: ASP.NET Oct 14th, 2009
Replies: 10
Views: 741
Posted By guru_sarkar
Check this: http://msdn.microsoft.com/en-us/library/6y92e1ze(VS.80).aspx

You will have to use ItemDataBound Event like shown below:

protected void DataList1_ItemDataBound(object sender,...
Forum: ASP.NET Oct 14th, 2009
Replies: 1
Views: 222
Posted By guru_sarkar
Do you mean custom controls or normal Web user controls?
The reason to add entry to your web.config is you don't have to register them on every single page you are planning to use them on.

This...
Forum: ASP.NET Oct 14th, 2009
Replies: 1
Views: 339
Posted By guru_sarkar
modify your sitemap url like below:
<siteMapNode url="" title="" description="">
<siteMapNode url="http://www.cnn.com" title="CNN" description="CNN News" />
<siteMapNode...
Forum: ASP.NET Oct 14th, 2009
Replies: 6
Views: 403
Posted By guru_sarkar
Can you explain that a bit.

Do you mean you don't want to use default database used by SqlMembership Provider?
Forum: ASP.NET Oct 14th, 2009
Replies: 1
Views: 268
Posted By guru_sarkar
This is a nice reference:
http://oreilly.com/catalog/progaspdotnet/chapter/ch14.html
...
Forum: ASP.NET Oct 13th, 2009
Replies: 1
Views: 223
Posted By guru_sarkar
--->Explain me the viewstate with the coding?
http://www.codeproject.com/KB/aspnet/BegViewState.aspx

--->Suppose in textbox1.text contains ASP.net & I set EnableViewState to False of...
Forum: ASP.NET Oct 13th, 2009
Replies: 1
Views: 166
Posted By guru_sarkar
Not sure if that is doable with default ValidationSummary. May be you need to write your own Custom Summary control.
Sorry ..no idea about that as well.
Forum: ASP.NET Oct 13th, 2009
Replies: 3
Views: 1,509
Posted By guru_sarkar
Check if this helps:

JS:
<script type="text/javascript" language="javascript">
function validate(sender,args) {
args.IsValid = false;
var tb =...
Forum: ASP.NET Oct 13th, 2009
Replies: 2
Views: 233
Posted By guru_sarkar
--> IIS and .NET Framework is what you will need First
as mentioned in previous post Web PI will help you get all that.

--> For IDE you can use Visual Studio 2008 Professional if you are planning...
Forum: ASP.NET Oct 12th, 2009
Replies: 4
Views: 300
Posted By guru_sarkar
hmm not sure...can you post the entire error message.
First try the option -1 i.e. just adding static to the LogoWidth variable.
Check your EventLog to see if you can find any specific error...
Forum: ASP.NET Oct 12th, 2009
Replies: 3
Views: 263
Posted By guru_sarkar
Not sure if the code you provided above is exactly the same or messed up in the editor but look the foreach loop code below. Not the debugging statement:

foreach (ShoppingCartItem item in...
Forum: ASP.NET Oct 12th, 2009
Replies: 4
Views: 300
Posted By guru_sarkar
Everytime you click a button upon postback your LogoWidth is reset to 150 so you won't see the effect after first click.
Two options:
1: make LogoWith static
i.e. public static void...
Forum: ASP.NET Oct 12th, 2009
Replies: 2
Views: 243
Posted By guru_sarkar
Can you check if you have properly installed .NET FrameWork ..2.0 ,3.5.
Go to Framework directory and see if you have those csc.exe:

On XP path could be...:(check appropriate path on your laptop)...
Forum: ASP.NET Oct 12th, 2009
Replies: 2
Views: 330
Posted By guru_sarkar
Looks authentication Mode in your web.config is set to Windows.

you web.config should have Forms Authentication enable like below:

<authentication mode="Forms" />

Check this:...
Forum: ASP.NET Oct 12th, 2009
Replies: 1
Views: 399
Posted By guru_sarkar
----> "The problem is anyone can just type /admin/default.aspx and get onto the admin page, i want to them to be redirected to the login page till they use the correct password."

Looking at your...
Forum: ASP.NET Oct 12th, 2009
Replies: 2
Views: 317
Posted By guru_sarkar
try this:
1: use relative url "~/..."
2: set these two attributes for your divs: id and runat="server"
Forum: ASP.NET Oct 12th, 2009
Replies: 2
Views: 379
Posted By guru_sarkar
Did you come across this one ?
http://www.beansoftware.com/ASP.NET-Tutorials/FormView-Control.aspx
Forum: ASP.NET Oct 12th, 2009
Replies: 5
Views: 618
Posted By guru_sarkar
You should look for FormsAuthentication:
Check this:
http://www.codedigest.com/Articles/ASPNET/112_Implementing_Forms_Authentication_in_ASPNet_20.aspx

Although it uses SqlServer DB ...the idea...
Forum: ASP.NET Oct 12th, 2009
Replies: 2
Views: 350
Posted By guru_sarkar
You should be using SqlConnection and SqlCommand objects to do this insert.
On the button click follow the code in this link below for method Insertdata().
Your insertString will change a bit to...
Forum: ASP.NET Oct 27th, 2008
Replies: 1
Views: 530
Posted By guru_sarkar
Check this:
http://blog.krisvandermast.com/UsingVBNETAndCInTheSameASPNET20Project.aspx
Forum: ASP.NET Jul 27th, 2008
Replies: 1
Views: 732
Posted By guru_sarkar
did you check this out: http://www.velocityreviews.com/forums/t118040-net-20-vb-code-and-c-code-mixed.html
Showing results 1 to 40 of 40

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC