|
|
Hi,
Anybody have some guideline for me to learn more about ASP.net? i am a fresh and i so interest to learn about it...Please give me some url, thank you for your help.
Best regards,
Chee ken
|
|
|
|
|
Me also interested learn more about asp.net.
Best Regards,
Pei Sun
|
|
|
|
|
|
I was trying out this code. But .NET 2.0 display syntax error. How do I correct it?
<code>
/// <summary>
/// Gets the link text that appears in the column headers
/// </summary>
/// <param name="i">original column number</param>
/// <param name="field">column field name</param>
/// <returns>Header Text</returns>
public string GetHeaderText(int i, string field)
{
string remove = (ListStart.IndexOf(i.ToString() + ":") > -1)
? " <a href=\""multisort.aspx?c="+i+"&x=r&ls="+ListStart+""\">x</a>" : string.Empty;
return "<a href=\""multisort.aspx?c="+i+"&d="+GetDirection(i)+"&ls="+ListStart+""\">"+field+"</a>" + remove;
} </code>
syntax error of invalid expression term : and ; expected.
thanks in advance. Much appreciated.
|
|
|
|
|
Try to fix the escape sequences in code to concate strings properly, for example you might want \" instead of \""
|
|
|
|
|
wow. thanks.
thanks in advance. Much appreciated.
|
|
|
|
|
I have string = $a abc $b cde $& $a def $b ikm $& $a fgh $b htt $&
i use method Split() get a arrary Seperate by "$&" but not unsussetful beacuse method Split() have prameter is char
some body help me
|
|
|
|
|
+ Check the the overloads of the String.Split method which allow to split by another string.
+ Use the Regex.Split method. Last modified: Sunday, July 23, 2006 11:26:48 PM --
|
|
|
|
|
but in ASP.net(vb.net) haven't Regex.Split method
|
|
|
|
|
AnhTin wrote: haven't Regex.Split method
Really? How do you know?
|
|
|
|
|
yes it does. Try System.Text.RegularExpressions namespace
|
|
|
|
|
ok i find simple is Split()
|
|
|
|
|
Hi Pls any body help.
The problem i am facing is, i want to resize a datagrid in web application using ASP.NET and VB as code behind. Pls help me any body Know .In the datagrid i hve to display values from database. I found a method in windows application but want to know whether ther is any method in web appln.
-- modified at 12:42 Wednesday 26th July, 2006
|
|
|
|
|
Hi there,
micydon wrote: i want to resize a datagrid in web application using ASP.NET and VB as code behind
You can set the width property thru the code...
micydon wrote: I found a method in windows application but want to know whether ther is any method in web appln
Just simply bind data from datatable to the grid...
<< >>
|
|
|
|
|
hi can anyone help me... how can i create an onkeypress event of a textbox in asp.net 1.1? im a newbie so i don't have enough knowledge.
|
|
|
|
|
you must write a custom control ,it's difficult.
the simple way is write javascript code in client page handler your action
javascript have onkeypress event,you can search some article
|
|
|
|
|
Hi there,
You can hook this event by an js function....something like this below
textbox.Attributes.Add("onkeypress","yourJSFunx()");
<< >>
|
|
|
|
|
Hi
I have a ASP .NET 2.0 website so it has no namespaces etc like 1.x used to and all my classes are in different folders under the App_Code folder.
If i wanted to access these from another project in the solution how do i refer to them as I have no idea what name space they are under!
thanks.
|
|
|
|
|
Good question raised. I have the same problem.
thanks in advance. Much appreciated.
|
|
|
|
|
You may consider refactoring this code into a shared library so that you can reuse in multiple projects as the App_Code folder should only serves the current project.
|
|
|
|
|
Hi all,
I am doing my Master's in Computing and Information Science. For my MS I need to do two projects. One related to web as a course so I am planning to do a project in ASP.NET 2.0 using C# or VB.net and other singletone C# or VB.net as Masters project. But I am thinking either to implement one means if I created web using C# then my master's project will be in VB.net or vice versa. I am new to the .net technology but I do have enough time to learn the technology and to code. About creating web site requirements are like database backend, high performance and not regarding online shopping as all other students did that. And for Masters req. project I am free to choose any topic. So I was just wondering can anyone please help me to finalizing the project topics specially for Masters. I dont want the code but a good project topic so that I can learn .net as well as it will be a good impression on my resume to get a job. Any suggestions are welcome. Thank You.
|
|
|
|
|
Hi, I am fairly new to asp.net. I am trying to design a web page in asp.net to run on a corporate intranet that will check for the existance of several files on a clients machine. I dont need to copy / delete / move the file - just check if they are present or not. Can anyone steer me in the right direction for a solution to this problem ?
|
|
|
|
|
If this is the intranet application, you may consider using the FileSystemObject[^] with the FileExists method. It also may requires you to configure the security level in the client browser to avoid the security error.
|
|
|
|
|
you can use javascript FileSystemObject or C# code using System.IO check file use File.Exists(filePath) method,but you must let client browser allow ,you can set client browser add you websit into trustiness websit list.
it's simple settings.
|
|
|
|