Forum: ASP.NET 7 Days Ago |
| Replies: 5 Views: 618 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 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 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 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 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 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 check this: http://oreilly.com/catalog/progaspdotnet/chapter/ch14.html |
Forum: ASP.NET Oct 16th, 2009 |
| Replies: 2 Views: 324 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 Watch this video:
http://www.asp.net/learn/videos/video-8605.aspx |
Forum: ASP.NET Oct 15th, 2009 |
| Replies: 10 Views: 741 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 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 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 |
Forum: ASP.NET Oct 15th, 2009 |
| Replies: 1 Views: 315 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 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 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 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 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 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 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 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 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 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 This is a nice reference:
http://oreilly.com/catalog/progaspdotnet/chapter/ch14.html
... |
Forum: ASP.NET Oct 13th, 2009 |
| Replies: 1 Views: 223 --->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 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 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 --> 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 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 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 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 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 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 ----> "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 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 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 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 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 Check this:
http://blog.krisvandermast.com/UsingVBNETAndCInTheSameASPNET20Project.aspx |
Forum: ASP.NET Jul 27th, 2008 |
| Replies: 1 Views: 732 did you check this out: http://www.velocityreviews.com/forums/t118040-net-20-vb-code-and-c-code-mixed.html |