Showing posts with label task. Show all posts
Showing posts with label task. Show all posts

Thursday, March 29, 2012

Newbie: how to navigate from one to another asp in the project

Hallo everybody!
I have two asp-pages in my project.
There is a task on the first one, when the solution of the task ok, then
should the second page come. I made a menu for this. If the task solution
ok, then becomes the menu visible. Is it possible to activate automatically
the menu if the task solution ok? I mean, without the click on it? It it
possible to do all this simplier? I think somethink like this:

Protected Sub Button3_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button3.Click

If MySolution=true then

MySecondASPpage should be shown (what to entere here??)

end if

end sub

Thanks

BarbaraYou may want to use Response.Redirect("PageNameHere")

- V
Barbara Schmidt wrote:

Quote:

Originally Posted by

Hallo everybody!
I have two asp-pages in my project.
There is a task on the first one, when the solution of the task ok, then
should the second page come. I made a menu for this. If the task solution
ok, then becomes the menu visible. Is it possible to activate automatically
the menu if the task solution ok? I mean, without the click on it? It it
possible to do all this simplier? I think somethink like this:
>
Protected Sub Button3_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button3.Click
>
If MySolution=true then
>
MySecondASPpage should be shown (what to entere here??)
>
end if
>
end sub
>
>
>
Thanks
>
Barbara

Saturday, March 24, 2012

Newbie: Screen size issues

As a new programmer, I was given the task of redesigning a web app for the
company using asp.net and vb. I built the app on my screen resolution of
1024x768 and now that the project is nearly over I have been asked to make
the app accessible and easy to navigate in a 800x600 environment. Is there
any easy way to keep the relative size of the objects on a page the same
reguardless of the screen size, or am I stuck redesigning all of my pages?

Any help would be much appreciated.

Thanks,
ChrisWell Chris,

I dont really consider this an aspnet problem, but it is
common enough. I dont think your going to find the answer
in asp.net itself, but rather in css.

In css, you an apply a style of 2 em, and assuming the
rest of the pages are css compliant and such, you should
have approximately the same rendering on any number of
platforms.

em (ems, the height of the element's font)
ex (x-height, the height of the letter "x")
px (pixels, relative to the canvas resolution)

Anyway, I think that could help. Also checkout
http://www.csszengarden.com/ if you never have. CSS is
good.

Weston Weems

>--Original Message--
>As a new programmer, I was given the task of redesigning
a web app for the
>company using asp.net and vb. I built the app on my
screen resolution of
>1024x768 and now that the project is nearly over I have
been asked to make
>the app accessible and easy to navigate in a 800x600
environment. Is there
>any easy way to keep the relative size of the objects on
a page the same
>reguardless of the screen size, or am I stuck redesigning
all of my pages?
>Any help would be much appreciated.
>Thanks,
>Chris
>.

Friday, March 16, 2012

News content to XML file

Hello,
I have been given a task for creating a utility (asp.net/vb.net) exe which
transaltes the news content
into an XML file.

Can some one give me any directions to how we need to do this?

ThanksWhy not consider syndicating your news as an RSS xml file. It will then at
least be in a format and structure easily deciphered.

http://aspnet.4guysfromrolla.com/articles/021804-1.aspx

--
Regards

John Timney (MVP)

"Karthik Natarajan" <nkarthik04@.gmail.com> wrote in message
news:Ok1N4qYkGHA.3816@.TK2MSFTNGP02.phx.gbl...
> Hello,
> I have been given a task for creating a utility (asp.net/vb.net) exe which
> transaltes the news content
> into an XML file.
> Can some one give me any directions to how we need to do this?
>
> Thanks
>